/* Home / Linear-style landing — all content from _data/home.json */

/* ----- LP Hero (Linear Build: video bg + left-aligned 2-line headline) ----- */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: calc(var(--tp-nav-fixed-offset) + var(--space-24));
  padding-bottom: var(--space-24);
  padding-inline: 0;
  overflow: hidden;
}
/* Ultra-calm: push heading down — more space above headline */
.lp-hero__content {
  padding-top: 8rem;
}
@media (min-width: 768px) {
  .lp-hero__content {
    padding-top: 12rem;
  }
}

/* Fallback when no video — subtle gradient so it’s not flat black */
.lp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-hero__bg-fallback {
  position: absolute;
  inset: 0;
  background: var(--bg-1);
  background-image:
    radial-gradient(ellipse 120% 80% at 60% 110%, rgba(28, 28, 31, 0.7) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 40%, rgba(22, 22, 25, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 10% 60%, rgba(35, 35, 40, 0.2) 0%, transparent 45%);
}
.lp-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .lp-hero__bg-fallback {
    animation: lp-hero-bg-shift 14s ease-in-out infinite alternate;
  }
}
@keyframes lp-hero-bg-shift {
  0% { opacity: 1; }
  100% { opacity: 0.94; }
}

/* Video layer (on top of fallback when present) */
.lp-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.lp-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(4px);
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-hero__video--visible {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .lp-hero__video {
    transition-duration: 0.25s;
  }
}
/* YouTube embed: cover hero like native video */
.lp-hero__youtube-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.lp-hero__youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
  filter: grayscale(100%);
}
/* Video: dark overlay so text stays readable */
.lp-hero__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 11, 0.8);
  z-index: 2;
  pointer-events: none;
}
.lp-hero--video .lp-hero__video {
  filter: grayscale(100%) blur(5px);
}
/* Hero content: left-aligned, max-width 680px, ultra spacing */
/* Slightly reduced: ~8% empty space each side, then inner padding */
.lp-hero__content {
  position: relative;
  z-index: 3;
  width: 84vw;
  max-width: none;
  margin-inline: 8vw;
  padding-inline: clamp(16px, 1.5vw, 28px);
}
.lp-hero__text {
  max-width: 100%;
  text-align: left;
}
/* Headline: two lines; Phase 5 — tighter line-height, intentional spacing to subtext */
.lp-hero__title {
  font-family: var(--font-sans);
  font-size: var(--hero-headline-size);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 2.25rem;
  max-width: none;
}
.lp-hero__title-line {
  display: block;
}
/* Brand signal: ">" as red accent with subtle glow (e.g. Students hero PROOF > GPA) */
.lp-hero__title-sep {
  color: #FF2D2D;
  text-shadow: 0 0 16px rgba(255, 45, 45, 0.22), 0 0 32px rgba(255, 45, 45, 0.08);
}
/* Subheadline: smaller, lighter weight, lower contrast — composed; Phase 5 — spacing to actions */
.lp-hero__subheadline {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.38;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  margin: 0 0 var(--space-6);
}
.lp-hero__support {
  font-size: clamp(0.8125rem, 1.25vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 var(--space-8);
}
.lp-hero__support strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: flex-start;
}
.lp-hero__actions .btn {
  font-size: 0.8125rem;
  padding: var(--space-2) var(--space-5);
}
@media (hover: hover) {
  .lp-hero__actions .btn-primary:hover {
    color: #fff;
  }
  .lp-hero__actions .btn-secondary:hover {
    color: #FF2D2D;
  }
}

/* ----- Inner hero (Students page): premium CTA polish — Linear/Vercel/Stripe feel ----- */
.lp-hero-inner .lp-hero__actions {
  gap: var(--space-5);
}
.lp-hero-inner .lp-hero__actions .btn {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background-color 0.22s cubic-bezier(0.33, 1, 0.68, 1),
    color 0.22s cubic-bezier(0.33, 1, 0.68, 1),
    border-color 0.22s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.22s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.22s cubic-bezier(0.33, 1, 0.68, 1);
}
.lp-hero-inner .lp-hero__actions .btn-primary {
  background: #FF2D2D;
  color: #fff;
  border: 1px solid rgba(255, 45, 45, 0.4);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
@media (hover: hover) {
  .lp-hero-inner .lp-hero__actions .btn-primary:hover {
    background: #ff4040;
    color: #fff;
    border-color: rgba(255, 45, 45, 0.6);
    box-shadow: 0 0 0 1px rgba(255, 45, 45, 0.18), 0 6px 16px rgba(255, 45, 45, 0.14);
    transform: translateY(-2px);
  }
  .lp-hero-inner .lp-hero__actions .btn-primary:focus-visible {
    box-shadow: 0 0 0 2px rgba(255, 45, 45, 0.35);
  }
}
.lp-hero-inner .lp-hero__actions .btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (hover: hover) {
  .lp-hero-inner .lp-hero__actions .btn-secondary:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--text-on-dark-dim);
    transform: translateY(-1px);
  }
}
/* Animation: calm, premium — cubic-bezier(.22,1,.36,1) */
.lp-hero__title--animate {
  animation: lp-hero-title-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.lp-hero__subheadline--animate {
  animation: lp-hero-subline-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}
.lp-hero__support--animate {
  animation: lp-hero-subline-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}
.lp-hero__actions--animate {
  animation: lp-hero-actions-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}
@keyframes lp-hero-title-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lp-hero-subline-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lp-hero-actions-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .lp-hero__title--animate,
  .lp-hero__subheadline--animate,
  .lp-hero__support--animate,
  .lp-hero__actions--animate {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
/* Hero: tablet and mobile responsive */
@media (max-width: 1023px) {
  .lp-hero__content {
    padding-inline: clamp(20px, 4vw, 28px);
  }
  .lp-hero__subheadline {
    font-size: clamp(0.875rem, 2vw, 1rem);
    margin-bottom: var(--space-4);
  }
  .lp-hero__support {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    margin-bottom: var(--space-6);
  }
  .lp-hero__actions {
    gap: var(--space-3);
  }
  .lp-hero__actions .btn {
    font-size: 0.8125rem;
    padding: var(--space-2) var(--space-4);
  }
}
@media (max-width: 767px) {
  .lp-hero {
    min-height: 100vh;
    padding-top: calc(var(--tp-nav-fixed-offset) + var(--space-16));
    padding-bottom: var(--space-16);
  }
  .lp-hero__content {
    padding-top: 5rem;
    width: 100%;
    margin-inline: 0;
    padding-inline: clamp(16px, 5vw, 24px);
  }
  .lp-hero__subheadline {
    margin-bottom: var(--space-3);
  }
  .lp-hero__support {
    margin-bottom: var(--space-5);
    line-height: 1.45;
  }
  .lp-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
  }
  .lp-hero__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 420px) {
  .lp-hero__content {
    padding-top: 4rem;
    padding-inline: var(--space-4);
  }
  .ecosystem-shift__container {
    padding-inline: var(--space-4);
  }
  .lp-help__wrap,
  .lp-proof-economy__wrap {
    padding-inline: var(--space-4);
  }
}
/* Legacy (keep for any other use of .lp-hero .container / .lp-hero__lead) */
.lp-hero .container {
  margin-inline: 0;
  max-width: 42rem;
  text-align: left;
  padding-inline: 0;
}
.lp-hero__label {
  display: block;
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}
.lp-hero__lead {
  font-size: 1.125rem;
  line-height: var(--leading-snug);
  color: var(--text-primary);
  max-width: 58ch;
  margin: var(--space-4) 0 var(--space-10);
}
.lp-hero__lead-nowrap {
  white-space: nowrap;
}

/* ----- Inner page hero (Students, Institutions, Companies) — same system, no video ----- */
.lp-hero-inner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: calc(var(--tp-nav-fixed-offset) + var(--space-24));
  padding-bottom: var(--space-24);
  padding-inline: 0;
  overflow: hidden;
}
.lp-hero-inner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0b0b0f;
  /* Layered atmospheric depth: soft dark gradients only, no blobs — refined and cinematic */
  background-image:
    linear-gradient(to bottom, transparent 65%, rgba(11, 11, 15, 0.25) 85%, rgba(11, 11, 15, 0.5) 100%),
    radial-gradient(ellipse 180% 120% at 85% 50%, rgba(18, 18, 22, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 140% 100% at 70% 100%, rgba(24, 24, 28, 0.2) 0%, transparent 45%),
    radial-gradient(ellipse 120% 80% at 60% 110%, rgba(28, 28, 33, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 40%, rgba(20, 20, 26, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 0% 50%, rgba(14, 14, 18, 0.12) 0%, transparent 60%);
}
.lp-hero-inner__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.lp-hero-inner .lp-hero-inner__grain {
  opacity: 0.04;
}
.lp-hero-inner .lp-hero__content {
  z-index: 2;
}

/* ----- Recruiters (R1) — hero: bottom-weighted layout + atmospheric layers -----
   Keyframes: fadeUp, fadeIn, signalPulse (+signalPulse2/3), scrollTravel;
   blink: site-wide @keyframes blink —— */
body.page-recruiters .lp-hero-inner {
  --hero-orb-label: rgba(255, 255, 255, 0.48);
  --hero-orb-score: rgba(255, 255, 255, 0.82);
  box-sizing: border-box;
  min-height: 100vh;
  padding-top: var(--tp-nav-fixed-offset);
  padding-inline: var(--inset);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  isolation: isolate;
}

/* Soft red floor glow + vignette (atmospheric, no markup change) */
body.page-recruiters .lp-hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 140% 90% at 50% 120%, rgba(255, 45, 45, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 0%, rgba(10, 10, 11, 0.4) 100%);
  opacity: 1;
}

/* Noise grain — feTurbulence fractalNoise baseFrequency 0.9, numOctaves 4, stitchTiles stitch */
body.page-recruiters .lp-hero-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* Avoid double grain: dedicated layer is ::after */
body.page-recruiters .lp-hero-inner__grain {
  opacity: 0;
  visibility: hidden;
}

body.page-recruiters .lp-hero-inner__bg {
  background-color: var(--bg);
  background-image:
    linear-gradient(to bottom, transparent 55%, rgba(10, 10, 11, 0.35) 100%),
    radial-gradient(ellipse 160% 100% at 75% 45%, rgba(22, 22, 26, 0.35) 0%, transparent 52%),
    radial-gradient(ellipse 100% 70% at 20% 80%, rgba(255, 45, 45, 0.04) 0%, transparent 45%);
  z-index: 0;
}

body.page-recruiters .lp-hero-inner .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  margin-inline: 0;
  padding-inline: 0;
  padding-top: 0;
}

body.page-recruiters .lp-hero-inner .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
}

/* Start hero motion after page loader — avoids animations finishing while hidden */
body.page-recruiters.lp-body-loaded .lp-hero-inner .hero-eyebrow {
  animation: fadeUp 0.8s ease 0.15s forwards;
}

/* Pulsing dot — all recruiter eyebrows (hero + sections) */
body.page-recruiters .eyebrow-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: blink 1.8s ease infinite;
}

@media (prefers-reduced-motion: reduce) {
  body.page-recruiters .eyebrow-pip {
    animation: none !important;
    opacity: 1;
  }
}

body.page-recruiters .lp-hero-inner .hero-headline {
  font-family: var(--font-sans);
  font-size: var(--hero-headline-size);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 28px;
  opacity: 0;
  transform: translateY(16px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.page-recruiters.lp-body-loaded .lp-hero-inner .hero-headline {
  animation: fadeUp 0.9s ease 0.28s forwards;
}

body.page-recruiters .lp-hero-inner .hero-headline .line-1 {
  display: block;
  /* Match secondary CTA button text color for this hero */
  color: rgba(255, 255, 255, 0.55);
}

body.page-recruiters .lp-hero-inner .hero-headline .line-1-gt {
  color: var(--red);
  text-shadow: 0 0 60px rgba(255, 45, 45, 0.45), 0 0 120px rgba(255, 45, 45, 0.18);
}

body.page-recruiters .lp-hero-inner .hero-headline .line-2 {
  display: block;
  color: var(--red);
  text-shadow: 0 0 60px rgba(255, 45, 45, 0.45), 0 0 120px rgba(255, 45, 45, 0.18);
}

@keyframes heroResumesGlow {
  0%,
  100% {
    text-shadow:
      0 0 60px rgba(255, 45, 45, 0.45),
      0 0 120px rgba(255, 45, 45, 0.18);
    filter: brightness(1);
  }
  50% {
    text-shadow:
      0 0 88px rgba(255, 45, 45, 0.55),
      0 0 160px rgba(255, 45, 45, 0.26);
    filter: brightness(1.06);
  }
}

@media (prefers-reduced-motion: no-preference) {
  body.page-recruiters.lp-body-loaded .lp-hero-inner .hero-headline .line-2 {
    animation: heroResumesGlow 4.2s ease-in-out infinite;
    animation-delay: 1s;
  }
}

body.page-recruiters .lp-hero-inner .hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 0 44px;
  opacity: 0;
  transform: translateY(16px);
}

body.page-recruiters.lp-body-loaded .lp-hero-inner .hero-sub {
  animation: fadeUp 0.9s ease 0.4s forwards;
}

body.page-recruiters .lp-hero-inner .hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
}

body.page-recruiters.lp-body-loaded .lp-hero-inner .hero-ctas {
  animation: fadeUp 0.9s ease 0.52s forwards;
}

body.page-recruiters .lp-hero-inner .cta-primary {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: #ff2d2d;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.page-recruiters .lp-hero-inner .cta-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 55%);
  pointer-events: none;
  border-radius: inherit;
}

@media (hover: hover) and (pointer: fine) {
  body.page-recruiters .lp-hero-inner .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 45, 45, 0.35);
  }
}

body.page-recruiters .lp-hero-inner .cta-secondary {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  body.page-recruiters .lp-hero-inner .cta-secondary:hover {
    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.3);
  }
}

body.page-recruiters .lp-hero-inner .cta-primary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

body.page-recruiters .lp-hero-inner .cta-secondary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Recruiters R1: atmospheric layers (markup before .hero-content) —— */
body.page-recruiters .lp-hero-inner .signal-lines,
body.page-recruiters .lp-hero-inner .signal-line,
body.page-recruiters .lp-hero-inner .hero-glow,
body.page-recruiters .lp-hero-inner .proof-orb {
  position: absolute;
  pointer-events: none;
}

/* 2. Signal lines */
body.page-recruiters .lp-hero-inner .signal-lines {
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

body.page-recruiters .lp-hero-inner .signal-line {
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 45, 45, 0.06) 20%,
    rgba(255, 45, 45, 0.12) 50%,
    rgba(255, 45, 45, 0.06) 80%,
    transparent
  );
  transform-origin: center center;
}

body.page-recruiters .lp-hero-inner .signal-line:nth-child(1) {
  top: 28%;
  animation: signalPulse 4s ease-in-out infinite;
  animation-delay: 0s;
}

body.page-recruiters .lp-hero-inner .signal-line:nth-child(2) {
  top: 44%;
  animation: signalPulse2 4s ease-in-out infinite;
  animation-delay: 1.2s;
}

body.page-recruiters .lp-hero-inner .signal-line:nth-child(3) {
  top: 62%;
  animation: signalPulse3 4s ease-in-out infinite;
  animation-delay: 2.4s;
}

@keyframes signalPulse {
  0%,
  100% {
    opacity: 0;
    transform: scaleX(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes signalPulse2 {
  0%,
  100% {
    opacity: 0;
    transform: scaleX(0.6);
  }
  50% {
    opacity: 0.6;
    transform: scaleX(1);
  }
}

@keyframes signalPulse3 {
  0%,
  100% {
    opacity: 0;
    transform: scaleX(0.6);
  }
  50% {
    opacity: 0.4;
    transform: scaleX(1);
  }
}

/* 3. Red glow */
body.page-recruiters .lp-hero-inner .hero-glow {
  bottom: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 45, 45, 0.08) 0%, transparent 65%);
  z-index: 0;
}

/* 4. ProofScore orb */
body.page-recruiters .lp-hero-inner .proof-orb {
  top: 120px;
  right: var(--inset);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  z-index: 1;
  opacity: 0;
  transform: translateY(12px);
}

body.page-recruiters.lp-body-loaded .lp-hero-inner .proof-orb {
  animation: fadeUp 0.95s ease 0.58s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body.page-recruiters .lp-hero-inner .orb-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hero-orb-label);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

/* Same pattern as institutions .inst-orb-number + .inst-orb-ring */
body.page-recruiters .lp-hero-inner .orb-score-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
}

body.page-recruiters .lp-hero-inner .orb-score {
  position: relative;
  z-index: 1;
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--hero-orb-score);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

body.page-recruiters .lp-hero-inner .orb-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(255, 45, 45, 0.2);
  pointer-events: none;
  animation: instRingRotate 10s linear infinite;
}

body.page-recruiters .lp-hero-inner .orb-ring::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ff2d2d;
  transform: translateX(-50%);
  box-shadow: 0 0 6px rgba(255, 45, 45, 0.75);
}

body.page-recruiters .lp-hero-inner .orb-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 45, 45, 0.5);
  border: 1px solid rgba(255, 45, 45, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 45, 45, 0.04);
}

body.page-recruiters .lp-hero-inner .orb-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: blink 1.8s ease infinite;
}

/* Scroll signal (decorative) */
body.page-recruiters .lp-hero-inner .scroll-signal {
  position: absolute;
  bottom: 36px;
  right: var(--inset);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

body.page-recruiters.lp-body-loaded .lp-hero-inner .scroll-signal {
  animation: fadeUp 0.85s ease 0.72s forwards;
}

body.page-recruiters .lp-hero-inner .scroll-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

body.page-recruiters .lp-hero-inner .scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 45, 45, 0.55), transparent);
  position: relative;
  overflow: hidden;
}

body.page-recruiters .lp-hero-inner .scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255, 45, 45, 0.8), transparent);
  animation: scrollTravel 2s ease infinite;
}

@keyframes scrollTravel {
  0% {
    top: -100%;
  }
  100% {
    top: 200%;
  }
}

/* Recruiters: responsive inset lives in tokens.css (--inset); hide orb / scroll signal */
@media (max-width: 1023px) {
  body.page-recruiters .lp-hero-inner .proof-orb {
    display: none;
  }
}

/* Mobile: show ProofScore orb (was hidden on tablets). */
@media (max-width: 768px) {
  body.page-recruiters .lp-hero-inner .proof-orb {
    display: flex;
    top: 92px;
    right: var(--inset);
    opacity: 1;
    transform: none;
    animation: none;
  }

  body.page-recruiters .lp-hero-inner .orb-score {
    font-size: clamp(56px, 18vw, 92px);
  }

  body.page-recruiters .lp-hero-inner .orb-score-wrap {
    padding: 12px 14px;
  }
}

@media (max-width: 767px) {
  body.page-recruiters .lp-hero-inner .scroll-signal {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-recruiters .lp-hero-inner .signal-line {
    animation: none;
    opacity: 0.35;
    transform: scaleX(1);
  }
  body.page-recruiters .lp-hero-inner .proof-orb {
    animation: none;
    opacity: 1;
    transform: none;
  }
  body.page-recruiters .lp-hero-inner .orb-badge-dot {
    animation: none;
    opacity: 1;
  }
  body.page-recruiters .lp-hero-inner .orb-ring {
    animation: none !important;
  }
  body.page-recruiters .lp-hero-inner .hero-eyebrow,
  body.page-recruiters .lp-hero-inner .hero-headline,
  body.page-recruiters .lp-hero-inner .hero-sub,
  body.page-recruiters .lp-hero-inner .hero-ctas {
    animation: none;
    opacity: 1;
    transform: none;
  }
  body.page-recruiters .lp-hero-inner .hero-headline .line-2 {
    animation: none !important;
    filter: none;
  }
  body.page-recruiters .lp-hero-inner .scroll-signal {
    animation: none;
    opacity: 1;
    transform: none;
  }
  body.page-recruiters .lp-hero-inner .scroll-line::after {
    animation: none;
    top: 0;
    opacity: 0.35;
  }
  body.page-recruiters:not(.lp-body-loaded) .lp-hero-inner .hero-ghost.hero-bg-watermark,
  body.page-recruiters.lp-body-loaded .lp-hero-inner .hero-ghost.hero-bg-watermark {
    animation: none !important;
    opacity: 1;
  }
}

/* Recession: subtle depth as hero scrolls out — quiet, no hijacking, no flashy parallax */
.lp-hero-inner {
  --hero-recede: 0;
}
.lp-hero-inner .lp-hero__title {
  transition: opacity 0.35s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: calc(1 - 0.06 * var(--hero-recede, 0));
}
.lp-hero-inner .lp-hero__subheadline,
.lp-hero-inner .lp-hero__actions,
.lp-hero-inner .lp-hero__micro {
  transition: opacity 0.35s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: calc(1 - 0.12 * var(--hero-recede, 0));
}

/* ----- Inner hero: subtle signal field (right-side background, Students page) ----- */
.lp-hero-inner__signal-field {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  max-width: 65vw;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  animation: lp-hero-inner-field-in 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.25s both;
  transform: translateZ(0) translateY(calc(var(--hero-recede, 0) * 6px));
  backface-visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1), transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: calc(1 - 0.38 * var(--hero-recede, 0));
}
@keyframes lp-hero-inner-field-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lp-hero-inner__signal-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-30%, -50%);
  opacity: 0.52;
}

/* Metaphor: your work → proof (minimal, clear, not dashboard or abstract tech) */

/* Work: faint strokes (student work) flowing toward proof */
.lp-hero-inner__work {
  opacity: calc(0.75 - 0.18 * var(--hero-recede, 0));
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.lp-hero-inner__work-stroke {
  fill: none;
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 0.28;
  stroke-linecap: round;
}
.lp-hero-inner__work-stroke:nth-child(1) { animation: lp-hero-inner-work-breathe 10s ease-in-out 0s infinite; }
.lp-hero-inner__work-stroke:nth-child(2) { animation: lp-hero-inner-work-breathe 10.5s ease-in-out 1.5s infinite; }
.lp-hero-inner__work-stroke:nth-child(3) { animation: lp-hero-inner-work-breathe 9.5s ease-in-out 3s infinite; }
@keyframes lp-hero-inner-work-breathe {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 0.92; }
}

/* Proof: single point where work becomes verified */
.lp-hero-inner__proof {
  fill: rgba(255, 45, 45, 0.22);
  filter: url(#hero-signal-glow);
  transform-origin: center;
  opacity: calc(1 - 0.25 * var(--hero-recede, 0));
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  animation: lp-hero-inner-proof-pulse 8s cubic-bezier(0.33, 1, 0.68, 1) infinite;
}
@keyframes lp-hero-inner-proof-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Stronger signal: one beam (proof → visibility) */
.lp-hero-inner__signal-beam {
  fill: none;
  stroke: rgba(255, 45, 45, 0.1);
  stroke-width: 0.3;
  stroke-linecap: round;
  opacity: calc(1 - 0.2 * var(--hero-recede, 0));
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Pulse along beam: proof becoming visibility */
.lp-hero-inner__signal-pulse {
  opacity: 0;
  filter: url(#hero-signal-glow);
  animation: lp-hero-inner-pulse-fade 22s cubic-bezier(0.33, 1, 0.68, 1) 0s infinite;
}
@keyframes lp-hero-inner-pulse-fade {
  0%, 57% { opacity: 0; }
  59% { opacity: 0.6; }
  73% { opacity: 0.5; }
  77% { opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-inner__signal-field { animation: none; opacity: 1; }
  .lp-hero-inner__work-stroke,
  .lp-hero-inner__proof,
  .lp-hero-inner__signal-pulse { animation: none !important; }
  .lp-hero-inner__proof { transform: scale(1); opacity: 1; }
  .lp-hero-inner__signal-pulse { opacity: 0; }
  .lp-hero-inner__proof-line { animation: none; stroke-dashoffset: 0; }
  .lp-hero-inner__proof-center { animation: none; color: var(--text-on-dark-dim); border-color: rgba(255, 255, 255, 0.08); }
  .lp-hero-inner__proof-chip { animation: none !important; transform: translate(0, 0); }
  .lp-hero-inner__proof-pulse-ring { animation: none !important; opacity: 0; }
  .lp-hero-inner__opportunity-node,
  .lp-hero-inner__opportunity-ripple,
  .lp-hero-inner__opportunity-label { animation: none !important; }
  .lp-hero-inner__opportunity-ripple { opacity: 0; }
  .lp-hero-inner__opportunity-label { color: var(--text-on-dark-dim); }
  .lp-hero-inner__proof-chip:nth-child(4) { left: 18%; top: 22%; }
  .lp-hero-inner__proof-chip:nth-child(5) { left: 8%; top: 38%; }
  .lp-hero-inner__proof-chip:nth-child(6) { left: 22%; top: 52%; }
  .lp-hero-inner__proof-chip:nth-child(7) { left: 12%; top: 68%; }
  .lp-hero-inner__proof-chip:nth-child(8) { left: 28%; top: 78%; }
}

/* Floating proof labels — student work signals; drift toward central Proof */
.lp-hero-inner__proof-labels {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Connector lines: subtle paths from work → proof (not diagram-heavy) */
.lp-hero-inner__proof-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.lp-hero-inner__proof-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.045);
  stroke-width: 0.2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: lp-hero-inner-line-draw 22s cubic-bezier(0.33, 1, 0.68, 1) infinite;
}
.lp-hero-inner__proof-line:nth-child(1) { animation-delay: 0s; }
.lp-hero-inner__proof-line:nth-child(2) { animation-delay: 1.5s; }
.lp-hero-inner__proof-line:nth-child(3) { animation-delay: 3s; }
.lp-hero-inner__proof-line:nth-child(4) { animation-delay: 4.5s; }
.lp-hero-inner__proof-line:nth-child(5) { animation-delay: 6s; }
@keyframes lp-hero-inner-line-draw {
  0%, 100% { stroke-dashoffset: 1; }
  50% { stroke-dashoffset: 0; }
}

/* Central node: Proof — your work becomes proof */
.lp-hero-inner__proof-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: clamp(0.5625rem, 0.9vw, 0.625rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  padding: 0.4em 0.7em;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  white-space: nowrap;
  opacity: calc(1 - 0.3 * var(--hero-recede, 0));
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  animation: lp-hero-inner-proof-center-pulse 22s cubic-bezier(0.33, 1, 0.68, 1) infinite;
}
@keyframes lp-hero-inner-proof-center-pulse {
  0%, 100% { color: var(--text-on-dark-faint); border-color: rgba(255, 255, 255, 0.05); }
  50% { color: rgba(255, 255, 255, 0.42); border-color: rgba(255, 45, 45, 0.09); }
}

/* Outward pulse — proof becomes visibility (red only, soft, one ring) */
.lp-hero-inner__proof-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  pointer-events: none;
  z-index: 0;
  opacity: calc(1 - 0.35 * var(--hero-recede, 0));
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.lp-hero-inner__proof-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform: scale(0.5);
  border: 1px solid rgba(255, 45, 45, 0.2);
  box-shadow: 0 0 10px 1px rgba(255, 45, 45, 0.05);
  animation: lp-hero-inner-pulse-out 22s cubic-bezier(0.22, 1, 0.36, 1) 11s infinite;
}
@keyframes lp-hero-inner-pulse-out {
  0%, 46% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.38; transform: scale(0.55); }
  62% { opacity: 0.08; transform: scale(1.4); }
  70% { opacity: 0; transform: scale(1.9); }
  100% { opacity: 0; transform: scale(1.9); }
}

/* Chips: hints of work (Projects, GitHub, etc.) — minimal, not dashboard pills */
.lp-hero-inner__proof-chip {
  position: absolute;
  font-size: clamp(0.5625rem, 0.9vw, 0.625rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  padding: 0.3em 0.55em;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  white-space: nowrap;
  z-index: 2;
  opacity: calc(1 - 0.35 * var(--hero-recede, 0));
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
/* Drift toward Proof — slow, one clear loop (22s) */
.lp-hero-inner__proof-chip:nth-child(4) { top: 22%; left: 18%; animation: lp-hero-inner-chip-drift-1 22s cubic-bezier(0.33, 1, 0.68, 1) 0s infinite; }
.lp-hero-inner__proof-chip:nth-child(5) { top: 38%; left: 8%; animation: lp-hero-inner-chip-drift-2 22s cubic-bezier(0.33, 1, 0.68, 1) 1.5s infinite; }
.lp-hero-inner__proof-chip:nth-child(6) { top: 52%; left: 22%; animation: lp-hero-inner-chip-drift-3 22s cubic-bezier(0.33, 1, 0.68, 1) 3s infinite; }
.lp-hero-inner__proof-chip:nth-child(7) { top: 68%; left: 12%; animation: lp-hero-inner-chip-drift-4 22s cubic-bezier(0.33, 1, 0.68, 1) 4.5s infinite; }
.lp-hero-inner__proof-chip:nth-child(8) { top: 78%; left: 28%; animation: lp-hero-inner-chip-drift-5 22s cubic-bezier(0.33, 1, 0.68, 1) 6s infinite; }
@keyframes lp-hero-inner-chip-drift-1 {
  0%, 100% { left: 18%; top: 22%; transform: translate(0, 0); }
  50% { left: 50%; top: 50%; transform: translate(-50%, -50%); }
}
@keyframes lp-hero-inner-chip-drift-2 {
  0%, 100% { left: 8%; top: 38%; transform: translate(0, 0); }
  50% { left: 50%; top: 50%; transform: translate(-50%, -50%); }
}
@keyframes lp-hero-inner-chip-drift-3 {
  0%, 100% { left: 22%; top: 52%; transform: translate(0, 0); }
  50% { left: 50%; top: 50%; transform: translate(-50%, -50%); }
}
@keyframes lp-hero-inner-chip-drift-4 {
  0%, 100% { left: 12%; top: 68%; transform: translate(0, 0); }
  50% { left: 50%; top: 50%; transform: translate(-50%, -50%); }
}
@keyframes lp-hero-inner-chip-drift-5 {
  0%, 100% { left: 28%; top: 78%; transform: translate(0, 0); }
  50% { left: 50%; top: 50%; transform: translate(-50%, -50%); }
}

/* Destination: Opportunity — signal reaches here (student work → proof → opportunity) */
.lp-hero-inner__opportunity {
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35em;
  opacity: calc(1 - 0.35 * var(--hero-recede, 0));
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.lp-hero-inner__opportunity-marker {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
}
.lp-hero-inner__opportunity-node {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 12px 2px rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.06);
  animation: lp-hero-inner-opportunity-glow 22s cubic-bezier(0.33, 1, 0.68, 1) 0s infinite;
}
.lp-hero-inner__opportunity-ripple {
  position: absolute;
  inset: -0.15rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
  animation: lp-hero-inner-opportunity-ripple 22s cubic-bezier(0.22, 1, 0.36, 1) 0s infinite;
}
.lp-hero-inner__opportunity-label {
  font-size: clamp(0.6875rem, 1.1vw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  white-space: nowrap;
  text-shadow: none;
  animation: lp-hero-inner-opportunity-label 22s cubic-bezier(0.33, 1, 0.68, 1) 0s infinite;
}
/* Node glows when red dot stops at it */
@keyframes lp-hero-inner-opportunity-glow {
  0%, 73% { box-shadow: 0 0 12px 2px rgba(255, 255, 255, 0.04); border-color: var(--text-on-dark-faint); background: rgba(255, 255, 255, 0.06); }
  75% { box-shadow: 0 0 14px 3px rgba(255, 255, 255, 0.06), 0 0 0 1px rgba(255, 45, 45, 0.06); border-color: rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.09); }
  79%, 100% { box-shadow: 0 0 12px 2px rgba(255, 255, 255, 0.04); border-color: var(--text-on-dark-faint); background: rgba(255, 255, 255, 0.06); }
}
@keyframes lp-hero-inner-opportunity-ripple {
  0%, 74% { opacity: 0; transform: scale(1); }
  75% { opacity: 0.4; transform: scale(1); }
  81% { opacity: 0; transform: scale(2.5); }
  100% { opacity: 0; transform: scale(2.5); }
}
/* When red dot stops at node: word "Opportunity" glows */
@keyframes lp-hero-inner-opportunity-label {
  0%, 74% { color: var(--text-on-dark-soft); text-shadow: none; }
  75% { color: #FF2D2D; text-shadow: 0 0 10px rgba(255, 45, 45, 0.5), 0 0 20px rgba(255, 45, 45, 0.25); }
  78% { color: #FF2D2D; text-shadow: 0 0 12px rgba(255, 45, 45, 0.4), 0 0 24px rgba(255, 45, 45, 0.2); }
  81% { color: rgba(255, 45, 45, 0.5); text-shadow: 0 0 6px rgba(255, 45, 45, 0.2); }
  84%, 100% { color: var(--text-on-dark-soft); text-shadow: none; }
}

/* Micro line below CTA group (inner hero, e.g. Students page) */
.lp-hero__micro {
  font-size: clamp(0.75rem, 1.1vw, 0.8125rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.45);
  margin: var(--space-4) 0 0;
}
/* Inner hero: micro text more subtle and clearly secondary */
.lp-hero-inner .lp-hero__micro {
  font-size: clamp(0.6875rem, 1vw, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-on-dark-dim);
  margin-top: var(--space-5);
}
.lp-hero__micro--animate {
  animation: lp-hero-subline-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}
@media (prefers-reduced-motion: reduce) {
  .lp-hero__micro--animate {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* What is TalentProof? — clarity strip (AEO, below hero) */
.lp-hero-clarity {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: var(--space-16);
  border-top: 1px solid var(--border-1);
  background: var(--bg-1);
}
.lp-hero-clarity__inner {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(calc(var(--space-6) * 1.67), 10.02vw, calc(var(--space-16) * 1.67));
}
.lp-hero-clarity__title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 var(--space-4);
}
.lp-hero-clarity__lead {
  font-size: var(--text-body);
  line-height: var(--leading-normal);
  color: var(--text-secondary);
  margin: 0;
}
.lp-hero-clarity__lines {
  margin: var(--space-8) 0 0;
  padding-left: var(--space-6);
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.6;
}
.lp-hero-clarity__lines li {
  margin-bottom: var(--space-2);
}
.lp-hero-clarity__lines li:last-child {
  margin-bottom: 0;
}

/* ----- Section 2: The Problem — final polish (Linear+) ----- */
.lp-help {
  min-height: 120vh;
  display: flex;
  align-items: center;
  padding-block: var(--section-gap-y);
  background: var(--bg-1);
  border-top: 1px solid var(--border-1);
}
@media (min-width: 768px) {
  .lp-help {
    padding-block: var(--section-gap-y);
  }
}
.lp-help__wrap {
  width: 84vw;
  max-width: none;
  margin-inline: 8vw;
  padding-inline: clamp(16px, 1.5vw, 28px);
}
.lp-help__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(56px, 10vw, 120px);
  align-items: start;
  margin-inline: 0;
  margin-bottom: clamp(7rem, 14vw, 10rem);
  text-align: left;
  max-width: 100%;
}
/* Heading: large, bold, pure white; Phase 5 — editorial line-height, spacing to subtext */
.lp-help__title {
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 0.5rem;
}
/* Subline: smaller, regular weight, light gray, extends to padding */
.lp-help__subtext {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.58;
  color: #b8b8b8;
  margin: 0;
  max-width: none;
  font-weight: 400;
}
@media (max-width: 767px) {
  .lp-help__head,
  .lp-proof-economy__head,
  .lp-cine__head,
  .lp-proof-run__head,
  .lp-discover__head,
  .lp-talent-graph__head,
  .ecosystem-shift__header {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .lp-help__subtext {
    max-width: 100%;
  }
  .lp-help__wrap {
    width: 100%;
    margin-inline: 0;
    padding-inline: clamp(16px, 5vw, 24px);
  }
  .lp-help__title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
  .lp-help__bridge {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    padding-inline: var(--space-2);
  }
  .lp-help__cta-wrap {
    text-align: center;
  }
  .lp-help__cta {
    font-size: 0.8125rem;
  }
}
.lp-help__cards {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-14);
}
@media (min-width: 768px) {
  .lp-help__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}
@media (min-width: 1024px) {
  .lp-help__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: var(--space-16);
  }
}
/* Card: Linear Popular-style — solid dark surface, upper/lower split */
.lp-help-card {
  --x: 50%;
  --y: 50%;
  position: relative;
  width: 100%;
  min-width: 0;
  margin-inline: auto;
  background: var(--bg-1);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: clamp(1.5rem, 4vw, 1.75rem);
  box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
@media (min-width: 1024px) {
  .lp-help-card {
    padding: clamp(1.75rem, 2vw, 2rem);
  }
}
/* Cursor-follow light — reduced brightness, only when pointer: fine */
.lp-help-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    500px circle at var(--x) var(--y),
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.02) 35%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
@media (pointer: fine) and (hover: hover) {
  .lp-help-card:hover::before {
    opacity: 1;
  }
}
@media (pointer: coarse) {
  .lp-help-card::before {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lp-help-card::before {
    display: none;
  }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .lp-help-card:hover {
    border-color: var(--text-on-dark-faint);
    box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.4);
  }
  .lp-help-card {
    transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  }
  .lp-help-card:hover {
    transform: translateY(-4px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .lp-help-card:hover {
    transform: none;
  }
}
.lp-help-card:focus-within {
  outline: 2px solid rgba(255, 255, 255, 0.2);
  outline-offset: 2px;
}
/* Upper part: icon + label + first line */
.lp-help-card__top {
  width: 100%;
  padding-bottom: 1.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-help-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-4);
  transition: transform 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
@media (pointer: fine) and (hover: hover) and (prefers-reduced-motion: no-preference) {
  .lp-help-card:hover .lp-help-card__icon {
    transform: translate(2px, -2px);
    color: rgba(255, 255, 255, 0.55);
  }
}
@media (pointer: coarse),
       (prefers-reduced-motion: reduce) {
  .lp-help-card__icon {
    transition: none;
  }
}
.lp-help-card__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 var(--space-3);
  line-height: 1.2;
}
.lp-help-card__line1 {
  font-size: clamp(1rem, 1.05vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
/* Lower part: “But…” body text */
.lp-help-card__bottom {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  flex-grow: 1;
}
/* Scroll-in: stagger cards */
.lp-help-card--animate {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.lp-help.lp-help--visible .lp-help-card--animate:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}
.lp-help.lp-help--visible .lp-help-card--animate:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.16s;
}
.lp-help.lp-help--visible .lp-help-card--animate:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.24s;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .lp-help.lp-help--visible .lp-help-card--animate:hover {
    transform: translateY(-4px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .lp-help-card--animate {
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }
}
/* Visual anchor: thin divider */
.lp-help__anchor {
  height: 1px;
  max-width: 320px;
  margin: 0 auto var(--space-12);
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}
/* Bridge + punchline */
.lp-help__bridge {
  text-align: left;
  font-size: clamp(1rem, 1.15vw, 1.25rem);
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0 0 var(--space-3);
  max-width: 90%;
  white-space: nowrap;
}
@media (max-width: 420px) {
  .lp-help__bridge {
    white-space: normal;
  }
}
.lp-help__bridge-punch {
  color: #dc2626;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: inline-block;
}
.lp-help__bridge-punch--animate {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s var(--ease-out) 0.35s, transform 0.5s var(--ease-out) 0.35s;
}
.lp-help.lp-help--visible .lp-help__bridge-punch--animate {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .lp-help__bridge-punch--animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* Understated CTA */
.lp-help__cta-wrap {
  text-align: left;
  margin: 0;
}
.lp-help__cta {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ease-out);
}
.lp-help__cta:hover {
  color: var(--text-primary);
}
.lp-help__cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: 4px;
}

/* ----- Section 3: Proof Economy — left-anchored editorial, premium ----- */
.lp-proof-economy {
  min-height: 120vh;
  background: #000000;
  border-top: 1px solid var(--border-1);
}
.lp-proof-economy__pin {
  position: sticky;
  top: 0;
  min-height: 120vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-block: var(--section-gap-y);
}
/* Same padding as section 2 */
.lp-proof-economy__wrap {
  width: 84vw;
  max-width: none;
  margin-inline: 8vw;
  padding-inline: clamp(16px, 1.5vw, 28px);
}
.lp-proof-economy__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(56px, 10vw, 120px);
  align-items: start;
  margin-inline: 0;
  margin-bottom: clamp(72px, 8vw, 96px);
  text-align: left;
  max-width: 100%;
}
.lp-proof-economy__title {
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
}
.lp-proof-economy__subtext {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.65;
  color: #b8b8b8;
  margin: 0;
  max-width: none;
  font-weight: 400;
}
/* Comparison block: left-aligned with headline */
.lp-proof-economy__columns {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  min-height: clamp(14rem, 28vw, 18rem);
  margin-bottom: clamp(72px, 8vw, 96px);
}
.lp-proof-economy__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  transition: opacity 0.8s var(--ease-out);
}
.lp-proof-economy__col--old {
  flex: 0 1 auto;
  padding-right: clamp(24px, 2.5vw, 32px);
  text-align: left;
}
.lp-proof-economy__col--new {
  flex: 0 1 auto;
  padding-left: clamp(24px, 2.5vw, 32px);
  text-align: left;
}
/* Column labels: uppercase, small, soft gray, do not dominate */
.lp-proof-economy__col-title {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin: 0 0 clamp(12px, 1.2vw, 16px);
  line-height: 1.2;
  opacity: 0;
}
.lp-proof-economy__col--new .lp-proof-economy__col-title {
  color: rgba(255, 255, 255, 0.4);
}
/* Divider: thin, subtle, soft gray, pivot between old and new */
.lp-proof-economy__divider {
  flex: 0 0 1px;
  min-width: 1px;
  align-self: stretch;
  min-height: clamp(14rem, 28vw, 18rem);
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
}
.lp-proof-economy__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* OLD column: lower contrast, softer gray, faded */
.lp-proof-economy__list li {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.5;
  padding: clamp(16px, 1.5vw, 20px) 0;
  color: #5A5A5A;
}
/* PROOF column: brighter white, stronger weight, dominates */
.lp-proof-economy__col--new .lp-proof-economy__list li {
  position: relative;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.lp-proof-economy__col-note {
  margin: var(--space-4) 0 0 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}
.lp-proof-economy__col--old .lp-proof-economy__col-note {
  color: rgba(255, 255, 255, 0.4);
}
/* Soft radial spotlight behind the active proof item — moves down the list */
.lp-proof-economy__col--new .lp-proof-economy__list li::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160%;
  height: 200%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 45%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
}
.lp-proof-economy--visible .lp-proof-economy__col--new .lp-proof-economy__list li:nth-child(1)::after { animation: lp-pe-glow-1 8s var(--ease-out) forwards; }
.lp-proof-economy--visible .lp-proof-economy__col--new .lp-proof-economy__list li:nth-child(2)::after { animation: lp-pe-glow-2 8s var(--ease-out) forwards; }
.lp-proof-economy--visible .lp-proof-economy__col--new .lp-proof-economy__list li:nth-child(3)::after { animation: lp-pe-glow-3 8s var(--ease-out) forwards; }
.lp-proof-economy--visible .lp-proof-economy__col--new .lp-proof-economy__list li:nth-child(4)::after { animation: lp-pe-glow-4 8s var(--ease-out) forwards; }
.lp-proof-economy--visible .lp-proof-economy__col--new .lp-proof-economy__list li:nth-child(5)::after { animation: lp-pe-glow-5 8s var(--ease-out) forwards; }
/* Narrative animation: 8s timeline, slower — old column stays visible (dulled), no collapse */
.lp-proof-economy--visible .lp-proof-economy__col-title {
  animation: lp-pe-show 0.7s var(--ease-out) 0.2s forwards;
  opacity: 0;
}
.lp-proof-economy--visible .lp-proof-economy__divider {
  animation: lp-pe-divider 8s var(--ease-out) forwards;
  opacity: 0;
}
.lp-proof-economy--visible .lp-proof-economy__col--old .lp-proof-economy__list li:nth-child(1) { animation: lp-pe-old-1 8s var(--ease-out) forwards; }
.lp-proof-economy--visible .lp-proof-economy__col--old .lp-proof-economy__list li:nth-child(2) { animation: lp-pe-old-2 8s var(--ease-out) forwards; }
.lp-proof-economy--visible .lp-proof-economy__col--old .lp-proof-economy__list li:nth-child(3) { animation: lp-pe-old-3 8s var(--ease-out) forwards; }
.lp-proof-economy--visible .lp-proof-economy__col--old .lp-proof-economy__list li:nth-child(4) { animation: lp-pe-old-4 8s var(--ease-out) forwards; }
.lp-proof-economy--visible .lp-proof-economy__col--old .lp-proof-economy__list li:nth-child(5) { animation: lp-pe-old-5 8s var(--ease-out) forwards; }
.lp-proof-economy--visible .lp-proof-economy__col--new .lp-proof-economy__list li:nth-child(1) { animation: lp-pe-new-1 8s var(--ease-out) forwards; }
.lp-proof-economy--visible .lp-proof-economy__col--new .lp-proof-economy__list li:nth-child(2) { animation: lp-pe-new-2 8s var(--ease-out) forwards; }
.lp-proof-economy--visible .lp-proof-economy__col--new .lp-proof-economy__list li:nth-child(3) { animation: lp-pe-new-3 8s var(--ease-out) forwards; }
.lp-proof-economy--visible .lp-proof-economy__col--new .lp-proof-economy__list li:nth-child(4) { animation: lp-pe-new-4 8s var(--ease-out) forwards; }
.lp-proof-economy--visible .lp-proof-economy__col--new .lp-proof-economy__list li:nth-child(5) { animation: lp-pe-new-5 8s var(--ease-out) forwards; }
.lp-proof-economy--visible .lp-proof-economy__close {
  animation: lp-pe-close 8s var(--ease-out) forwards;
  opacity: 0;
}
@keyframes lp-pe-show {
  to { opacity: 1; }
}
@keyframes lp-pe-divider {
  0%, 5% { opacity: 0; }
  10% { opacity: 1; }
  100% { opacity: 1; }
}
/* Old items: appear normal (1), stay normal until all proof shown, then dim to visible-but-dull (0.55) at 68% */
@keyframes lp-pe-old-1 { 0% { opacity: 0; } 8% { opacity: 1; } 65% { opacity: 1; } 72% { opacity: 0.55; } 100% { opacity: 0.55; } }
@keyframes lp-pe-old-2 { 0% { opacity: 0; } 8% { opacity: 1; } 65% { opacity: 1; } 72% { opacity: 0.55; } 100% { opacity: 0.55; } }
@keyframes lp-pe-old-3 { 0% { opacity: 0; } 8% { opacity: 1; } 65% { opacity: 1; } 72% { opacity: 0.55; } 100% { opacity: 0.55; } }
@keyframes lp-pe-old-4 { 0% { opacity: 0; } 8% { opacity: 1; } 65% { opacity: 1; } 72% { opacity: 0.55; } 100% { opacity: 0.55; } }
@keyframes lp-pe-old-5 { 0% { opacity: 0; } 8% { opacity: 1; } 65% { opacity: 1; } 72% { opacity: 0.55; } 100% { opacity: 0.55; } }
/* Proof items: fade in; active item full (1), others dim (0.58) so spotlight reads as “moving focus” */
@keyframes lp-pe-new-1 { 0%, 8% { opacity: 0; } 12% { opacity: 1; } 100% { opacity: 1; } }
@keyframes lp-pe-new-2 { 0%, 18% { opacity: 0; } 24% { opacity: 1; } 100% { opacity: 1; } }
@keyframes lp-pe-new-3 { 0%, 30% { opacity: 0; } 36% { opacity: 1; } 100% { opacity: 1; } }
@keyframes lp-pe-new-4 { 0%, 42% { opacity: 0; } 48% { opacity: 1; } 100% { opacity: 1; } }
@keyframes lp-pe-new-5 { 0%, 54% { opacity: 0; } 60% { opacity: 1; } 100% { opacity: 1; } }
/* Glow follows active signal: visible only when that item is in focus */
@keyframes lp-pe-glow-1 { 0%, 8% { opacity: 0; } 11% { opacity: 1; } 19% { opacity: 0; } 100% { opacity: 0; } }
@keyframes lp-pe-glow-2 { 0%, 20% { opacity: 0; } 23% { opacity: 1; } 31% { opacity: 0; } 100% { opacity: 0; } }
@keyframes lp-pe-glow-3 { 0%, 32% { opacity: 0; } 35% { opacity: 1; } 43% { opacity: 0; } 100% { opacity: 0; } }
@keyframes lp-pe-glow-4 { 0%, 44% { opacity: 0; } 47% { opacity: 1; } 55% { opacity: 0; } 100% { opacity: 0; } }
@keyframes lp-pe-glow-5 { 0%, 56% { opacity: 0; } 59% { opacity: 1; } 100% { opacity: 1; } }
@keyframes lp-pe-close {
  0%, 72% { opacity: 0; }
  82% { opacity: 1; }
  100% { opacity: 1; }
}
/* Bottom statement: left-aligned, conclusion of section */
.lp-proof-economy__close {
  text-align: left;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  color: #A1A1A1;
  margin: 0;
  opacity: 0;
}
.lp-proof-economy__close-accent {
  color: #FF2D2D;
  display: inline-block;
  transform-origin: left center;
}
.lp-proof-economy--visible .lp-proof-economy__close-accent {
  animation: lp-pe-close-accent 8s var(--ease-out) forwards;
}
@keyframes lp-pe-close-accent {
  0%, 72% { opacity: 0; transform: scale(0.88); }
  80% { opacity: 1; transform: scale(1); }
  88% { transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}
/* Mobile: stack columns */
@media (max-width: 767px) {
  .lp-proof-economy__pin {
    min-height: auto;
    padding-block: var(--space-16);
  }
  .lp-proof-economy__wrap {
    width: 100%;
    margin-inline: 0;
    padding-inline: clamp(16px, 5vw, 24px);
  }
  .lp-proof-economy__head {
    margin-bottom: var(--space-8);
    gap: var(--space-4);
  }
  .lp-proof-economy__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  .lp-proof-economy__subtext {
    font-size: clamp(0.875rem, 2vw, 1rem);
  }
  .lp-proof-economy__columns {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-6);
    min-height: auto;
    margin-bottom: var(--space-8);
  }
  .lp-proof-economy__divider {
    width: 50%;
    max-width: 100px;
    min-width: 0;
    min-height: 1px;
    height: 1px;
    margin: 0 auto;
    flex: none;
    align-self: center;
  }
  .lp-proof-economy__col--old,
  .lp-proof-economy__col--new {
    flex: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .lp-proof-economy__close {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    text-align: center;
    padding-inline: var(--space-2);
  }
  .lp-proof-economy__col-note {
    margin-top: var(--space-3);
  }
  .lp-proof-economy--visible .lp-proof-economy__divider {
    animation: lp-pe-divider-mob 8s var(--ease-out) forwards;
  }
}
@keyframes lp-pe-divider-mob {
  0%, 5% { opacity: 0; }
  10% { opacity: 1; }
  100% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-proof-economy--visible .lp-proof-economy__col-title,
  .lp-proof-economy--visible .lp-proof-economy__divider,
  .lp-proof-economy--visible .lp-proof-economy__col--old .lp-proof-economy__list li,
  .lp-proof-economy--visible .lp-proof-economy__col--new .lp-proof-economy__list li,
  .lp-proof-economy--visible .lp-proof-economy__col--new .lp-proof-economy__list li::after,
  .lp-proof-economy--visible .lp-proof-economy__close,
  .lp-proof-economy--visible .lp-proof-economy__close-accent {
    animation: none;
  }
  .lp-proof-economy--visible .lp-proof-economy__col-title,
  .lp-proof-economy--visible .lp-proof-economy__divider {
    opacity: 1;
  }
  .lp-proof-economy--visible .lp-proof-economy__col--old .lp-proof-economy__list li {
    opacity: 0.55;
  }
  .lp-proof-economy--visible .lp-proof-economy__col--new .lp-proof-economy__list li,
  .lp-proof-economy--visible .lp-proof-economy__col--new .lp-proof-economy__list li::after,
  .lp-proof-economy--visible .lp-proof-economy__close,
  .lp-proof-economy--visible .lp-proof-economy__close-accent {
    opacity: 1;
  }
}

/* ----- Infrastructure: the “how it works” Eureka section ----- */
.lp-infrastructure {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: clamp(var(--space-20), 10vw, var(--space-28));
  background: var(--bg-1);
  border-top: 1px solid var(--border-1);
}
/* Same padding as section 2 */
.lp-infrastructure__inner {
  width: 84vw;
  max-width: none;
  margin-inline: 8vw;
  padding-inline: clamp(16px, 1.5vw, 28px);
}
/* Head: Linear-style — headline white, supporting text gray, left-aligned */
.lp-infrastructure__head {
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-12));
  text-align: left;
  max-width: 56ch;
}
.lp-infrastructure__kicker {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #dc2626;
  margin: 0 0 var(--space-3);
  opacity: 0;
}
.lp-infrastructure--visible .lp-infrastructure__kicker {
  animation: lp-infra-fade 0.5s var(--ease-out) 0s forwards;
}
/* One block like Linear: first sentence white/bold, rest gray, natural wrap */
.lp-infrastructure__hero-text {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  margin: 0;
  font-weight: 400;
}
.lp-infrastructure__hero-line {
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(1.75rem, 2.6vw, 2.125rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
}
/* One-line flow caption: Work in · TalentProof · Hiring out */
.lp-infrastructure__flow-caption {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 clamp(var(--space-8), 4vw, var(--space-12));
  text-align: center;
  opacity: 0;
}
.lp-infrastructure--visible .lp-infrastructure__flow-caption {
  animation: lp-infra-fade 0.5s var(--ease-out) 0.15s forwards;
}
/* Map: single pipeline with rail (Linear-style breathing room) */
.lp-infrastructure__map {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  margin-bottom: clamp(var(--space-12), 6vw, var(--space-16));
  min-height: 18rem;
  column-gap: 0;
}
.lp-infrastructure__rail {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  margin-top: -1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 15%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.06) 85%, transparent 100%);
  pointer-events: none;
  opacity: 0;
}
.lp-infrastructure--visible .lp-infrastructure__rail {
  animation: lp-infra-fade 0.8s var(--ease-out) 0.5s forwards;
}
/* Sides: input/output, typography-only */
.lp-infrastructure__side {
  position: relative;
  z-index: 1;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
}
.lp-infrastructure--visible .lp-infrastructure__side--work {
  opacity: 1;
}
.lp-infrastructure--visible .lp-infrastructure__side--outcomes {
  animation: lp-infra-fade 0.5s 1.6s forwards;
}
/* Figure label (Linear-style FIG 0.2) */
.lp-infrastructure__fig {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 var(--space-2);
  opacity: 0;
}
.lp-infrastructure__fig--center {
  color: rgba(255, 255, 255, 0.5);
}
.lp-infrastructure--visible .lp-infrastructure__side--work .lp-infrastructure__fig { animation: lp-infra-fade 0.4s var(--ease-out) 0.02s forwards; }
.lp-infrastructure--visible .lp-infrastructure__center .lp-infrastructure__fig { animation: lp-infra-fade 0.4s var(--ease-out) 0.55s forwards; }
.lp-infrastructure--visible .lp-infrastructure__side--outcomes .lp-infrastructure__fig { animation: lp-infra-fade 0.4s var(--ease-out) 1.6s forwards; }
.lp-infrastructure__side-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 var(--space-4);
  max-width: 18ch;
  opacity: 0;
}
.lp-infrastructure__side--outcomes .lp-infrastructure__side-desc {
  max-width: 16ch;
  margin-inline: 0;
  margin-left: auto;
}
.lp-infrastructure--visible .lp-infrastructure__side--work .lp-infrastructure__side-label {
  animation: lp-infra-fade 0.4s var(--ease-out) 0.05s forwards;
}
.lp-infrastructure--visible .lp-infrastructure__side--work .lp-infrastructure__side-desc {
  animation: lp-infra-fade 0.45s var(--ease-out) 0.1s forwards;
}
.lp-infrastructure--visible .lp-infrastructure__side--work .lp-infrastructure__side-item:nth-child(1) { animation: lp-infra-fade 0.35s var(--ease-out) 0.18s forwards; }
.lp-infrastructure--visible .lp-infrastructure__side--work .lp-infrastructure__side-item:nth-child(2) { animation: lp-infra-fade 0.35s var(--ease-out) 0.26s forwards; }
.lp-infrastructure--visible .lp-infrastructure__side--work .lp-infrastructure__side-item:nth-child(3) { animation: lp-infra-fade 0.35s var(--ease-out) 0.34s forwards; }
.lp-infrastructure--visible .lp-infrastructure__side--work .lp-infrastructure__side-item:nth-child(4) { animation: lp-infra-fade 0.35s var(--ease-out) 0.42s forwards; }
.lp-infrastructure__side-label {
  font-size: clamp(0.75rem, 0.9vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 var(--space-2);
  opacity: 0;
}
.lp-infrastructure__side-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-infrastructure__side-item {
  font-size: clamp(0.8125rem, 0.95vw, 0.9375rem);
  line-height: 1.65;
  color: var(--text-secondary);
  opacity: 0;
}
.lp-infrastructure__side-item + .lp-infrastructure__side-item {
  margin-top: var(--space-1);
}
/* Center: hero block — the “engine” */
.lp-infrastructure__center {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  min-width: clamp(14rem, 24vw, 20rem);
  max-width: 22rem;
  padding: clamp(var(--space-7), 4vw, var(--space-10));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 32px rgba(220, 38, 38, 0.08), 0 0 64px rgba(220, 38, 38, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: scale(0.98);
}
.lp-infrastructure--visible .lp-infrastructure__center {
  animation: lp-infra-center-in 0.6s var(--ease-out) 0.55s forwards;
}
@keyframes lp-infra-center-in {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}
.lp-infrastructure__center-label {
  font-size: clamp(0.75rem, 0.9vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 var(--space-2);
}
.lp-infrastructure__center-brand {
  color: #dc2626;
  letter-spacing: 0.02em;
}
.lp-infrastructure__center-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 var(--space-4);
  max-width: 22ch;
}
.lp-infrastructure__center-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-infrastructure__center-item {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 500;
  opacity: 0;
}
.lp-infrastructure--visible .lp-infrastructure__center-item:nth-child(1) { animation: lp-infra-fade 0.4s var(--ease-out) 0.85s forwards; }
.lp-infrastructure--visible .lp-infrastructure__center-item:nth-child(2) { animation: lp-infra-fade 0.4s var(--ease-out) 1.02s forwards; }
.lp-infrastructure--visible .lp-infrastructure__center-item:nth-child(3) { animation: lp-infra-fade 0.4s var(--ease-out) 1.19s forwards; }
.lp-infrastructure--visible .lp-infrastructure__center-item:nth-child(4) { animation: lp-infra-fade 0.4s var(--ease-out) 1.36s forwards; }
.lp-infrastructure__center-item + .lp-infrastructure__center-item {
  margin-top: var(--space-2);
}
@keyframes lp-infra-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* Connectors: draw left → center → right */
.lp-infrastructure__bridge {
  position: relative;
  z-index: 1;
  flex: 0 0 clamp(2.5rem, 6vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
}
.lp-infrastructure__bridge-svg {
  overflow: visible;
}
.lp-infrastructure__bridge-svg--h {
  width: 100%;
  height: 2px;
}
.lp-infrastructure__bridge-svg--v {
  display: none;
  width: 2px;
  height: 100%;
  min-height: 2rem;
}
.lp-infrastructure__bridge-line {
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.6s var(--ease-out);
  filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.15));
}
.lp-infrastructure--visible .lp-infrastructure__bridge--left .lp-infrastructure__bridge-line {
  transition-delay: 0.75s;
  stroke-dashoffset: 0;
}
.lp-infrastructure--visible .lp-infrastructure__bridge--right .lp-infrastructure__bridge-line {
  transition-delay: 1.4s;
  stroke-dashoffset: 0;
}
.lp-infrastructure__side--outcomes {
  text-align: right;
}
.lp-infrastructure--visible .lp-infrastructure__side--outcomes .lp-infrastructure__side-label {
  animation: lp-infra-fade 0.4s var(--ease-out) 1.6s forwards;
}
.lp-infrastructure--visible .lp-infrastructure__side--outcomes .lp-infrastructure__side-desc {
  animation: lp-infra-fade 0.45s var(--ease-out) 1.64s forwards;
}
.lp-infrastructure--visible .lp-infrastructure__side--outcomes .lp-infrastructure__side-item:nth-child(1) { animation: lp-infra-fade 0.35s var(--ease-out) 1.72s forwards; }
.lp-infrastructure--visible .lp-infrastructure__side--outcomes .lp-infrastructure__side-item:nth-child(2) { animation: lp-infra-fade 0.35s var(--ease-out) 1.76s forwards; }
.lp-infrastructure--visible .lp-infrastructure__side--outcomes .lp-infrastructure__side-item:nth-child(3) { animation: lp-infra-fade 0.35s var(--ease-out) 1.84s forwards; }
/* Tagline: payoff */
.lp-infrastructure__tagline {
  text-align: center;
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
  max-width: 42ch;
  margin-inline: auto;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out) 2.1s;
}
.lp-infrastructure--visible .lp-infrastructure__tagline {
  opacity: 1;
}
/* Mobile */
@media (max-width: 767px) {
  .lp-infrastructure__rail {
    display: none;
  }
  .lp-infrastructure__map {
    flex-direction: column;
    align-items: center;
    max-width: 22rem;
    margin-inline: auto;
    min-height: auto;
  }
  .lp-infrastructure__side {
    max-width: 100%;
    text-align: center;
  }
  .lp-infrastructure__side--outcomes {
    text-align: center;
  }
  .lp-infrastructure__center {
    max-width: 100%;
  }
  .lp-infrastructure__bridge {
    flex: 0 0 auto;
    width: 2px;
    min-width: 2px;
    height: clamp(1.5rem, 4vw, 2.5rem);
    min-height: 1.5rem;
  }
  .lp-infrastructure__bridge-svg--h {
    display: none;
  }
  .lp-infrastructure__bridge-svg--v {
    display: block;
    width: 2px;
    height: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lp-infrastructure__kicker,
  .lp-infrastructure__flow-caption,
  .lp-infrastructure__rail,
  .lp-infrastructure__fig,
  .lp-infrastructure__side-desc,
  .lp-infrastructure--visible .lp-infrastructure__side,
  .lp-infrastructure--visible .lp-infrastructure__side-label,
  .lp-infrastructure--visible .lp-infrastructure__side-item,
  .lp-infrastructure--visible .lp-infrastructure__center,
  .lp-infrastructure--visible .lp-infrastructure__center-item,
  .lp-infrastructure--visible .lp-infrastructure__tagline {
    opacity: 1;
    animation: none;
    transition: none;
    transform: none;
  }
  .lp-infrastructure--visible .lp-infrastructure__bridge-line {
    stroke-dashoffset: 0;
    transition: none;
  }
}

/* ----- Cinematic: Where Talent Becomes Hiring Signals (three-column grid, polish) ----- */
.lp-cine {
  --cine-bg: #000000;
  --cine-primary: #ffffff;
  --cine-secondary: #a1a1a1;
  --cine-accent: #FF3B3B;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--section-gap-y);
  padding-bottom: var(--section-gap-y);
  background: var(--cine-bg);
  border-top: 1px solid var(--border-1);
}
.lp-cine__bg {
  position: absolute;
  inset: 0;
  background: var(--cine-bg);
  pointer-events: none;
}
.lp-cine__inner {
  position: relative;
  width: 84vw;
  max-width: none;
  margin-inline: 8vw;
  padding-inline: clamp(16px, 1.5vw, 28px);
}
.lp-cine__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(56px, 10vw, 120px);
  align-items: start;
  margin-inline: 0;
  margin-bottom: 4rem;
  text-align: left;
  max-width: 100%;
}
/* Phase 5 — section title: tighter line-height */
.lp-cine__title {
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
}
.lp-cine__subtext {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.58;
  color: #b8b8b8;
  margin: 0;
  max-width: none;
  font-weight: 400;
}
.lp-cine__flow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 120px;
  align-items: center;
  margin-bottom: 0;
  min-height: 24rem;
}
/* Phase 3: Clean signal flow — curved paths from card to engine, fiber-optic style, no particles */
.lp-cine__signal-lines {
  position: absolute;
  top: 22%;
  bottom: 22%;
  width: 18%;
  max-width: 110px;
  pointer-events: none;
  opacity: 0;
}
.lp-cine__signal-lines--left {
  left: 30%;
  transform: translateX(0);
}
.lp-cine__signal-lines--right {
  right: 30%;
  transform: translateX(0);
}
.lp-cine__signal-svg {
  width: 100%;
  height: 100%;
}
.lp-cine__signal-path {
  fill: none;
  stroke: rgba(255, 80, 80, 0.6);
  stroke-width: 1px;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.25;
}
/* Phase 4: Glowing particle (6px, red, 4px blur) travels along path — INPUT→ENGINE, ENGINE→OUTPUT */
.lp-cine__signal-particle {
  stroke: #ff0000;
  stroke-width: 6px;
  stroke-dasharray: 6 420;
  stroke-dashoffset: 0;
  opacity: 0.85;
  filter: blur(4px);
  transform: translateZ(0);
  will-change: stroke-dashoffset;
}
.lp-cine--active .lp-cine__signal-lines--left .lp-cine__signal-particle {
  animation: lp-cine-particle-flow 2s linear 0.4s infinite;
}
.lp-cine--active .lp-cine__signal-lines--right .lp-cine__signal-particle {
  animation: lp-cine-particle-flow 2s linear 1s infinite;
}
@keyframes lp-cine-particle-flow {
  to { stroke-dashoffset: -426; }
}
.lp-cine--active .lp-cine__signal-lines {
  opacity: 1;
  transition: opacity 0.6s var(--ease-out) 0.4s;
}
.lp-cine--active .lp-cine__signal-lines--right {
  transition-delay: 0.7s;
}
.lp-cine__zone {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lp-cine__zone--left { align-items: flex-end; text-align: right; }
.lp-cine__zone--right { align-items: flex-start; text-align: left; }
/* All three column labels: INPUT, TALENTPROOF ENGINE, OUTPUT — subtle, consistent */
.lp-cine__zone-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cine-primary);
  opacity: 0.5;
  margin: 0 0 24px;
}
.lp-cine__zone-label--center {
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: 24px;
  margin-bottom: 0;
}
/* Left: INPUT — cards (student work), minimal styling */
.lp-cine__work-items {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.lp-cine__input-card {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--cine-primary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), background 0.25s, border-color 0.25s;
}
.lp-cine__input-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--text-on-dark-soft);
}
.lp-cine__input-card-icon {
  flex-shrink: 0;
  color: var(--cine-secondary);
  opacity: 0.7;
}
.lp-cine__input-card-icon svg {
  display: block;
}
.lp-cine__input-card-label {
  white-space: nowrap;
}
.lp-cine--active .lp-cine__input-card--1 { transition-delay: 0.1s; opacity: 1; transform: translateX(0); }
.lp-cine--active .lp-cine__input-card--2 { transition-delay: 0.2s; opacity: 1; transform: translateX(0); }
.lp-cine--active .lp-cine__input-card--3 { transition-delay: 0.3s; opacity: 1; transform: translateX(0); }
.lp-cine--active .lp-cine__input-card--4 { transition-delay: 0.4s; opacity: 1; transform: translateX(0); }
/* Center: TalentProof Engine — 3 layers: outer glow ring (420px), middle ring (300px), inner core (180px) */
.lp-cine__zone--center { display: flex; flex-direction: column; align-items: center; }
.lp-cine__engine {
  position: relative;
  width: 420px;
  height: 420px;
  max-width: min(420px, 85vw);
  max-height: min(420px, 85vw);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1);
  transform-origin: center center;
  transition: opacity 0.5s var(--ease-out), transform 0.4s var(--ease-out);
  cursor: default;
  will-change: transform;
}
.lp-cine--active .lp-cine__engine {
  opacity: 1;
  transition-delay: 0.35s;
  animation: lp-cine-engine-pulse 2.5s ease-out 1.8s infinite;
}
/* Phase 5: outer ring pulse when signals reach — scale 1 → 1.04, 400ms */
@keyframes lp-cine-engine-pulse {
  0%, 100% { transform: scale(1); }
  16% { transform: scale(1.04); }
  32% { transform: scale(1); }
}
/* Layer 1: Outer glow — radial red glow; brief intensity increase in sync with pulse */
.lp-cine__engine-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.18), transparent 60%);
  filter: blur(80px);
  opacity: 0.85;
  pointer-events: none;
}
.lp-cine--active .lp-cine__engine-glow {
  animation: lp-cine-glow-pulse 2.5s ease-out 1.8s infinite;
}
@keyframes lp-cine-glow-pulse {
  0%, 100% { opacity: 0.85; }
  16% { opacity: 1.15; }
  32% { opacity: 0.85; }
}
/* Layer 2: Middle ring — 300px, centered, slow rotation */
.lp-cine__engine-rings {
  position: absolute;
  width: 300px;
  height: 300px;
  left: 50%;
  top: 50%;
  margin-left: -150px;
  margin-top: -150px;
  border-radius: 50%;
  pointer-events: none;
}
.lp-cine__engine-rings::before,
.lp-cine__engine-rings::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-cine__engine-rings::after {
  inset: 20%;
  border-color: rgba(255, 255, 255, 0.04);
}
.lp-cine--active .lp-cine__engine-rings {
  animation: lp-cine-rings-rotate 14s linear 0.6s infinite;
}
.lp-cine--active .lp-cine__engine-rings::after {
  animation: lp-cine-rings-rotate 18s linear 0.6s infinite reverse;
}
@keyframes lp-cine-rings-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.lp-cine__engine-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 59, 59, 0.12) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
}
.lp-cine--active .lp-cine__engine-pulse {
  animation: lp-cine-absorb-pulse 0.5s ease-out 1s forwards;
}
@keyframes lp-cine-absorb-pulse {
  0% { opacity: 0; transform: scale(0.95); }
  50% { opacity: 0.4; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.08); }
}
/* Layer 3: Inner core — 180px, processing labels VERIFICATION / SKILL ANALYSIS / PROOFSCORE */
.lp-cine__engine-labels {
  position: absolute;
  width: 180px;
  height: 180px;
  left: 50%;
  top: 50%;
  margin-left: -90px;
  margin-top: -90px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.lp-cine__engine-label {
  position: absolute;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--cine-primary);
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.4s ease;
}
.lp-cine--active .lp-cine__engine-label--1 { animation: lp-cine-label-cycle-1 6s ease-in-out 0.5s infinite; }
.lp-cine--active .lp-cine__engine-label--2 { animation: lp-cine-label-cycle-2 6s ease-in-out 0.5s infinite; }
.lp-cine--active .lp-cine__engine-label--3 { animation: lp-cine-label-cycle-3 6s ease-in-out 0.5s infinite; }
.lp-cine__engine:hover .lp-cine__engine-label--1 { animation: none; opacity: 0.95; }
.lp-cine__engine:hover .lp-cine__engine-label--2,
.lp-cine__engine:hover .lp-cine__engine-label--3 { animation: none; opacity: 0; }
/* Fade between labels every 2s, 0.4s opacity transition */
@keyframes lp-cine-label-cycle-1 {
  0%, 26.67% { opacity: 1; }
  33.33%, 93.33% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes lp-cine-label-cycle-2 {
  0%, 26.67% { opacity: 0; }
  33.33%, 60% { opacity: 1; }
  66.67%, 100% { opacity: 0; }
}
@keyframes lp-cine-label-cycle-3 {
  0%, 60% { opacity: 0; }
  66.67%, 93.33% { opacity: 1; }
  100% { opacity: 0; }
}
/* Right: OUTPUT — same card styling as input, small red check circle */
.lp-cine__zone--right { position: relative; }
.lp-cine__hiring-cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.lp-cine__hiring-card {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--cine-primary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out), background 0.25s, border-color 0.25s;
}
.lp-cine__hiring-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--text-on-dark-soft);
}
.lp-cine__hiring-card-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 59, 59, 0.2);
  color: var(--cine-accent);
}
.lp-cine__hiring-card-check svg {
  display: block;
  width: 10px;
  height: 10px;
}
/* Phase 6: Output cards activate sequentially on viewport — opacity 0→1, translateY 6px→0, 400ms, 150ms stagger */
.lp-cine--active .lp-cine__hiring-card--1 { transition-delay: 1s; opacity: 1; transform: translateY(0); }
.lp-cine--active .lp-cine__hiring-card--2 { transition-delay: 1.15s; opacity: 1; transform: translateY(0); }
.lp-cine--active .lp-cine__hiring-card--3 { transition-delay: 1.3s; opacity: 1; transform: translateY(0); }
.lp-cine--active .lp-cine__hiring-card--4 { transition-delay: 1.45s; opacity: 1; transform: translateY(0); }
/* Phase 7: Closing statement — Talent becomes proof. Proof becomes hiring. */
.lp-cine__tagline {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--cine-primary);
  margin-top: 120px;
  margin-bottom: 0;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-out) 2s, transform 0.5s var(--ease-out) 2s;
}
.lp-cine--active .lp-cine__tagline {
  opacity: 1;
  transform: translateY(0);
}
.lp-cine__tagline-accent {
  color: #FF3B3B;
}
@media (max-width: 1024px) {
  .lp-cine__flow { grid-template-columns: 1fr; gap: 48px; }
  .lp-cine__zone--left { align-items: center; text-align: center; }
  .lp-cine__zone--right { align-items: center; text-align: center; }
  .lp-cine__work-items { align-items: center; }
  .lp-cine__hiring-cards { align-items: center; }
  .lp-cine__signal-lines { display: none; }
  .lp-cine__engine { width: min(320px, 85vw); height: min(320px, 85vw); }
  .lp-cine__engine-rings { width: 220px; height: 220px; margin-left: -110px; margin-top: -110px; }
  .lp-cine__engine-labels { width: 140px; height: 140px; margin-left: -70px; margin-top: -70px; }
  .lp-cine__inner {
    padding-inline: clamp(20px, 4vw, 40px);
  }
}
@media (max-width: 767px) {
  .lp-cine {
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: auto;
  }
  .lp-cine__inner {
    padding-inline: clamp(16px, 5vw, 24px);
  }
  .lp-cine__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.15;
  }
  .lp-cine__subtext {
    font-size: clamp(0.875rem, 2vw, 1rem);
  }
  .lp-cine__flow { gap: 32px; }
  .lp-cine__tagline {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-top: 48px;
    padding-inline: var(--space-2);
  }
  .lp-cine__input-card,
  .lp-cine__hiring-card {
    min-width: 0;
  }
  .lp-cine__engine {
    width: min(260px, 75vw);
    height: min(260px, 75vw);
  }
}
@media (prefers-reduced-motion: reduce) {
  .lp-cine--active .lp-cine__engine,
  .lp-cine--active .lp-cine__engine-glow,
  .lp-cine--active .lp-cine__engine-rings,
  .lp-cine--active .lp-cine__engine-pulse,
  .lp-cine--active .lp-cine__engine-label { animation: none; opacity: 1; }
  .lp-cine--active .lp-cine__engine-label--1,
  .lp-cine--active .lp-cine__engine-label--2,
  .lp-cine--active .lp-cine__engine-label--3 { opacity: 0.7; }
  .lp-cine__signal-path { opacity: 0.25; }
  .lp-cine__signal-particle { animation: none; opacity: 0; }
  .lp-cine__zone-label,
  .lp-cine__input-card,
  .lp-cine__engine,
  .lp-cine__hiring-card,
  .lp-cine__hiring-card-check,
  .lp-cine__tagline { opacity: 1; transform: none; transition: none; animation: none; }
  .lp-cine--active .lp-cine__input-card { opacity: 0.9; transform: translateX(0); }
  .lp-cine--active .lp-cine__hiring-card .lp-cine__hiring-card-check { opacity: 1; transform: scale(1); }
}

/* ----- When Hiring Runs On Proof — premium product story (Stripe x Apple x Linear) ----- */
.lp-proof-run {
  --proof-run-bg: #000000;
  --proof-run-primary: #ffffff;
  --proof-run-secondary: #a1a1a1;
  --proof-run-accent: #ff2d2d;
  background: var(--proof-run-bg);
  padding-top: var(--section-gap-y);
  padding-bottom: var(--section-gap-y);
  border-top: 1px solid var(--border-1);
}
.lp-proof-run__inner {
  width: 84vw;
  max-width: none;
  margin-inline: 8vw;
  padding-inline: clamp(16px, 1.5vw, 28px);
}
.lp-proof-run__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--proof-run-secondary);
  margin: 0 0 24px;
  opacity: 0.7;
  transform: translateY(14px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.lp-proof-run__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(56px, 10vw, 120px);
  align-items: start;
  margin-inline: 0;
  margin-bottom: clamp(72px, 9vw, 112px);
  text-align: left;
  max-width: 100%;
}
.lp-proof-run__title {
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #ffffff;
  margin: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.lp-proof-run__subtext {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.65;
  color: #b8b8b8;
  margin: 0;
  max-width: none;
  font-weight: 400;
  transform: translateY(14px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.lp-proof-run--visible .lp-proof-run__label,
.lp-proof-run--visible .lp-proof-run__title,
.lp-proof-run--visible .lp-proof-run__subtext {
  opacity: 1;
  transform: translateY(0);
}
.lp-proof-run__label { opacity: 0; }
.lp-proof-run__title { opacity: 0; }
.lp-proof-run__subtext { opacity: 0; }
.lp-proof-run__title { opacity: 0; }
.lp-proof-run__subtext { opacity: 0; }
.lp-proof-run__rows {
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 9vw, 104px);
}
.lp-proof-run__row {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 0 44px;
  align-items: start;
  padding-block: 4px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.lp-proof-run--visible .lp-proof-run__row:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.lp-proof-run--visible .lp-proof-run__row:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 220ms; }
.lp-proof-run--visible .lp-proof-run__row:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 440ms; }
.lp-proof-run__stakeholder {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--proof-run-secondary);
  margin: 0;
  opacity: 0.5;
  padding-top: 3px;
  min-width: 108px;
}
.lp-proof-run__journey {
  display: grid;
  grid-template-columns: 1fr minmax(160px, auto) 1fr;
  gap: 36px;
  align-items: start;
}
.lp-proof-run__zone {
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
/* Row 1: before 0, center 200ms, after 400ms */
.lp-proof-run--visible .lp-proof-run__row:nth-child(1) .lp-proof-run__zone--before { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.lp-proof-run--visible .lp-proof-run__row:nth-child(1) .lp-proof-run__zone--center { opacity: 1; transform: translateY(0); transition-delay: 200ms; }
.lp-proof-run--visible .lp-proof-run__row:nth-child(1) .lp-proof-run__zone--after { opacity: 1; transform: translateY(0); transition-delay: 400ms; }
/* Row 2: before 220ms, center 420ms, after 620ms */
.lp-proof-run--visible .lp-proof-run__row:nth-child(2) .lp-proof-run__zone--before { opacity: 1; transform: translateY(0); transition-delay: 220ms; }
.lp-proof-run--visible .lp-proof-run__row:nth-child(2) .lp-proof-run__zone--center { opacity: 1; transform: translateY(0); transition-delay: 420ms; }
.lp-proof-run--visible .lp-proof-run__row:nth-child(2) .lp-proof-run__zone--after { opacity: 1; transform: translateY(0); transition-delay: 620ms; }
/* Row 3: before 440ms, center 640ms, after 840ms */
.lp-proof-run--visible .lp-proof-run__row:nth-child(3) .lp-proof-run__zone--before { opacity: 1; transform: translateY(0); transition-delay: 440ms; }
.lp-proof-run--visible .lp-proof-run__row:nth-child(3) .lp-proof-run__zone--center { opacity: 1; transform: translateY(0); transition-delay: 640ms; }
.lp-proof-run--visible .lp-proof-run__row:nth-child(3) .lp-proof-run__zone--after { opacity: 1; transform: translateY(0); transition-delay: 840ms; }
.lp-proof-run__zone-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--proof-run-secondary);
  margin: 0 0 10px;
  opacity: 0.45;
}
.lp-proof-run__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-proof-run__list li {
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 6px;
}
.lp-proof-run__list li:last-child {
  margin-bottom: 0;
}
/* Before: painful, constrained — unseen / pressure / overload (reversal of “system broken”) */
.lp-proof-run__zone--before {
  text-align: left;
  padding-right: 28px;
  position: relative;
  min-width: 0;
}
.lp-proof-run__zone--before::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08) 0%, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%, rgba(255,255,255,0.08) 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  pointer-events: none;
}
.lp-proof-run--visible .lp-proof-run__zone--before::after {
  animation: lp-proof-run-signal-flow 2.8s ease-in-out 0.3s infinite;
}
@keyframes lp-proof-run-signal-flow {
  0% { background-position: 0 0; }
  100% { background-position: 100% 0; }
}
.lp-proof-run__zone--before .lp-proof-run__zone-label {
  color: #7a7a7a;
  opacity: 0.7;
  letter-spacing: 0.18em;
  font-size: 10px;
}
.lp-proof-run__zone--before .lp-proof-run__list {
  margin-top: 2px;
}
.lp-proof-run__zone--before .lp-proof-run__list li {
  color: #9a9a9a;
  opacity: 0.95;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 400;
  line-height: 1.42;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.lp-proof-run__zone--before .lp-proof-run__list li:last-child {
  margin-bottom: 0;
}
/* Center: transformation trigger — strongest, subtle red accent */
.lp-proof-run__zone--center {
  text-align: center;
  flex-shrink: 0;
  min-width: 160px;
  padding: 24px 28px;
  position: relative;
}
.lp-proof-run__zone--center::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 45, 45, 0.07) 35%, rgba(255, 45, 45, 0.1) 50%, rgba(255, 45, 45, 0.07) 65%, transparent);
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lp-proof-run__zone--center:hover::before {
  opacity: 1.15;
}
.lp-proof-run__zone--center::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,45,45,0.15) 0%, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%, rgba(255,45,45,0.1) 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  pointer-events: none;
}
.lp-proof-run--visible .lp-proof-run__zone--center::after {
  animation: lp-proof-run-signal-flow 2.8s ease-in-out 1.4s infinite;
}
.lp-proof-run__zone--center .lp-proof-run__list li {
  color: var(--proof-run-primary);
  opacity: 0.95;
}
.lp-proof-run__zone--center .lp-proof-run__list {
  margin-top: 12px;
}
.lp-proof-run__zone--center .lp-proof-run__list li {
  opacity: 0;
  transform: translateY(6px);
  animation: lp-proof-run-li-in 0.45s ease-out forwards;
}
.lp-proof-run--visible .lp-proof-run__row:nth-child(1) .lp-proof-run__zone--center .lp-proof-run__list li:nth-child(1) { animation-delay: 0.28s; }
.lp-proof-run--visible .lp-proof-run__row:nth-child(1) .lp-proof-run__zone--center .lp-proof-run__list li:nth-child(2) { animation-delay: 0.34s; }
.lp-proof-run--visible .lp-proof-run__row:nth-child(1) .lp-proof-run__zone--center .lp-proof-run__list li:nth-child(3) { animation-delay: 0.4s; }
.lp-proof-run--visible .lp-proof-run__row:nth-child(2) .lp-proof-run__zone--center .lp-proof-run__list li:nth-child(1) { animation-delay: 0.5s; }
.lp-proof-run--visible .lp-proof-run__row:nth-child(2) .lp-proof-run__zone--center .lp-proof-run__list li:nth-child(2) { animation-delay: 0.56s; }
.lp-proof-run--visible .lp-proof-run__row:nth-child(2) .lp-proof-run__zone--center .lp-proof-run__list li:nth-child(3) { animation-delay: 0.62s; }
.lp-proof-run--visible .lp-proof-run__row:nth-child(3) .lp-proof-run__zone--center .lp-proof-run__list li:nth-child(1) { animation-delay: 0.72s; }
.lp-proof-run--visible .lp-proof-run__row:nth-child(3) .lp-proof-run__zone--center .lp-proof-run__list li:nth-child(2) { animation-delay: 0.78s; }
.lp-proof-run--visible .lp-proof-run__row:nth-child(3) .lp-proof-run__zone--center .lp-proof-run__list li:nth-child(3) { animation-delay: 0.84s; }
@keyframes lp-proof-run-li-in {
  to { opacity: 1; transform: translateY(0); }
}
/* Center activation: very subtle red pulse when zone appears (restrained, premium) */
.lp-proof-run--visible .lp-proof-run__row:nth-child(1) .lp-proof-run__zone--center {
  animation: lp-proof-run-center-pulse 0.85s ease-out 0.35s both, lp-proof-run-center-breathe 4s ease-in-out 1.2s infinite;
}
.lp-proof-run--visible .lp-proof-run__row:nth-child(2) .lp-proof-run__zone--center {
  animation: lp-proof-run-center-pulse 0.85s ease-out 0.57s both, lp-proof-run-center-breathe 4s ease-in-out 1.42s infinite;
}
.lp-proof-run--visible .lp-proof-run__row:nth-child(3) .lp-proof-run__zone--center {
  animation: lp-proof-run-center-pulse 0.85s ease-out 0.79s both, lp-proof-run-center-breathe 4s ease-in-out 1.64s infinite;
}
@keyframes lp-proof-run-center-pulse {
  0%, 100% { box-shadow: none; }
  45% { box-shadow: inset 0 0 28px rgba(255, 45, 45, 0.06); }
}
@keyframes lp-proof-run-center-breathe {
  0%, 100% { box-shadow: inset 0 0 24px rgba(255, 45, 45, 0.02); }
  50% { box-shadow: inset 0 0 32px rgba(255, 45, 45, 0.05); }
}
/* After: confident, elevated — recognized / respected / efficient (same ecosystem, different reality) */
.lp-proof-run__zone--after {
  text-align: right;
  padding-left: 28px;
  min-width: 0;
}
.lp-proof-run__zone--after .lp-proof-run__zone-label {
  color: rgba(255, 255, 255, 0.6);
  opacity: 0.5;
  letter-spacing: 0.2em;
  font-size: 9px;
  font-weight: 400;
}
.lp-proof-run__zone--after .lp-proof-run__list {
  margin-top: 4px;
}
.lp-proof-run__zone--after .lp-proof-run__list li {
  color: #ffffff;
  font-weight: 500;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.58;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.lp-proof-run__zone--after .lp-proof-run__list li:last-child {
  margin-bottom: 0;
}
.lp-proof-run__brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--proof-run-accent);
  display: block;
  text-transform: uppercase;
}
.lp-proof-run__close {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--proof-run-primary);
  margin: clamp(160px, 22vw, 240px) 0 0;
  padding-inline: 0.5rem;
  text-align: center;
  max-width: 20em;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.lp-proof-run__close-accent {
  color: var(--proof-run-accent);
}
.lp-proof-run--visible .lp-proof-run__close {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1000ms;
}
@media (prefers-reduced-motion: reduce) {
  .lp-proof-run__label,
  .lp-proof-run__title,
  .lp-proof-run__subtext,
  .lp-proof-run__row,
  .lp-proof-run__zone,
  .lp-proof-run__close,
  .lp-proof-run__zone--before::after,
  .lp-proof-run__zone--center::after {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  .lp-proof-run__zone--center .lp-proof-run__list li {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
@media (max-width: 768px) {
  .lp-proof-run__inner {
    padding-inline: var(--content-padding-inline);
  }
  .lp-proof-run__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lp-proof-run__stakeholder {
    padding-top: 0;
    min-width: 0;
  }
  .lp-proof-run__journey {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .lp-proof-run__zone--before::after,
  .lp-proof-run__zone--center::after {
    display: none;
  }
  .lp-proof-run__zone--before,
  .lp-proof-run__zone--after {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  .lp-proof-run__zone--center {
    order: -1;
  }
}

/* ----- Ecosystem shift: 3-panel transformation (category-defining moment, not slide/diagram/dashboard) ----- */
/* Intent: Proof improves outcomes for students, institutions, recruiters. Message in 2–3s. Final state stays on reverse scroll. */
.ecosystem-shift {
  --ecosystem-shift-accent: #FF2D2D;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
  border-top: 1px solid var(--border-1);
  min-height: 120vh;
  display: flex;
  align-items: center;
  padding-block: var(--section-gap-y);
}
/* Subtle ambient radial red glow — faint depth so section feels alive, not flat */
.ecosystem-shift::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  width: min(100%, 900px);
  height: 320px;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(255, 45, 45, 0.038) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.ecosystem-shift__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 3vw, 48px);
}
/* Header: same layout and typography as 2nd section (lp-help) */
.ecosystem-shift__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(56px, 10vw, 120px);
  align-items: start;
  margin-inline: 0;
  margin-bottom: clamp(7rem, 14vw, 10rem);
  text-align: left;
  max-width: 100%;
}
/* Phase 5 — eyebrow to heading spacing, editorial line-heights */
.ecosystem-shift__head-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ecosystem-shift__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  line-height: 1.2;
}
.ecosystem-shift__heading {
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
}
.ecosystem-shift__subline {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  font-weight: 400;
  line-height: 1.58;
  color: #b8b8b8;
  margin: 0;
  max-width: none;
}
.ecosystem-shift__stage {
  position: relative;
  margin-top: clamp(56px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 3vw, 40px);
  align-items: stretch;
  justify-items: center;
  margin-bottom: clamp(88px, 12vw, 140px);
}
/* Subtle red ambient glow behind pillars — proof energy in the ecosystem, almost invisible depth */
.ecosystem-shift__stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(100%, 900px);
  height: 420px;
  background: radial-gradient(
    circle at center,
    rgba(255, 45, 45, 0.08) 0%,
    rgba(255, 45, 45, 0.02) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
/* Proof pillars: vertical transformation objects — not SaaS cards */
.ecosystem-shift__pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 300px;
  min-width: 260px;
  min-height: 380px;
  padding: clamp(24px, 2.5vw, 32px) clamp(20px, 2vw, 28px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  position: relative;
  z-index: 1;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}
@media (hover: hover) {
  .ecosystem-shift__pillar:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.14);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 36px rgba(255, 45, 45, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.06);
  }
  .ecosystem-shift__pillar:hover .ecosystem-shift__pillar-beam-line {
    box-shadow: 0 0 16px rgba(255, 45, 45, 0.55);
  }
}
.ecosystem-shift__pillar-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}
.ecosystem-shift__pillar-top {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
  margin: 0 0 1.25rem;
  /* opacity driven by scroll in JS; no transition so it tracks scroll 1:1 */
}
/* Proof beam: grey track, red fill + dot move bottom→top continuously */
.ecosystem-shift__pillar-beam {
  position: relative;
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
/* Light grey background track (full height) — red fill and dot move along it */
.ecosystem-shift__pillar-beam-track {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 1px;
  pointer-events: none;
}
/* Red line fills the track from bottom to top (continuous loop) */
.ecosystem-shift__pillar-beam-line {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  background: rgba(255, 45, 45, 0.5);
  border-radius: 1px;
  box-shadow: 0 0 12px rgba(255, 45, 45, 0.5);
  transform-origin: bottom center;
  animation: pillar-beam-fill 2.8s ease-in-out infinite;
}
/* Red upward arrow moves with the fill (bottom→top), continuous */
.ecosystem-shift__pillar-beam-pulse {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -7px;
  width: 0;
  height: 0;
  background: none;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 11px solid #FF2D2D;
  pointer-events: none;
  animation: pillar-beam-pulse-up 2.8s ease-in-out infinite;
}
/* Stagger cards 2 and 3 slightly for a subtle wave */
.ecosystem-shift__pillar--institution .ecosystem-shift__pillar-beam-line,
.ecosystem-shift__pillar--institution .ecosystem-shift__pillar-beam-pulse {
  animation-delay: 0.4s;
}
.ecosystem-shift__pillar--recruiter .ecosystem-shift__pillar-beam-line,
.ecosystem-shift__pillar--recruiter .ecosystem-shift__pillar-beam-pulse {
  animation-delay: 0.8s;
}
/* Red line: fill bottom→top, fade out at top, reset while invisible, fade in at bottom — no visible collapse */
@keyframes pillar-beam-fill {
  0% {
    transform: scaleY(0);
    opacity: 1;
  }
  76% {
    transform: scaleY(1);
    opacity: 1;
  }
  80% {
    transform: scaleY(1);
    opacity: 0;
  }
  82% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(0);
    opacity: 0;
  }
}
/* Red dot: move bottom→top, fade out at top, reset while invisible — no visible going down */
@keyframes pillar-beam-pulse-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  76% {
    transform: translateY(-134px);
    opacity: 1;
  }
  80% {
    transform: translateY(-134px);
    opacity: 0;
  }
  82% {
    transform: translateY(0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}
@keyframes pillar-beam-pulse-up-mobile {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  76% {
    transform: translateY(-94px);
    opacity: 1;
  }
  80% {
    transform: translateY(-94px);
    opacity: 0;
  }
  82% {
    transform: translateY(0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}
/* Active pillar: top brightens, bottom fades, border glows red */
.ecosystem-shift__pillar.pillar-active .ecosystem-shift__pillar-top {
  color: #ffffff;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.15);
}
.ecosystem-shift__pillar.pillar-active {
  border-color: rgba(255, 45, 45, 0.35);
  box-shadow: 0 0 28px rgba(255, 45, 45, 0.12);
}
.ecosystem-shift__pillar-bottom {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.45;
  margin: 1rem 0 0;
  opacity: 1;
  filter: none;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
}
.ecosystem-shift__pillar.pillar-active .ecosystem-shift__pillar-bottom {
  opacity: 0.55;
  color: rgba(255, 255, 255, 0.7);
}
.ecosystem-shift__pillar-payoff {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0.55;
  /* opacity driven by scroll in JS (0.55 → 1); always readable */
}
.ecosystem-shift__pillar.pillar-active .ecosystem-shift__pillar-payoff {
  opacity: 1;
  color: rgba(255, 255, 255, 0.78);
}
/* Final statement: opacity/transform driven by scroll progress (0.74–1.0); no time-based transition */
.ecosystem-shift__statement {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.65;
  color: #fff;
  text-align: left;
  max-width: 760px;
  margin: 0;
  opacity: 0;
  transform: translateY(12px);
}
.ecosystem-shift--statement-visible .ecosystem-shift__statement {
  opacity: 1;
  transform: translateY(0);
}
.ecosystem-shift__statement-accent {
  color: #FF2D2D;
}

/* Ecosystem shift: responsive — tablet 3 cols, mobile stacked */
@media (max-width: 1023px) {
  .ecosystem-shift {
    padding-block: var(--section-gap-y);
  }
  .ecosystem-shift__header {
    margin-bottom: clamp(5rem, 10vw, 7rem);
  }
  .ecosystem-shift__heading {
    font-size: clamp(2.25rem, 4.5vw, 3rem);
  }
  .ecosystem-shift__subline {
    font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  }
  .ecosystem-shift__stage {
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(44px, 4.5vw, 56px);
    gap: clamp(20px, 2.5vw, 28px);
    margin-bottom: clamp(64px, 9vw, 100px);
  }
  .ecosystem-shift__stage::before {
    height: 200px;
    width: min(100%, 560px);
  }
  .ecosystem-shift__pillar {
    min-height: 320px;
    max-width: 260px;
    min-width: 200px;
    padding: clamp(18px, 1.75vw, 24px) clamp(14px, 1.5vw, 20px);
  }
  .ecosystem-shift__pillar-label {
    margin-bottom: 0.875rem;
  }
  .ecosystem-shift__pillar-top {
    font-size: 15px;
  }
  .ecosystem-shift__pillar-beam {
    height: 120px;
    min-height: 100px;
  }
  .ecosystem-shift__statement {
    font-size: clamp(22px, 2.5vw, 28px);
    max-width: 640px;
  }
}

@media (max-width: 767px) {
  .ecosystem-shift {
    padding-block: clamp(36px, 8vw, 56px);
  }
  .ecosystem-shift__container {
    padding-inline: clamp(18px, 4vw, 24px);
  }
  .ecosystem-shift__eyebrow {
    font-size: 9px;
    letter-spacing: 0.28em;
  }
  .ecosystem-shift__heading {
    font-size: clamp(2rem, 5.5vw, 2.5rem);
  }
  .ecosystem-shift__subline {
    font-size: 1rem;
    line-height: 1.65;
    max-width: 100%;
  }
  .ecosystem-shift__stage {
    grid-template-columns: 1fr;
    margin-top: clamp(28px, 4vw, 40px);
    gap: 32px;
    margin-bottom: clamp(48px, 6vw, 72px);
  }
  .ecosystem-shift__stage::before {
    height: 160px;
    width: 85%;
  }
  .ecosystem-shift__pillar {
    min-height: 260px;
    max-width: 100%;
    min-width: 0;
    padding: 18px 20px;
  }
  .ecosystem-shift__pillar-label {
    font-size: 9px;
    margin-bottom: 0.75rem;
  }
  .ecosystem-shift__pillar-top {
    font-size: 15px;
    margin-bottom: 0.875rem;
  }
  .ecosystem-shift__pillar-beam {
    height: 100px;
    min-height: 80px;
  }
  .ecosystem-shift__pillar-beam-pulse {
    animation-name: pillar-beam-pulse-up-mobile;
  }
  .ecosystem-shift__pillar-bottom {
    font-size: 12px;
    margin-top: 0.75rem;
  }
  .ecosystem-shift__pillar-payoff {
    font-size: 11px;
    padding-top: 0.875rem;
    margin-top: 0.5rem;
  }
  .ecosystem-shift__statement {
    font-size: clamp(20px, 5vw, 26px);
    line-height: 1.48;
    max-width: 100%;
    margin-top: 0;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-shift__pillar,
  .ecosystem-shift__statement {
    transition: none;
  }
  .ecosystem-shift__pillar-beam-line {
    animation: none;
    transform: scaleY(1);
  }
  .ecosystem-shift__pillar-beam-pulse {
    animation: none;
    transform: translateY(-134px);
  }
  .ecosystem-shift--statement-visible .ecosystem-shift__statement {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) and (max-width: 767px) {
  .ecosystem-shift__pillar.pillar-active .ecosystem-shift__pillar-beam-pulse {
    transform: translateY(-94px);
  }
}

/* ----- Section 5: Proof makes talent discoverable (layout + typography only) ----- */
.lp-discover {
  --disc-bg: #000000;
  --disc-primary: #ffffff;
  --disc-secondary: #a1a1a1;
  --disc-accent: #ff2d2d;
  min-height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--disc-bg);
  padding-block: var(--section-gap-y);
  padding-inline: 0;
  border-top: 1px solid var(--border-1);
}
.lp-discover__inner {
  width: 84vw;
  max-width: none;
  margin-inline: 8vw;
  padding-inline: clamp(16px, 1.5vw, 28px);
  text-align: left;
}
.lp-discover__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(56px, 10vw, 120px);
  align-items: start;
  margin-inline: 0;
  margin-bottom: clamp(var(--space-16), 8vw, var(--space-24));
  text-align: left;
  max-width: 100%;
}
.lp-discover__title {
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #ffffff;
  margin: 0;
}
.lp-discover__subtext {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.65;
  color: #b8b8b8;
  margin: 0;
  max-width: none;
  font-weight: 400;
}
.lp-discover__stage {
  margin-bottom: clamp(var(--space-20), 10vw, var(--space-28));
  min-height: clamp(280px, 35vw, 400px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-discover__viz {
  position: relative;
  width: clamp(360px, 58vw, 520px);
  height: clamp(300px, 40vw, 440px);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Signal waves — expand from center when section enters viewport */
.lp-discover__waves {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.lp-discover__wave {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(255, 45, 45, 0.22);
  background: transparent;
  opacity: 0;
  transform: scale(0.2);
  transform-origin: center;
}
.lp-discover--visible .lp-discover__wave {
  animation: lp-discover-wave 2.8s ease-out infinite;
}
.lp-discover--visible .lp-discover__wave--1 { animation-delay: 0s; }
.lp-discover--visible .lp-discover__wave--2 { animation-delay: 0.95s; }
.lp-discover--visible .lp-discover__wave--3 { animation-delay: 1.9s; }
@keyframes lp-discover-wave {
  0% {
    transform: scale(0.2);
    opacity: 0.3;
  }
  65% {
    opacity: 0.08;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
/* Connection lines: center → nodes, draw outward when section visible */
.lp-discover__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.lp-discover__line {
  stroke: #a1a1a1;
  stroke-width: 0.35;
  stroke-linecap: round;
  opacity: 0.4;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.9s ease-out;
}
.lp-discover--visible .lp-discover__line--1 { transition-delay: 0.6s; stroke-dashoffset: 0; }
.lp-discover--visible .lp-discover__line--2 { transition-delay: 0.85s; stroke-dashoffset: 0; }
.lp-discover--visible .lp-discover__line--3 { transition-delay: 1.1s; stroke-dashoffset: 0; }
.lp-discover--visible .lp-discover__line--4 { transition-delay: 1.35s; stroke-dashoffset: 0; }
.lp-discover--visible .lp-discover__line--5 { transition-delay: 1.6s; stroke-dashoffset: 0; }
.lp-discover--visible .lp-discover__line--6 { transition-delay: 1.85s; stroke-dashoffset: 0; }
/* Central element: verified proof — soft glow, subtle depth, anchors section */
.lp-discover__center {
  width: clamp(140px, 28vw, 220px);
  height: clamp(140px, 28vw, 220px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(ellipse 75% 75% at 50% 45%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02) 50%, transparent 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 60px rgba(255, 45, 45, 0.08),
    0 0 120px rgba(255, 45, 45, 0.04),
    0 0 180px rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.lp-discover__center-label {
  font-size: clamp(0.8125rem, 1.4vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
/* Surrounding nodes: ecosystem around central proof — radial, balanced, inactive */
.lp-discover__node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.lp-discover__node-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
/* Recruiter node: slight warm glow */
.lp-discover__node--recruiter .lp-discover__node-dot {
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.06);
}
/* Opportunity node: subtle accent tint */
.lp-discover__node--opportunity .lp-discover__node-dot {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 45, 45, 0.12);
  box-shadow: 0 0 16px rgba(255, 45, 45, 0.04);
}
/* Discovery nodes: neutral, dim */
.lp-discover__node--discovery .lp-discover__node-dot {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.03);
}
.lp-discover__node-label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--disc-secondary);
  opacity: 0.7;
  white-space: nowrap;
}
/* Radial positions: 6 nodes around center, even spacing */
.lp-discover__node--pos-1 { left: 88%; top: 22%; }
.lp-discover__node--pos-2 { left: 75%; top: 52%; }
.lp-discover__node--pos-3 { left: 50%; top: 82%; }
.lp-discover__node--pos-4 { left: 25%; top: 52%; }
.lp-discover__node--pos-5 { left: 12%; top: 22%; }
.lp-discover__node--pos-6 { left: 50%; top: 8%; }
.lp-discover__close {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: var(--disc-primary);
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  .lp-discover--visible .lp-discover__wave { animation: none; opacity: 0; }
  .lp-discover__line { transition: none; }
  .lp-discover--visible .lp-discover__line { transition-delay: 0s; }
}

/* ----- The Talent Graph — network of proof-based talent discovery ----- */
.lp-talent-graph {
  --tg-bg: #000000;
  --tg-primary: #ffffff;
  --tg-secondary: #a1a1a1;
  --tg-accent: #ff2d2d;
  min-height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-bg);
  padding-block: var(--section-gap-y);
  padding-inline: 0;
  border-top: 1px solid var(--border-1);
}
.lp-talent-graph__inner {
  width: 84vw;
  max-width: none;
  margin-inline: 8vw;
  padding-inline: clamp(16px, 1.5vw, 28px);
  text-align: left;
}
.lp-talent-graph__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(56px, 10vw, 120px);
  align-items: start;
  margin-inline: 0;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
  text-align: left;
  max-width: 100%;
}
.lp-talent-graph__title {
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #ffffff;
  margin: 0;
}
.lp-talent-graph__subline {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.65;
  color: #b8b8b8;
  margin: 0;
  max-width: none;
  font-weight: 400;
}
/* Signal propagation viz: center proof, waves, ecosystem nodes — ~45% page height */
.lp-talent-graph__viz {
  position: relative;
  width: 80%;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: clamp(var(--space-20), 10vw, var(--space-28));
  min-height: 45vh;
  max-height: 520px;
}
.lp-talent-graph__inner {
  width: 100%;
}
.lp-talent-graph__svg {
  width: 100%;
  height: auto;
  overflow: visible;
  display: block;
}
.lp-talent-graph__signal-wrap {
  transform-origin: center;
}
/* Center: Verified Proof node — appears first */
.lp-talent-graph__proof-node {
  fill: rgba(255, 255, 255, 0.12);
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1.5;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.lp-talent-graph--visible .lp-talent-graph__proof-node {
  transition-delay: 0.25s;
  opacity: 1;
}
.lp-talent-graph__proof-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  fill: var(--tg-secondary);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out) 0.5s;
}
.lp-talent-graph--visible .lp-talent-graph__proof-label {
  opacity: 1;
}
/* Radar-style wave pulses — subtle (0.25–0.35), pulse then delay between waves */
.lp-talent-graph__waves {
  pointer-events: none;
}
.lp-talent-graph__wave {
  fill: none;
  stroke: rgba(255, 45, 45, 0.28);
  stroke-width: 1.5;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.lp-talent-graph--visible .lp-talent-graph__wave {
  animation: tg-wave-expand 2.4s ease-out infinite;
}
.lp-talent-graph--visible .lp-talent-graph__wave.tg--wave-1 { animation-delay: 0.5s; }
.lp-talent-graph--visible .lp-talent-graph__wave.tg--wave-2 { animation-delay: 1.5s; }
.lp-talent-graph--visible .lp-talent-graph__wave.tg--wave-3 { animation-delay: 2.5s; }
.lp-talent-graph--visible .lp-talent-graph__wave.tg--wave-4 { animation-delay: 3.5s; }
@keyframes tg-wave-expand {
  0% { transform: scale(0.12); opacity: 0.32; }
  85% { opacity: 0.06; }
  100% { transform: scale(2.6); opacity: 0; }
}
/* Ecosystem nodes — Student, Institution, Recruiter (distinct styles, no labels); light up as signal reaches */
.lp-talent-graph__eco-node {
  opacity: 0;
  transition: opacity 0.5s var(--ease-out), filter 0.35s var(--ease-out);
}
.lp-talent-graph__eco-node--student {
  fill: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.1));
}
.lp-talent-graph__eco-node--institution {
  fill: rgba(255, 255, 255, 0.25);
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 1;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.12));
}
.lp-talent-graph__eco-node--recruiter {
  fill: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.25));
}
.lp-talent-graph--visible .lp-talent-graph__eco-node.tg--rec-1 { transition-delay: 1.1s; opacity: 1; }
.lp-talent-graph--visible .lp-talent-graph__eco-node.tg--rec-2 { transition-delay: 1.4s; opacity: 1; }
.lp-talent-graph--visible .lp-talent-graph__eco-node.tg--rec-3 { transition-delay: 1.7s; opacity: 1; }
.lp-talent-graph--visible .lp-talent-graph__eco-node.tg--rec-4 { transition-delay: 2s; opacity: 1; }
.lp-talent-graph--visible .lp-talent-graph__eco-node.tg--rec-5 { transition-delay: 2.3s; opacity: 1; }
.lp-talent-graph--visible .lp-talent-graph__eco-node.tg--rec-6 { transition-delay: 2.6s; opacity: 1; }
.lp-talent-graph__close {
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--tg-primary);
  margin: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out) 3s;
}
.lp-talent-graph--visible .lp-talent-graph__close { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .lp-talent-graph--visible .lp-talent-graph__wave { animation: none; opacity: 0; }
  .lp-talent-graph__proof-node,
  .lp-talent-graph__proof-label,
  .lp-talent-graph__eco-node,
  .lp-talent-graph__close { opacity: 1; transition: none; }
  .lp-talent-graph--visible .lp-talent-graph__proof-node,
  .lp-talent-graph--visible .lp-talent-graph__eco-node { transition-delay: 0s; }
}

/* ----- Section 2: Scroll-driven transformation (credential → proof system viz) ----- */
.lp-problem {
  padding-block: var(--space-24);
  background: var(--bg-1);
  border-top: 1px solid var(--border-1);
}
.lp-problem__wrap {
  width: 84vw;
  max-width: none;
  margin-inline: 8vw;
  padding-inline: clamp(16px, 1.5vw, 28px);
}
.lp-problem__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 0 0 var(--space-6);
}
.lp-problem__title-line {
  display: block;
}
.lp-problem__title--center {
  text-align: center;
  max-width: none;
}
.lp-problem__subtext {
  font-size: clamp(1rem, 1.25vw, 1.0625rem);
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
  max-width: 480px;
  margin: 0 auto var(--space-20);
}
/* Viz container: most of section width */
.lp-problem__viz-wrap {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  position: relative;
}
.lp-system-viz {
  width: 100%;
  margin-inline: auto;
}
.lp-system-viz__svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: min(85vw, 520px);
}
/* Lines: thin, minimal */
.lp-system-viz__line {
  stroke: var(--border-2);
  stroke-width: 1;
  transition: opacity 0.6s var(--ease-out);
}
.lp-system-viz__line--proof {
  stroke: var(--border-1);
  stroke-width: 1.25;
}
.lp-system-viz__proof-lines .lp-system-viz__line--proof {
  stroke: var(--text-muted);
}
/* Center node */
.lp-system-viz__center-circle {
  fill: var(--surface-1);
  stroke: var(--border-2);
  stroke-width: 1;
}
.lp-system-viz__center-label {
  fill: var(--text-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
}
/* Credential nodes: muted circles + text */
.lp-system-viz__node circle {
  fill: var(--surface-1);
  stroke: var(--border-2);
  stroke-width: 1;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.lp-system-viz__node text {
  fill: var(--text-muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-family: var(--font-sans);
  transition: opacity 0.5s var(--ease-out);
}
.lp-system-viz__node--proof circle {
  stroke: var(--border-1);
}
.lp-system-viz__node--proof text {
  fill: var(--text-secondary);
}
/* Phase 1: credentials visible, proof hidden */
.lp-problem--viz[data-phase="1"] .lp-system-viz__credential-lines,
.lp-problem--viz[data-phase="1"] .lp-system-viz__credential-nodes {
  opacity: 1;
}
.lp-problem--viz[data-phase="1"] .lp-system-viz__proof-lines,
.lp-problem--viz[data-phase="1"] .lp-system-viz__proof-nodes {
  opacity: 0;
  pointer-events: none;
}
.lp-problem--viz[data-phase="1"] .lp-problem__viz-caption--signals {
  opacity: 1;
}
.lp-problem--viz[data-phase="1"] .lp-problem__viz-caption--proof {
  opacity: 0;
}
/* Phase 2: collapse credentials */
.lp-problem--viz[data-phase="2"] .lp-system-viz__credential-lines,
.lp-problem--viz[data-phase="2"] .lp-system-viz__credential-nodes {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}
.lp-problem--viz[data-phase="2"] .lp-system-viz__proof-lines,
.lp-problem--viz[data-phase="2"] .lp-system-viz__proof-nodes {
  opacity: 0;
}
.lp-problem--viz[data-phase="2"] .lp-problem__viz-caption--signals {
  opacity: 0.4;
}
.lp-problem--viz[data-phase="2"] .lp-problem__viz-caption--proof {
  opacity: 0;
}
/* Phase 3: proof visible */
.lp-problem--viz[data-phase="3"] .lp-system-viz__credential-lines,
.lp-problem--viz[data-phase="3"] .lp-system-viz__credential-nodes {
  opacity: 0;
  pointer-events: none;
}
.lp-problem--viz[data-phase="3"] .lp-system-viz__proof-lines,
.lp-problem--viz[data-phase="3"] .lp-system-viz__proof-nodes {
  opacity: 1;
}
.lp-problem--viz[data-phase="3"] .lp-problem__viz-caption--signals {
  opacity: 0;
}
.lp-problem--viz[data-phase="3"] .lp-problem__viz-caption--proof {
  opacity: 1;
}
/* Captions below viz */
.lp-problem__viz-caption {
  text-align: center;
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: var(--space-8) 0 0;
  transition: opacity 0.5s var(--ease-out);
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: var(--space-6);
}
.lp-problem__viz-caption--proof {
  color: var(--text-secondary);
}
.lp-problem__viz-wrap {
  position: relative;
  padding-bottom: var(--space-16);
}
/* Floating motion: subtle drift on nodes */
@media (prefers-reduced-motion: no-preference) {
  .lp-system-viz__node--float {
    animation: lp-viz-float 8s ease-in-out infinite;
  }
  .lp-system-viz__credential-nodes .lp-system-viz__node--float:nth-child(1) { animation-delay: 0s; }
  .lp-system-viz__credential-nodes .lp-system-viz__node--float:nth-child(2) { animation-delay: 0.8s; }
  .lp-system-viz__credential-nodes .lp-system-viz__node--float:nth-child(3) { animation-delay: 1.6s; }
  .lp-system-viz__credential-nodes .lp-system-viz__node--float:nth-child(4) { animation-delay: 2.4s; }
  .lp-system-viz__credential-nodes .lp-system-viz__node--float:nth-child(5) { animation-delay: 3.2s; }
  .lp-system-viz__proof-nodes .lp-system-viz__node--float:nth-child(1) { animation-delay: 0.2s; }
  .lp-system-viz__proof-nodes .lp-system-viz__node--float:nth-child(2) { animation-delay: 1s; }
  .lp-system-viz__proof-nodes .lp-system-viz__node--float:nth-child(3) { animation-delay: 1.8s; }
  .lp-system-viz__proof-nodes .lp-system-viz__node--float:nth-child(4) { animation-delay: 2.6s; }
  .lp-system-viz__proof-nodes .lp-system-viz__node--float:nth-child(5) { animation-delay: 3.4s; }
}
@keyframes lp-viz-float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(2px, -3px); }
  66% { transform: translate(-1px, 2px); }
}
/* Scale transition for credential collapse - use transform on group */
.lp-problem--viz .lp-system-viz__credential-nodes,
.lp-problem--viz .lp-system-viz__credential-lines {
  transform-origin: 200px 200px;
  transition: opacity 0.6s var(--ease-out);
}
.lp-problem--viz[data-phase="2"] .lp-system-viz__credential-nodes,
.lp-problem--viz[data-phase="2"] .lp-system-viz__credential-lines {
  transform: scale(0.88);
}

/* Section 2: scroll-triggered fade-in */
.lp-problem__inner--animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.lp-problem.lp-problem--visible .lp-problem__inner--animate {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .lp-problem__inner--animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .lp-system-viz__node--float {
    animation: none;
  }
}

/* ----- LP Section (reusable) ----- */
.lp-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: var(--section-gap-y);
  border-top: 1px solid var(--border-1);
}
/* Phase 5 — label to title spacing */
.lp-section__label {
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.25;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.lp-section__label-num {
  color: var(--accent);
  margin-right: var(--space-2);
}
.lp-section__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--text-primary);
  margin: 0 0 var(--space-4);
  max-width: 20ch;
}
.lp-section__lead {
  font-size: 1.0625rem;
  line-height: var(--leading-snug);
  color: var(--text-secondary);
  max-width: 44ch;
  margin: 0 0 var(--space-12);
}

/* ----- LP Feature grid (like Linear Agents blocks) ----- */
.lp-feature-grid {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-8);
}
@media (min-width: 640px) {
  .lp-feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .lp-feature-grid { grid-template-columns: repeat(3, 1fr); }
}
.lp-feature {
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}
.lp-feature:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow-sm);
}
.lp-feature__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-3);
}
.lp-feature__description {
  font-size: var(--text-small);
  line-height: var(--leading-normal);
  color: var(--text-secondary);
  margin: 0 0 var(--space-4);
}
.lp-feature__link {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--accent);
}
.lp-feature__link:hover { color: var(--accent-hover); }

/* ----- LP Pillars (3 cards, like Linear MCP) ----- */
.lp-pillars {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-8);
}
@media (min-width: 768px) {
  .lp-pillars { grid-template-columns: repeat(3, 1fr); }
}
.lp-pillar {
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color var(--duration-normal) var(--ease-out);
}
.lp-pillar:hover { border-color: var(--border-2); }
.lp-pillar__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-2);
}
.lp-pillar__description {
  font-size: var(--text-small);
  color: var(--text-secondary);
  margin: 0 0 var(--space-6);
}
.lp-pillar .btn {
  width: 100%;
  justify-content: center;
}

/* ----- LP Product links (like Linear Cycles) ----- */
.lp-product-links {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
@media (min-width: 640px) {
  .lp-product-links { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .lp-product-links { grid-template-columns: repeat(4, 1fr); }
}
.lp-product-link {
  display: block;
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  color: inherit;
  transition: border-color var(--duration-normal) var(--ease-out), background var(--duration-normal) var(--ease-out);
}
.lp-product-link:hover {
  border-color: var(--border-2);
  background: var(--surface-2);
  color: var(--text-primary);
}
.lp-product-link__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-1);
}
.lp-product-link__description {
  font-size: var(--text-small);
  color: var(--text-secondary);
  margin: 0 0 var(--space-3);
}
.lp-product-link__arrow {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--accent);
}

/* ----- LP Testimonials ----- */
.lp-testimonials {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-8);
}
@media (min-width: 768px) {
  .lp-testimonials { grid-template-columns: repeat(2, 1fr); }
}
.lp-testimonial {
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.lp-testimonial__quote {
  font-size: 1.0625rem;
  line-height: var(--leading-snug);
  color: var(--text-primary);
  margin: 0 0 var(--space-4);
}
.lp-testimonial__quote::before {
  content: "“";
  color: var(--text-muted);
}
.lp-testimonial__quote::after {
  content: """;
  color: var(--text-muted);
}
.lp-testimonial__name {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
.lp-testimonial__company {
  font-size: var(--text-small);
  color: var(--text-muted);
  margin: 0;
}

/* ----- LP Social proof ----- */
.lp-social {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-block: var(--space-12);
}
.lp-social__stat {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-2);
}
.lp-social__lead {
  font-size: var(--text-body);
  color: var(--text-secondary);
  margin: 0;
}

/* ----- LP CTA strip (final) ----- */
.lp-cta-strip {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-20) var(--space-6);
  border-top: 1px solid var(--border-1);
  background: var(--bg-2);
}
.lp-cta-strip__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-8);
}
.lp-cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ----- Identity Gateway: Phase 3 — base look and feel (cinematic, premium, minimal) ----- */
.identity-gateway-section {
  --identity-gateway-accent: #FF2D2D;
  position: relative;
  min-height: 600vh;
  background: #000;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
/* Phase 9 — soften bottom edge: signal and dark fade into footer so the page doesn’t end abruptly */
.identity-gateway-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(140px, 18vh, 220px);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 45, 45, 0.015) 15%,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(17, 17, 19, 0.95) 85%,
    #111113 100%
  );
  pointer-events: none;
  z-index: 0;
}
/* Sticky stage: remains pinned; pure black with subtle ambient red depth */
.identity-gateway__pin {
  position: sticky;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}
.identity-gateway__stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Centered content container: constrained width, responsive padding */
.identity-gateway__content {
  position: relative;
  width: 100%;
  max-width: 1400px;
  min-height: 100%;
  margin-inline: auto;
  padding-inline: clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Proof signal background layer — grid, thin paths, subtle particles; behind stage */
.identity-gateway__bg-signals {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.identity-gateway__bg-grid {
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(255, 45, 45, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 45, 45, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.identity-gateway__bg-paths {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.identity-gateway__bg-path {
  stroke: #FF2D2D;
  stroke-width: 0.2;
  fill: none;
  opacity: 0.08;
}
/* Phase 10 — particles stay subtle so signal system does not overpower content */
.identity-gateway__bg-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #FF2D2D;
  box-shadow: 0 0 5px rgba(255, 45, 45, 0.08);
  opacity: 0.04;
  animation: identity-gateway-particle-center 26s ease-in-out infinite;
}
.identity-gateway__bg-particle--1 { left: 12%; top: 18%; animation-delay: 0s; }
.identity-gateway__bg-particle--2 { left: 28%; top: 72%; animation-delay: -3s; }
.identity-gateway__bg-particle--3 { left: 55%; top: 25%; animation-delay: -6s; }
.identity-gateway__bg-particle--4 { left: 78%; top: 65%; animation-delay: -9s; }
.identity-gateway__bg-particle--5 { left: 18%; top: 48%; animation-delay: -12s; }
.identity-gateway__bg-particle--6 { left: 88%; top: 35%; animation-delay: -15s; }
/* Drift toward active identity: left (student), center (institution), right (recruiter) */
.identity-gateway--frame-student .identity-gateway__bg-particle {
  animation-name: identity-gateway-particle-left;
}
.identity-gateway--frame-institution .identity-gateway__bg-particle {
  animation-name: identity-gateway-particle-center;
}
.identity-gateway--frame-recruiter .identity-gateway__bg-particle {
  animation-name: identity-gateway-particle-right;
}
.identity-gateway--frame-intro .identity-gateway__bg-particle,
.identity-gateway--frame-resolved .identity-gateway__bg-particle {
  animation-name: identity-gateway-particle-center;
}
@keyframes identity-gateway-particle-left {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.04; }
  50% { transform: translate(-12px, -3px) scale(1.05); opacity: 0.055; }
}
@keyframes identity-gateway-particle-center {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.04; }
  33% { transform: translate(3px, -5px) scale(1.04); opacity: 0.055; }
  66% { transform: translate(-2px, 3px) scale(0.99); opacity: 0.038; }
}
@keyframes identity-gateway-particle-right {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.04; }
  50% { transform: translate(12px, 3px) scale(1.05); opacity: 0.055; }
}
@media (prefers-reduced-motion: reduce) {
  .identity-gateway__bg-particle {
    animation: none;
    opacity: 0.05;
  }
}
/* Sticky stage background: pure black + extremely restrained ambient red depth */
.identity-gateway__pin::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(100%, 1400px);
  height: 85vh;
  background: radial-gradient(
    ellipse 65% 70% at 50% 50%,
    rgba(255, 45, 45, 0.028) 0%,
    rgba(255, 45, 45, 0.008) 35%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}
/* Faint horizontal red signal line in stage background (for future animation) */
.identity-gateway__stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  max-width: 480px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 45, 45, 0.08) 25%,
    rgba(255, 45, 45, 0.12) 50%,
    rgba(255, 45, 45, 0.08) 75%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}
/* Phase 9 — Red signal line choreography: thin line reorients with active identity; restrained glow */
.identity-gateway__signal-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52%;
  max-width: 460px;
  height: 1px;
  transform: translate(-50%, -50%) translateX(calc(var(--signal-offset-x, 0) * 1%));
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 45, 45, 0.1) 20%,
    rgba(255, 45, 45, 0.2) 50%,
    rgba(255, 45, 45, 0.1) 80%,
    transparent 100%
  );
  box-shadow: 0 0 12px rgba(255, 45, 45, 0.04), 0 0 4px rgba(255, 45, 45, 0.02);
  pointer-events: none;
  z-index: 0;
  transition: transform 0.45s cubic-bezier(0.33, 1, 0.68, 1), background 0.4s ease-out;
}
/* STUDENT active: line bias left */
.identity-gateway--frame-student .identity-gateway__signal-line {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 45, 45, 0.16) 15%,
    rgba(255, 45, 45, 0.22) 35%,
    rgba(255, 45, 45, 0.12) 70%,
    transparent 100%
  );
}
/* INSTITUTION active: re-centered, balanced */
.identity-gateway--frame-institution .identity-gateway__signal-line {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 45, 45, 0.1) 22%,
    rgba(255, 45, 45, 0.2) 50%,
    rgba(255, 45, 45, 0.1) 78%,
    transparent 100%
  );
}
/* RECRUITER active: line bias right */
.identity-gateway--frame-recruiter .identity-gateway__signal-line {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 45, 45, 0.12) 30%,
    rgba(255, 45, 45, 0.22) 65%,
    rgba(255, 45, 45, 0.16) 85%,
    transparent 100%
  );
}
/* Intro / Resolved: balanced state */
.identity-gateway--frame-intro .identity-gateway__signal-line,
.identity-gateway--frame-resolved .identity-gateway__signal-line {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 45, 45, 0.08) 25%,
    rgba(255, 45, 45, 0.16) 50%,
    rgba(255, 45, 45, 0.08) 75%,
    transparent 100%
  );
}
/* Thin vertical beam from line toward active identity (optional accent) */
.identity-gateway__signal-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 20px;
  transform: translateX(-50%);
  background: linear-gradient(to top, rgba(255, 45, 45, 0.12), transparent 65%);
  opacity: 0.6;
  transition: left 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.identity-gateway--frame-student .identity-gateway__signal-line::after {
  left: 28%;
}
.identity-gateway--frame-institution .identity-gateway__signal-line::after,
.identity-gateway--frame-intro .identity-gateway__signal-line::after,
.identity-gateway--frame-resolved .identity-gateway__signal-line::after {
  left: 50%;
}
.identity-gateway--frame-recruiter .identity-gateway__signal-line::after {
  left: 72%;
}
/* Traveling pulse — very subtle, continuity only */
.identity-gateway__signal-pulse {
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 45, 45, 0.35);
  box-shadow: 0 0 6px rgba(255, 45, 45, 0.08);
  transform: translate(-50%, -50%);
  animation: identity-gateway-pulse 14s ease-in-out infinite;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .identity-gateway__signal-line {
    transition-duration: 0.2s;
  }
  .identity-gateway__signal-pulse {
    animation: none;
    opacity: 0.3;
  }
}
@keyframes identity-gateway-pulse {
  0%, 100% { left: 0; opacity: 0.32; }
  15% { opacity: 0.42; }
  50% { left: 100%; opacity: 0.38; }
  85% { opacity: 0.28; }
}
/* Phase 6 — Faint memory states: ghosted identities in background for system continuity */
.identity-gateway__memory {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 7vw, 100px);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.identity-gateway__ghost {
  font-size: clamp(64px, 12vw, 160px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.5s ease-out;
  white-space: nowrap;
}
/* Intro: all three very faint — ecosystem hint only */
.identity-gateway--frame-intro .identity-gateway__ghost {
  opacity: 0.02;
}
/* Student active: INSTITUTION + RECRUITER ghosted in background */
.identity-gateway--frame-student .identity-gateway__ghost--institution,
.identity-gateway--frame-student .identity-gateway__ghost--recruiter {
  opacity: 0.035;
}
.identity-gateway--frame-student .identity-gateway__ghost--student {
  opacity: 0;
}
/* Institution active: STUDENT behind, RECRUITER ahead */
.identity-gateway--frame-institution .identity-gateway__ghost--student,
.identity-gateway--frame-institution .identity-gateway__ghost--recruiter {
  opacity: 0.035;
}
.identity-gateway--frame-institution .identity-gateway__ghost--institution {
  opacity: 0;
}
/* Recruiter active: STUDENT + INSTITUTION in background */
.identity-gateway--frame-recruiter .identity-gateway__ghost--student,
.identity-gateway--frame-recruiter .identity-gateway__ghost--institution {
  opacity: 0.035;
}
.identity-gateway--frame-recruiter .identity-gateway__ghost--recruiter {
  opacity: 0;
}
/* Resolved: no ghost text — avoid overlap with final CTA */
.identity-gateway--frame-resolved .identity-gateway__ghost {
  opacity: 0;
}
.identity-gateway__frame {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-8);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  filter: brightness(0.86);
  transition: filter 0.38s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
/* Active identity emphasis: brightness + glow + scale (scale in JS) */
.identity-gateway--frame-intro .identity-gateway__frame--intro,
.identity-gateway--frame-student .identity-gateway__frame--student,
.identity-gateway--frame-institution .identity-gateway__frame--institution,
.identity-gateway--frame-recruiter .identity-gateway__frame--recruiter,
.identity-gateway--frame-resolved .identity-gateway__frame--resolved {
  filter: brightness(1.05);
}
.identity-gateway--frame-intro .identity-gateway__frame--intro .identity-gateway__intro-headline,
.identity-gateway--frame-intro .identity-gateway__frame--intro .identity-gateway__intro-support {
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.08), 0 0 48px rgba(255, 255, 255, 0.04);
}
.identity-gateway--frame-student .identity-gateway__frame--student .identity-gateway__frame-label,
.identity-gateway--frame-student .identity-gateway__frame--student .identity-gateway__frame-copy,
.identity-gateway--frame-institution .identity-gateway__frame--institution .identity-gateway__frame-label,
.identity-gateway--frame-institution .identity-gateway__frame--institution .identity-gateway__frame-copy,
.identity-gateway--frame-recruiter .identity-gateway__frame--recruiter .identity-gateway__frame-label,
.identity-gateway--frame-recruiter .identity-gateway__frame--recruiter .identity-gateway__frame-copy {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1), 0 0 40px rgba(255, 255, 255, 0.05);
}
.identity-gateway--frame-resolved .identity-gateway__frame--resolved .identity-gateway__resolved-headline,
.identity-gateway--frame-resolved .identity-gateway__frame--resolved .identity-gateway__resolved-diagram-label {
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.06), 0 0 32px rgba(255, 255, 255, 0.03);
}
/* FRAME 1 — Intro: system asking user to identify; massive headline, support line, faint signal */
.identity-gateway__frame--intro {
  opacity: 1;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: clamp(48px, 8vw, 80px) clamp(24px, 4vw, 64px);
  text-align: center;
}
/* Intro headline: massive, cinematic question — not a marketing line */
.identity-gateway__intro-headline {
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.94;
  color: #ffffff;
  margin: 0 0 clamp(40px, 6vw, 64px);
  max-width: none;
  text-align: center;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.06), 0 0 80px rgba(255, 255, 255, 0.03);
}
/* Support line: smaller, muted, elegant */
.identity-gateway__intro-support {
  margin: 0;
  font-size: clamp(0.8125rem, 1.05vw, 0.9375rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.52);
}
/* Faint thin red signal line underneath the support line */
.identity-gateway__intro-signal {
  display: block;
  width: 42%;
  max-width: 240px;
  height: 1px;
  margin-top: clamp(32px, 5vw, 48px);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 45, 45, 0.12) 28%,
    rgba(255, 45, 45, 0.18) 50%,
    rgba(255, 45, 45, 0.12) 72%,
    transparent 100%
  );
}
/* Shared frame headline — crisp white, strong line-height */
.identity-gateway__frame-headline {
  margin: 0;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #ffffff;
  max-width: 14ch;
}
/* FRAME 2–4 — Student / Institution / Recruiter: dedicated spotlight moments */
.identity-gateway__frame--student,
.identity-gateway__frame--institution,
.identity-gateway__frame--recruiter {
  padding: clamp(48px, 8vw, 80px) clamp(24px, 4vw, 64px);
}
/* Giant identity word — huge, bold, centered, dominant; strong visual presence */
.identity-gateway__frame-label {
  margin: 0 0 clamp(40px, 6vw, 56px);
  font-size: clamp(61px, 13.6vw, 187px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.86;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 0 56px rgba(255, 255, 255, 0.08), 0 0 120px rgba(255, 255, 255, 0.04);
}
/* Support line — centered, concise, elegant; not too small */
.identity-gateway__frame-copy {
  margin: 0 0 clamp(32px, 5vw, 48px);
  font-size: clamp(0.9375rem, 1.15vw, 1.125rem);
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  max-width: 700px;
  text-align: center;
  letter-spacing: 0.02em;
}
/* Phase 10 — CTA reveal: subdued until frame active; opacity + upward movement + underline draw-in + red accent */
.identity-gateway__frame-cta {
  position: relative;
  display: inline-block;
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: opacity 0.32s ease-out, transform 0.32s cubic-bezier(0.33, 1, 0.68, 1), color 0.28s ease-out, border-color 0.28s ease-out;
  background: none;
  border-radius: 0;
}
/* Thin red line draw-in on reveal — subtle, not pop-in */
.identity-gateway__frame-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: rgba(255, 45, 45, 0.5);
  transition: width 0.36s cubic-bezier(0.33, 1, 0.68, 1);
}
.identity-gateway__frame-cta--revealed {
  color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(255, 45, 45, 0.32);
}
/* CTA text in red for student, institution, recruiter parts (not last/resolved part) */
.identity-gateway__frame--student .identity-gateway__frame-cta,
.identity-gateway__frame--institution .identity-gateway__frame-cta,
.identity-gateway__frame--recruiter .identity-gateway__frame-cta {
  color: #FF2D2D;
}
.identity-gateway__frame--student .identity-gateway__frame-cta--revealed,
.identity-gateway__frame--institution .identity-gateway__frame-cta--revealed,
.identity-gateway__frame--recruiter .identity-gateway__frame-cta--revealed {
  color: #FF2D2D;
  border-bottom-color: rgba(255, 45, 45, 0.45);
}
.identity-gateway__frame-cta--revealed::after {
  width: 100%;
}
@media (hover: hover) {
  .identity-gateway__frame-cta--revealed:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 45, 45, 0.5);
  }
  .identity-gateway__frame--student .identity-gateway__frame-cta--revealed:hover,
  .identity-gateway__frame--institution .identity-gateway__frame-cta--revealed:hover,
  .identity-gateway__frame--recruiter .identity-gateway__frame-cta--revealed:hover {
    color: #ff4444;
  }
  .identity-gateway__frame-cta--revealed:hover::after {
    background: rgba(255, 45, 45, 0.5);
  }
  .identity-gateway__frame-cta:not(.identity-gateway__frame-cta--revealed):hover {
    color: rgba(255, 255, 255, 0.7);
    border-bottom-color: var(--text-on-dark-dim);
  }
  .identity-gateway__frame--student .identity-gateway__frame-cta:not(.identity-gateway__frame-cta--revealed):hover,
  .identity-gateway__frame--institution .identity-gateway__frame-cta:not(.identity-gateway__frame-cta--revealed):hover,
  .identity-gateway__frame--recruiter .identity-gateway__frame-cta:not(.identity-gateway__frame-cta--revealed):hover {
    color: rgba(255, 45, 45, 0.85);
  }
}
@keyframes cta-signal-pulse {
  0% { left: 0; opacity: 0.8; }
  100% { left: calc(100% - 28px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .identity-gateway__frame-cta--revealed:hover::after,
  .identity-gateway__resolved-actions .identity-gateway__frame-cta--revealed:hover::after {
    animation: none;
    opacity: 0;
  }
}
/* Phase 7 — FRAME 5: Final resolved CTA — centered, no cards/tiles, elegant linked destinations */
.identity-gateway__frame--resolved {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  padding: clamp(48px, 8vw, 80px) clamp(24px, 4vw, 64px);
}
/* Top row: STUDENT · INSTITUTION · RECRUITER — clean premium layout */
.identity-gateway__resolved-identities {
  margin: 0;
  font-size: clamp(0.8125rem, 1.25vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
/* Ecosystem diagram: STUDENT — Proof — RECRUITER, INSTITUTION below; thin red connectors + pulse */
.identity-gateway__resolved-diagram {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 140px;
  margin-inline: auto;
  margin-bottom: 4px;
}
.identity-gateway__resolved-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.identity-gateway__resolved-line {
  fill: none;
  stroke: rgba(255, 45, 45, 0.4);
  stroke-width: 0.5;
  stroke-linecap: round;
}
.identity-gateway__resolved-pulse {
  fill: none;
  stroke: rgba(255, 45, 45, 0.6);
  stroke-width: 0.5;
  stroke-linecap: round;
  stroke-dasharray: 0.06 0.94;
  animation: resolved-line-pulse 2.8s ease-in-out infinite;
}
.identity-gateway__resolved-pulse:nth-of-type(4) { animation-delay: 0s; }
.identity-gateway__resolved-pulse:nth-of-type(5) { animation-delay: 0.4s; }
.identity-gateway__resolved-pulse:nth-of-type(6) { animation-delay: 0.8s; }
@keyframes resolved-line-pulse {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .identity-gateway__resolved-pulse {
    animation: none;
    stroke-dasharray: none;
    opacity: 0.4;
  }
}
.identity-gateway__resolved-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 45, 45, 0.7);
  text-transform: uppercase;
  pointer-events: none;
}
.identity-gateway__resolved-diagram-label {
  position: absolute;
  font-size: clamp(0.5625rem, 1vw, 0.6875rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.28s ease, opacity 0.28s ease;
}
.identity-gateway__resolved-diagram-label--student {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.identity-gateway__resolved-diagram-label--recruiter {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.identity-gateway__resolved-diagram-label--institution {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media (hover: hover) {
  .identity-gateway__frame--resolved:has(.identity-gateway__resolved-actions > .identity-gateway__frame-cta:nth-child(1):hover) .identity-gateway__resolved-diagram-label--student {
    color: #ffffff;
  }
  .identity-gateway__frame--resolved:has(.identity-gateway__resolved-actions > .identity-gateway__frame-cta:nth-child(1):hover) .identity-gateway__resolved-diagram-label--recruiter,
  .identity-gateway__frame--resolved:has(.identity-gateway__resolved-actions > .identity-gateway__frame-cta:nth-child(1):hover) .identity-gateway__resolved-diagram-label--institution {
    opacity: 0.55;
  }
  .identity-gateway__frame--resolved:has(.identity-gateway__resolved-actions > .identity-gateway__frame-cta:nth-child(2):hover) .identity-gateway__resolved-diagram-label--institution {
    color: #ffffff;
  }
  .identity-gateway__frame--resolved:has(.identity-gateway__resolved-actions > .identity-gateway__frame-cta:nth-child(2):hover) .identity-gateway__resolved-diagram-label--student,
  .identity-gateway__frame--resolved:has(.identity-gateway__resolved-actions > .identity-gateway__frame-cta:nth-child(2):hover) .identity-gateway__resolved-diagram-label--recruiter {
    opacity: 0.55;
  }
  .identity-gateway__frame--resolved:has(.identity-gateway__resolved-actions > .identity-gateway__frame-cta:nth-child(3):hover) .identity-gateway__resolved-diagram-label--recruiter {
    color: #ffffff;
  }
  .identity-gateway__frame--resolved:has(.identity-gateway__resolved-actions > .identity-gateway__frame-cta:nth-child(3):hover) .identity-gateway__resolved-diagram-label--student,
  .identity-gateway__frame--resolved:has(.identity-gateway__resolved-actions > .identity-gateway__frame-cta:nth-child(3):hover) .identity-gateway__resolved-diagram-label--institution {
    opacity: 0.55;
  }
}
/* Middle line: One ecosystem. Three ways to enter. */
.identity-gateway__resolved-headline {
  margin: 0;
  padding-top: clamp(28px, 4.5vw, 44px);
  padding-bottom: 0;
  font-size: clamp(1.25rem, 2.25vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #ffffff;
  max-width: 420px;
  margin-inline: auto;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.04);
}
/* Thin signal line between headline and CTAs */
.identity-gateway__resolved-headline::before {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin: 0 auto clamp(28px, 4vw, 36px);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 45, 45, 0.3) 25%,
    rgba(255, 45, 45, 0.4) 50%,
    rgba(255, 45, 45, 0.3) 75%,
    transparent
  );
}
/* Bottom row: three elegant linked destinations — spacing, thin signal line, hover accents */
.identity-gateway__resolved-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 clamp(36px, 4.5vw, 56px);
  row-gap: clamp(18px, 2.5vw, 24px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: none;
  position: relative;
}
.identity-gateway__resolved-actions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 320px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 15%,
    rgba(255, 45, 45, 0.12) 50%,
    rgba(255, 255, 255, 0.06) 85%,
    transparent 100%
  );
}
.identity-gateway__resolved-actions .identity-gateway__frame-cta {
  font-size: clamp(0.9375rem, 1.05vw, 1.0625rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: opacity 0.32s ease-out, transform 0.32s cubic-bezier(0.33, 1, 0.68, 1), color 0.26s ease-out, border-color 0.26s ease-out;
}
.identity-gateway__resolved-actions .identity-gateway__frame-cta--revealed {
  color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(255, 45, 45, 0.3);
}
/* Elegant link hover: subtle red accent, brighten */
@media (hover: hover) {
  .identity-gateway__resolved-actions .identity-gateway__frame-cta--revealed:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 45, 45, 0.5);
  }
  .identity-gateway__resolved-actions .identity-gateway__frame-cta--revealed:hover::after {
    background: rgba(255, 45, 45, 0.4);
    width: 100%;
  }
  .identity-gateway__resolved-actions .identity-gateway__frame-cta:not(.identity-gateway__frame-cta--revealed):hover {
    color: rgba(255, 255, 255, 0.75);
    border-bottom-color: var(--text-on-dark-soft);
  }
  .identity-gateway__resolved-actions:has(.identity-gateway__frame-cta:hover) .identity-gateway__frame-cta:not(:hover) {
    opacity: 0.65;
  }
}

/* ========== Students page hero (manifesto, minimal) ========== */

/* ========== Students ST1 Hero (.st-hero) ========== */
body.page-students .st-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vh, 100px);
  overflow: hidden;
  background: var(--black);
  box-sizing: border-box;
}

body.page-students .st-hero-left {
  padding-left: var(--inset);
  display: flex;
  flex-direction: column;
  width: 48%;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

body.page-students .st-hero-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  z-index: 5;
}

body.page-students .st-convergence-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Eyebrow */
body.page-students .st-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Pulsing dot — same as recruiters / home hero (replaces red rule line) */
body.page-students .eyebrow-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: blink 1.8s ease infinite;
}

/* Headline */
body.page-students .st-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: var(--hero-headline-size);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

body.page-students .st-headline-line--1 {
  /* Match /institutions/ "PROOF" treatment (secondary CTA text color) */
  color: rgba(255, 255, 255, 0.58);
}

body.page-students .st-headline-line--2 {
  color: var(--red);
  text-shadow: 0 0 60px rgba(255, 45, 45, 0.45), 0 0 120px rgba(255, 45, 45, 0.18);
}

body.page-students .st-headline-gt {
  color: var(--red);
  text-shadow: 0 0 60px rgba(255, 45, 45, 0.45), 0 0 120px rgba(255, 45, 45, 0.18);
}

/* Non-hero section headings: match hero typography */
body.page-students .proof-headline,
body.page-students .underdogs-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

/* Sub-copy */
body.page-students .st-hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.5);
  max-width: 360px;
  margin-bottom: 36px;
}

/* CTAs wrapper */
body.page-students .st-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* CTA primary */
body.page-students .st-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: fit-content;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

body.page-students .st-cta-primary .st-cta-arrow {
  transition: transform 0.2s;
  display: inline-block;
}

body.page-students .st-cta-primary:hover {
  background: #ff1a1a;
  box-shadow: 0 0 40px rgba(255, 45, 45, 0.35);
  transform: translateY(-1px);
}

body.page-students .st-cta-primary:hover .st-cta-arrow {
  transform: translateX(4px);
}

/* CTA secondary (text only, no button weight) */
body.page-students .st-cta-secondary {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.04em;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}

body.page-students .st-cta-secondary:hover {
  color: rgba(255, 255, 255, 0.55);
}

/* Early access tag */
body.page-students .st-early-tag {
  margin-top: 28px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0;
}

body.page-students .st-early-tag-dot {
  color: var(--red);
  opacity: 0.65;
  margin-right: 6px;
}

body.page-students .st-early-tag-text {
  color: rgba(255, 255, 255, 0.22);
}

/* Scroll hint */
body.page-students .st-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

body.page-students .st-scroll-hint-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
}

body.page-students .st-scroll-hint-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 45, 45, 0.55), transparent);
  animation: st-scrollPulse 2s ease-in-out infinite;
}

/* Alias: if you later use .st-scroll-line in markup */
body.page-students .st-scroll-line {
  animation: st-scrollPulse 2s ease-in-out infinite;
}

@keyframes st-scrollPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}

/* ST1 Hero entrance (page load) */
body.page-students .st-eyebrow,
body.page-students .st-hl-white,
body.page-students .st-hl-red,
body.page-students .st-hero-sub,
body.page-students .st-hero-ctas,
body.page-students .st-early-tag,
body.page-students .st-scroll-hint {
  opacity: 0;
}

body.page-students .st-eyebrow {
  transform: translateY(10px);
  animation: st-fadeUp 0.6s ease 0.2s forwards;
}

body.page-students .st-hl-white {
  transform: translateY(20px);
  animation: st-fadeUp 0.7s ease 0.35s forwards;
}

body.page-students .st-hl-red {
  transform: translateY(20px);
  animation: st-fadeUp 0.7s ease 0.5s forwards;
}

body.page-students .st-hero-sub {
  transform: translateY(12px);
  animation: st-fadeUp 0.7s ease 0.65s forwards;
}

body.page-students .st-hero-ctas {
  transform: translateY(12px);
  animation: st-fadeUp 0.7s ease 0.8s forwards;
}

body.page-students .st-early-tag {
  transform: translateY(0);
  animation: st-fadeIn 0.6s ease 0.95s forwards;
}

body.page-students .st-scroll-hint {
  /* keep translateX(-50%) from base rule */
  animation: st-fadeIn 0.8s ease 1.4s forwards;
}

@media (max-width: 768px) {
  body.page-students .st-scroll-hint {
    left: auto;
    right: 20px;
    transform: none;
    align-items: flex-end;
  }
}

@keyframes st-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes st-fadeIn {
  to {
    opacity: 1;
  }
}

/* ========== Students ST2 — The Mirror (.st-s2) ========== */
body.page-students .st-s2 {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  box-sizing: border-box;
}

body.page-students .st-s2-left {
  position: relative;
  z-index: 10;
  padding-left: var(--inset);
  width: 46%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

body.page-students .st-s2-mirror .st-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.page-students .st-s2-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 28px;
}

body.page-students .st-s2-hl-ghost { color: rgba(255, 255, 255, 0.13); }
body.page-students .st-s2-hl-white { color: var(--white); }
body.page-students .st-s2-hl-red {
  color: var(--red);
  text-shadow: 0 0 60px rgba(255, 45, 45, 0.45), 0 0 120px rgba(255, 45, 45, 0.18);
}

body.page-students .st-s2-sub {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.45);
  max-width: 360px;
}

body.page-students .st-s2-right {
  position: absolute;
  right: var(--inset);
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  z-index: 10;
}

body.page-students .st-stage-card {
  width: 350px;
  min-height: 480px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  position: relative;
  transition: border-color 0.8s ease, box-shadow 0.8s ease;
}

body.page-students .st-stage-card.glowing {
  border-color: rgba(255, 45, 45, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 45, 45, 0.08), 0 0 60px rgba(255, 45, 45, 0.18), 0 24px 80px rgba(0, 0, 0, 0.7);
}

/* Panels */
body.page-students .st-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

body.page-students .st-panel.active {
  opacity: 1;
  pointer-events: auto;
  position: absolute;
}

/* PANEL A */
body.page-students .st-panel-a {
  padding: 24px;
}

body.page-students .st-card-heading {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

body.page-students .st-card-subheading {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

body.page-students .st-student-row {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

body.page-students .st-student-row.in {
  opacity: 1;
  transform: translateY(0);
}

body.page-students .st-student-row.out {
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

body.page-students .st-s-name {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
}

body.page-students .st-s-bullet {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  padding-left: 16px;
  position: relative;
}

body.page-students .st-s-bullet::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
}

/* PANEL B */
body.page-students .st-panel-b {
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  gap: 0;
  text-align: center;
}

body.page-students .st-q-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 24px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.page-students .st-q-label.in { opacity: 1; }

body.page-students .st-q-main {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

body.page-students .st-q-main.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.page-students .st-q-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.page-students .st-q-sub.in { opacity: 1; }

body.page-students .st-q-divider {
  width: 28px;
  height: 1px;
  background: rgba(255, 45, 45, 0.5);
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.page-students .st-q-divider.in { opacity: 1; }

/* PANEL C */
body.page-students .st-panel-c {
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  gap: 14px;
  text-align: center;
}

body.page-students .st-bridge-accent {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 45, 45, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.page-students .st-bridge-accent.in { opacity: 1; }

body.page-students .st-bridge-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

body.page-students .st-bridge-text.in {
  opacity: 1;
  transform: translateY(0);
}

body.page-students .st-bridge-text em {
  font-style: normal;
  color: var(--white);
  font-weight: 800;
}

/* PANEL D */
body.page-students .st-panel-d {
  flex-direction: column;
}

body.page-students .st-d-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

body.page-students .st-d-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

body.page-students .st-d-meta {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 3px;
}

body.page-students .st-d-badge {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(255, 45, 45, 0.1);
  border: 1px solid rgba(255, 45, 45, 0.25);
  border-radius: 4px;
  padding: 5px 9px;
  white-space: nowrap;
}

body.page-students .st-proof-items-wrap {
  padding: 0 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.page-students .st-proof-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

body.page-students .st-proof-item:last-child { border-bottom: none; }

body.page-students .st-proof-item.in {
  opacity: 1;
  transform: translateY(0);
}

body.page-students .st-proof-item.out {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

body.page-students .st-pi-type {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 5px;
}

body.page-students .st-pi-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

body.page-students .st-pi-detail {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
  line-height: 1.4;
}

body.page-students .st-stamps-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

body.page-students .st-verified-stamp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 3px;
  padding: 3px 8px;
  opacity: 0;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.4s ease;
}

body.page-students .st-verified-stamp.in { opacity: 1; }

body.page-students .st-verified-stamp.in:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.35);
}

body.page-students .st-assessed-stamp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff2d2d;
  background: rgba(255, 45, 45, 0.08);
  border: 1px solid rgba(255, 45, 45, 0.25);
  border-radius: 3px;
  padding: 3px 8px;
  opacity: 0;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.4s ease;
}

body.page-students .st-assessed-stamp.in { opacity: 1; }

body.page-students .st-assessed-stamp.in:hover {
  background: rgba(255, 45, 45, 0.1);
  border-color: rgba(255, 45, 45, 0.4);
}

body.page-students .st-v-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: st-vPulse 2s ease-in-out infinite;
}

body.page-students .st-a-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff2d2d;
  flex-shrink: 0;
  animation: st-vPulse 2s ease-in-out infinite;
}

@keyframes st-vPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* PROOFSCORE OVERLAY */
body.page-students .st-ps-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
  z-index: 10;
  padding: 24px;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

body.page-students .st-ps-overlay.in {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

body.page-students .st-ps-eyebrow {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 45, 45, 0.7);
  margin-bottom: 24px;
}

body.page-students .st-ps-number-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex-shrink: 0;
}

body.page-students .st-ps-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 45, 45, 0.35);
  box-shadow: 0 0 50px rgba(255, 45, 45, 0.18) inset, 0 0 30px rgba(255, 45, 45, 0.07);
  animation: st-ringPulse 2.5s ease-in-out infinite;
}

@keyframes st-ringPulse {
  0%, 100% { box-shadow: 0 0 50px rgba(255, 45, 45, 0.18) inset, 0 0 30px rgba(255, 45, 45, 0.07); }
  50% { box-shadow: 0 0 90px rgba(255, 45, 45, 0.3) inset, 0 0 44px rgba(255, 45, 45, 0.12); }
}

body.page-students .st-ps-num {
  font-family: var(--font-sans);
  font-size: 86px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1;
  position: relative;
  z-index: 1;
}

body.page-students .st-ps-denom {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 16px;
}

body.page-students .st-ps-caption {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-bottom: 28px;
}

body.page-students .st-ps-closing {
  padding: 12px 20px;
  background: rgba(255, 45, 45, 0.08);
  border: 1px solid rgba(255, 45, 45, 0.15);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.5s ease, background 0.2s ease, color 0.2s ease;
  max-width: 260px;
}

body.page-students .st-ps-closing.in { opacity: 1; }

body.page-students .st-ps-closing.in:hover {
  background: rgba(255, 45, 45, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

body.page-students .st-ps-closing em {
  font-style: normal;
  color: var(--white);
}

/* ========== Students ST2 entrance (IntersectionObserver) ========== */
body.page-students #st-s2-mirror .st-eyebrow,
body.page-students #st-s2-mirror .st-hl-ghost,
body.page-students #st-s2-mirror .st-hl-white,
body.page-students #st-s2-mirror .st-hl-red,
body.page-students #st-s2-mirror .st-s2-sub,
body.page-students #st-s2-mirror .st-stage-card {
  opacity: 0;
  transform: translateY(0);
  animation: none;
  animation-fill-mode: forwards;
}

body.page-students #st-s2-mirror .st-eyebrow {
  transform: translateY(10px);
}

body.page-students #st-s2-mirror .st-hl-ghost,
body.page-students #st-s2-mirror .st-hl-white,
body.page-students #st-s2-mirror .st-hl-red {
  transform: translateY(22px);
}

body.page-students #st-s2-mirror .st-s2-sub {
  transform: translateY(12px);
}

body.page-students #st-s2-mirror .st-stage-card {
  transform: translateY(16px);
}

body.page-students #st-s2-mirror.st2-visible .st-eyebrow {
  animation: st2-fadeUp 0.6s ease 0s forwards;
  animation-fill-mode: forwards;
}

body.page-students #st-s2-mirror.st2-visible .st-hl-ghost {
  animation: st2-fadeUp 0.7s ease 0.15s forwards;
  animation-fill-mode: forwards;
}

body.page-students #st-s2-mirror.st2-visible .st-hl-white {
  animation: st2-fadeUp 0.7s ease 0.3s forwards;
  animation-fill-mode: forwards;
}

body.page-students #st-s2-mirror.st2-visible .st-hl-red {
  animation: st2-fadeUp 0.7s ease 0.45s forwards;
  animation-fill-mode: forwards;
}

body.page-students #st-s2-mirror.st2-visible .st-s2-sub {
  animation: st2-fadeUp 0.7s ease 0.6s forwards;
  animation-fill-mode: forwards;
}

body.page-students #st-s2-mirror.st2-visible .st-stage-card {
  animation: st2-fadeUp 0.7s ease 0.75s forwards;
  animation-fill-mode: forwards;
}

@keyframes st2-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes st2-fadeIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  body.page-students .st-s2 {
    height: auto;
    min-height: unset;
    flex-direction: column;
    align-items: stretch;
    padding: 42px 0 52px;
  }

  body.page-students .st-s2-left {
    width: 100%;
    padding: 0 var(--inset);
  }

  body.page-students .st-s2-right {
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
    right: auto;
    top: auto;
    margin-top: 24px;
    padding: 0 var(--inset);
    display: flex;
    justify-content: flex-start;
  }

  body.page-students .st-stage-card {
    width: min(420px, 100%);
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  body.page-students .st-s2 {
    padding: 34px 0 44px;
  }

  body.page-students .st-s2-headline {
    font-size: clamp(2.2rem, 13vw, 3.7rem);
    line-height: 0.94;
    margin-bottom: 20px;
  }

  body.page-students .st-s2-sub {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.62;
  }

  body.page-students .st-s2-right {
    margin-top: 18px;
  }

  body.page-students .st-stage-card {
    width: 100%;
    min-height: 380px;
    border-radius: 12px;
  }
}

/* ========== Students ST3 — The Evidence (.st-s3) ========== */
body.page-students .st-s3 {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--black);
  box-sizing: border-box;
}

/* Ambient canvas */
body.page-students #st-s3-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Ghost watermark */
body.page-students .st-s3-ghost-wm {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(280px, 38vw, 520px);
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.016);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
  transition: color 0.5s ease, text-shadow 0.5s ease;
}

body.page-students .st-s3-ghost-wm.flash {
  color: rgba(255, 45, 45, 0.065);
  text-shadow: 0 0 140px rgba(255, 45, 45, 0.1);
}

/* Centre line */
body.page-students .st-s3-centre-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 45, 45, 0.1) 20%,
    rgba(255, 45, 45, 0.2) 50%,
    rgba(255, 45, 45, 0.1) 80%,
    transparent 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
}

body.page-students .st-s3-centre-line.in {
  opacity: 1;
}

/* Left column */
body.page-students .st-s3-left {
  position: relative;
  z-index: 2;
  padding-left: var(--inset);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

body.page-students #st-s3-evidence .st-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: clamp(20px, 3vh, 32px);
  display: flex;
  align-items: center;
  gap: 8px;
}

body.page-students .st-s3-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(3.8rem, 7vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: clamp(36px, 5vh, 56px);
}

body.page-students .st-s3-hl-ghost { color: rgba(255, 255, 255, 0.13); }
body.page-students .st-s3-hl-white { color: var(--white); }
body.page-students .st-s3-hl-red {
  color: var(--red);
  text-shadow: 0 0 60px rgba(255, 45, 45, 0.45), 0 0 120px rgba(255, 45, 45, 0.18);
}

/* Student pill */
body.page-students .st-student-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  width: fit-content;
  position: relative;
  margin-bottom: clamp(28px, 4.5vh, 52px);
  transition: border-color 0.6s ease, background 0.6s ease, box-shadow 0.6s ease;
  box-sizing: border-box;
}

body.page-students .st-student-pill.verified {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.04);
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.07);
}

body.page-students .st-pill-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
  transition: border-color 0.6s ease, box-shadow 0.6s ease, color 0.4s ease;
}

body.page-students .st-student-pill.verified .st-pill-avatar {
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
  color: var(--white);
}

body.page-students .st-pill-name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

body.page-students .st-pill-meta {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 3px;
}

body.page-students .st-pill-tag {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  transition: all 0.5s ease;
  flex-shrink: 0;
  margin-left: 4px;
}

body.page-students .st-pill-tag.before {
  color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

body.page-students .st-pill-tag.after {
  color: var(--green);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.28);
}

body.page-students .st-pill-score {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 45, 45, 0.45);
  border-radius: 6px;
  padding: 4px 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 20px rgba(255, 45, 45, 0.25);
}

body.page-students .st-student-pill.verified .st-pill-score {
  opacity: 1;
  transform: scale(1);
}

/* Closer block */
body.page-students .st-closer-block {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.page-students .st-closer-block.in {
  opacity: 1;
  transform: translateY(0);
}

body.page-students .st-closer-main {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: clamp(14px, 2vh, 22px);
}

body.page-students .st-closer-main em {
  font-style: normal;
  color: var(--white);
  font-weight: 700;
}

body.page-students .st-tw-line {
  font-family: var(--font-sans);
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 600;
  color: rgba(255, 45, 45, 0.8);
  letter-spacing: 0.02em;
  line-height: 1.5;
  min-height: 22px;
  margin-bottom: clamp(16px, 2.5vh, 28px);
}

body.page-students .st-live-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

body.page-students .st-live-ticker.in {
  opacity: 1;
}

body.page-students .st-ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: st3-tickPulse 1.5s ease-in-out infinite;
}

@keyframes st3-tickPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.65); }
}

body.page-students .st-ticker-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.02em;
}

body.page-students .st-ticker-text strong {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 700;
}

/* Right column */
body.page-students .st-s3-right {
  position: relative;
  z-index: 2;
  padding-right: var(--inset);
  padding-left: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

body.page-students .st-num-block {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 4vh, 44px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  opacity: 1;
}

body.page-students .st-num-block:last-child {
  border-bottom: none;
}

body.page-students .st-num-val-wrap {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
  position: relative;
}

body.page-students .st-num-val {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(68px, 10vw, 112px);
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--white);
  opacity: 1;
  transform: none;
  transition: opacity 0.38s cubic-bezier(0.16, 1, 0.3, 1), transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.7s ease;
}

body.page-students .st-num-val.slam {
  opacity: 1;
  transform: scale(1) translateY(0);
}

body.page-students .st-num-val.glowing {
  text-shadow: 0 0 50px rgba(255, 45, 45, 0.5), 0 0 100px rgba(255, 45, 45, 0.2);
}

body.page-students .st-num-unit {
  font-family: var(--font-sans);
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-bottom: 8px;
  opacity: 1;
  transition: opacity 0.4s ease 0.25s;
}

body.page-students .st-num-val.slam ~ .st-num-unit { opacity: 1; }

body.page-students .st-num-context {
  font-family: var(--font-sans);
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.6;
  letter-spacing: 0.01em;
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

body.page-students .st-num-context.in {
  opacity: 1;
  transform: translateY(0);
}

/* When Phase-5 JS is added, toggle .st3-anim on the section
   to restore cinematic "hidden then slam" initial states. */
body.page-students .st-s3.st3-anim .st-num-block { opacity: 0; }
body.page-students .st-s3.st3-anim .st-num-val {
  opacity: 0;
  transform: scale(0.78) translateY(12px);
}
body.page-students .st-s3.st3-anim .st-num-unit { opacity: 0; }
body.page-students .st-s3.st3-anim .st-num-context {
  opacity: 0;
  transform: translateY(8px);
}

body.page-students .st-s3.st3-anim .st-closer-block {
  opacity: 0;
  transform: translateY(16px);
}

body.page-students .st-s3.st3-anim .st-live-ticker {
  opacity: 0;
}

body.page-students .st-num-context strong {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

body.page-students .st-shockwave {
  position: absolute;
  left: 0;
  top: 45%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 45, 45, 0.55);
  pointer-events: none;
  opacity: 0;
}

body.page-students .st-shockwave.fire {
  animation: st3-shockExpand 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes st3-shockExpand {
  0% {
    width: 0;
    height: 0;
    opacity: 0.7;
    margin-left: 0;
    margin-top: 0;
  }
  100% {
    width: 160px;
    height: 160px;
    opacity: 0;
    margin-left: -80px;
    margin-top: -80px;
  }
}

@keyframes st3-fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  body.page-students .st-s3 {
    height: auto;
    min-height: unset;
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 40px 0 48px;
  }

  body.page-students .st-s3-ghost-wm {
    font-size: clamp(140px, 34vw, 260px);
    right: auto;
    left: 50%;
    top: 44%;
  }

  body.page-students .st-s3-centre-line {
    display: none;
  }

  body.page-students .st-s3-left {
    padding: 0 var(--inset);
  }

  body.page-students .st-student-pill {
    width: min(520px, 100%);
  }

  body.page-students .st-s3-right {
    padding: 12px var(--inset) 0;
  }

  body.page-students .st-num-val {
    font-size: clamp(56px, 12vw, 88px);
  }
}

@media (max-width: 767px) {
  body.page-students .st-s3 {
    padding: 32px 0 40px;
  }

  body.page-students .st-s3-headline {
    font-size: clamp(2.5rem, 13vw, 4rem);
    line-height: 0.92;
    margin-bottom: 24px;
  }

  body.page-students .st-s3-left {
    padding: 0 var(--inset);
  }

  body.page-students .st-student-pill {
    width: 100%;
    padding: 14px 16px;
    gap: 10px;
  }

  body.page-students .st-pill-tag {
    font-size: 7px;
    padding: 4px 8px;
  }

  body.page-students .st-pill-score {
    top: -10px;
    right: -8px;
    font-size: 11px;
    padding: 4px 8px;
  }

  body.page-students .st-num-block {
    padding: 22px 0;
  }

  body.page-students .st-num-val-wrap {
    gap: 10px;
  }

  body.page-students .st-num-val {
    font-size: clamp(48px, 16vw, 74px);
  }

  body.page-students .st-num-unit {
    font-size: 12px;
  }

  body.page-students .st-num-context {
    font-size: 13px;
    line-height: 1.55;
  }
}

/* ========== Students ST4 — The Objection Killer (.st-s4) ========== */
body.page-students .st-s4 {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--inset);
  background: var(--black);
  box-sizing: border-box;
}

body.page-students .st-s4-ghost {
  position: absolute;
  right: -4vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(180px, 28vw, 380px);
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.022);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

body.page-students .st-s4-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(36px, 5.5vh, 64px);
  position: relative;
  z-index: 2;
  gap: 28px;
}

body.page-students .st-s4-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ST4 entrance animations (IntersectionObserver adds .st4-visible) */
body.page-students .st-s4 .st-s4-eyebrow,
body.page-students .st-s4 .st-s4-hl-ghost,
body.page-students .st-s4 .st-s4-hl-white,
body.page-students .st-s4 .st-s4-hl-red,
body.page-students .st-s4 .st-s4-sub,
body.page-students .st-s4 .st-s4-timeline-wrap,
body.page-students .st-s4 .st-s4-closing {
  opacity: 0;
  transform: translateY(16px);
}

body.page-students .st-s4 .st-s4-eyebrow { transform: translateY(10px); }
body.page-students .st-s4 .st-s4-hl-ghost,
body.page-students .st-s4 .st-s4-hl-white,
body.page-students .st-s4 .st-s4-hl-red { transform: translateY(22px); }
body.page-students .st-s4 .st-s4-sub { transform: translateY(10px); }
body.page-students .st-s4 .st-s4-timeline-wrap { transform: translateY(16px); }
body.page-students .st-s4 .st-s4-closing { transform: translateY(10px); }

body.page-students .st-s4.st4-visible .st-s4-eyebrow {
  animation: st4-fadeUp 0.6s ease 0s forwards;
}

body.page-students .st-s4.st4-visible .st-s4-hl-ghost {
  animation: st4-fadeUp 0.7s ease 0.15s forwards;
}

body.page-students .st-s4.st4-visible .st-s4-hl-white {
  animation: st4-fadeUp 0.7s ease 0.3s forwards;
}

body.page-students .st-s4.st4-visible .st-s4-hl-red {
  animation: st4-fadeUp 0.7s ease 0.45s forwards;
}

body.page-students .st-s4.st4-visible .st-s4-sub {
  animation: st4-fadeUp 0.7s ease 0.6s forwards;
}

body.page-students .st-s4.st4-visible .st-s4-timeline-wrap {
  animation: st4-fadeUp 0.8s ease 0.75s forwards;
}

body.page-students .st-s4.st4-visible .st-s4-closing {
  animation: st4-fadeUp 0.7s ease 2.4s forwards;
}

body.page-students .st-s4-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.page-students .st-s4-hl-ghost { color: rgba(255, 255, 255, 0.18); }
body.page-students .st-s4-hl-white { color: var(--white); }
body.page-students .st-s4-hl-red {
  color: var(--red);
  text-shadow: 0 0 60px rgba(255, 45, 45, 0.45), 0 0 120px rgba(255, 45, 45, 0.18);
}

body.page-students .st-s4-sub {
  max-width: 280px;
  text-align: right;
  font-family: var(--font-sans);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

body.page-students .st-s4-sub strong {
  color: var(--white);
  font-weight: 700;
}

/* Timeline wrapper */
body.page-students .st-s4-timeline-wrap {
  position: relative;
  z-index: 2;
}

body.page-students .st-s4-students-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 24px;
}

body.page-students .st-student-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 22%;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Spotlight hover */
body.page-students .st-s4-timeline-wrap:hover .st-student-col {
  opacity: 0.2;
  filter: brightness(0.35) saturate(0.4);
}

body.page-students .st-s4-timeline-wrap:hover .st-student-col:hover {
  opacity: 1;
  filter: none;
}

/* Proof stack */
body.page-students .st-proof-stack {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
  min-height: 140px;
  justify-content: flex-end;
  position: relative;
}

body.page-students .st-proof-block {
  border-radius: 5px;
  opacity: 0;
  transform: translateY(10px) scaleX(0.6);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.page-students .st-proof-block.in {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

body.page-students .st-proof-block.pb-0 {
  width: 40px;
  height: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

body.page-students .st-proof-block.pb-1 {
  width: 48px;
  height: 14px;
  background: rgba(255, 45, 45, 0.12);
  border: 1px solid rgba(255, 45, 45, 0.22);
}

body.page-students .st-proof-block.pb-2 {
  width: 54px;
  height: 16px;
  background: rgba(255, 45, 45, 0.22);
  border: 1px solid rgba(255, 45, 45, 0.38);
}

body.page-students .st-proof-block.pb-3 {
  width: 62px;
  height: 18px;
  background: rgba(255, 45, 45, 0.35);
  border: 1px solid rgba(255, 45, 45, 0.55);
  box-shadow: 0 0 10px rgba(255, 45, 45, 0.18);
}

body.page-students .st-proof-block.pb-4 {
  width: 70px;
  height: 20px;
  background: rgba(255, 45, 45, 0.5);
  border: 1px solid rgba(255, 45, 45, 0.7);
  box-shadow: 0 0 18px rgba(255, 45, 45, 0.28);
}

/* Empty stack */
body.page-students .st-stack-empty {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
  gap: 6px;
}

body.page-students .st-empty-ring {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-students .st-empty-plus {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
}

body.page-students .st-empty-text {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

/* ProofScore badge */
body.page-students .st-ps-badge {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%) scale(0.5);
  background: #0a0a0a;
  border: 1px solid rgba(255, 45, 45, 0.55);
  border-radius: 6px;
  padding: 4px 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 900;
  color: var(--white);
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(255, 45, 45, 0.25);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}

body.page-students .st-ps-badge.in {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Avatar */
body.page-students .st-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease, transform 0.3s ease;
}

body.page-students .st-student-col:hover .st-avatar {
  border-color: var(--red);
  box-shadow: 0 0 28px rgba(255, 45, 45, 0.35);
  background: rgba(255, 45, 45, 0.08);
  color: var(--white);
  transform: scale(1.08);
}

/* Timeline dot */
body.page-students .st-t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.1);
  margin-top: 18px;
  flex-shrink: 0;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}

body.page-students .st-student-col:hover .st-t-dot {
  background: var(--red);
  border-color: rgba(255, 45, 45, 0.5);
  box-shadow: 0 0 14px rgba(255, 45, 45, 0.5);
  transform: scale(1.3);
}

/* Sem label / name / status */
body.page-students .st-sem-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 10px;
  transition: color 0.3s ease;
}

body.page-students .st-student-col:hover .st-sem-label {
  color: rgba(255, 45, 45, 0.8);
}

body.page-students .st-s4 .st-s-name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

body.page-students .st-student-col:hover .st-s4 .st-s-name {
  color: var(--white);
}

body.page-students .st-s-status {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 4px;
  text-align: center;
  line-height: 1.4;
  transition: color 0.3s ease;
}

body.page-students .st-student-col:hover .st-s-status {
  color: rgba(255, 255, 255, 0.65);
}

/* Timeline track */
body.page-students .st-timeline-track {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

body.page-students .st-timeline-track-inner {
  position: relative;
  height: 100%;
}

body.page-students .st-timeline-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(to right, var(--red), rgba(255, 45, 45, 0.5));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255, 45, 45, 0.3);
  transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

body.page-students .st-timeline-fill.filled {
  width: 100%;
  animation: st4-trackPulse 2.5s ease-in-out infinite 2s;
}

@keyframes st4-trackPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(255, 45, 45, 0.3); }
  50% { box-shadow: 0 0 24px rgba(255, 45, 45, 0.55); }
}

/* Tooltip */
body.page-students .st-tooltip {
  position: absolute;
  bottom: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #111111;
  border: 1px solid rgba(255, 45, 45, 0.22);
  border-radius: 12px;
  padding: 16px 18px;
  width: 230px;
  opacity: 0;
  pointer-events: none;
  z-index: 30;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7), 0 0 28px rgba(255, 45, 45, 0.06);
}

body.page-students .st-student-col:hover .st-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

body.page-students .st-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: rgba(255, 45, 45, 0.22);
}

body.page-students .st-tt-sem {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 45, 45, 0.7);
  margin-bottom: 8px;
}

body.page-students .st-tt-text {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

body.page-students .st-tt-text strong {
  color: var(--white);
  font-weight: 700;
}

/* Closing line */
body.page-students .st-s4-closing {
  margin-top: clamp(24px, 4vh, 48px);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

body.page-students .st-closing-text {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
  line-height: 1.55;
}

body.page-students .st-closing-text em {
  font-style: normal;
  color: var(--white);
  font-weight: 700;
}

body.page-students .st-closing-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  transition: gap 0.2s ease;
}

body.page-students .st-closing-cta .st-cta-arr {
  font-size: 16px;
  transition: transform 0.2s ease;
}

body.page-students .st-closing-cta:hover {
  gap: 16px;
}

body.page-students .st-closing-cta:hover .st-cta-arr {
  transform: translateX(4px);
}

/* Particle */
body.page-students .st-particle {
  position: fixed;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  pointer-events: none;
  animation: st4-particleFly 0.5s ease forwards;
}

@keyframes st4-particleFly {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0); }
}

@keyframes st4-fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  body.page-students .st-s4 {
    height: auto;
    min-height: unset;
    justify-content: flex-start;
    padding: 36px var(--inset) 44px;
    overflow: visible;
  }

  body.page-students .st-s4-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 26px;
  }

  body.page-students .st-s4-sub {
    max-width: 100%;
    text-align: left;
  }

  body.page-students .st-s4-students-row {
    gap: 14px;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 18px;
    scrollbar-width: none;
  }

  body.page-students .st-s4-students-row::-webkit-scrollbar {
    display: none;
  }

  body.page-students .st-student-col {
    width: 220px;
    min-width: 220px;
  }

  body.page-students .st-s4-closing {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
  }
}

@media (max-width: 767px) {
  body.page-students .st-s4 {
    padding: 30px var(--inset) 36px;
  }

  body.page-students .st-s4-headline {
    font-size: clamp(2.2rem, 12vw, 3.8rem);
    line-height: 0.94;
  }

  body.page-students .st-s4-sub {
    font-size: 13px;
    line-height: 1.6;
  }

  body.page-students .st-student-col {
    width: 190px;
    min-width: 190px;
  }

  body.page-students .st-tooltip {
    width: 190px;
    padding: 12px 12px;
  }

  body.page-students .st-closing-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* ========== Students ST7 — Final CTA (.st-s7) ========== */
body.page-students .st-s7 {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 var(--inset);
  background: var(--black);
  box-sizing: border-box;
}

body.page-students .st-s7-ghost-proof {
  position: absolute;
  left: -2vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(200px, 32vw, 480px);
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.018);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  line-height: 1;
}

body.page-students .st-s7-red-glow {
  position: absolute;
  bottom: -20vh;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vh;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at center, rgba(255, 45, 45, 0.08) 0%, rgba(255, 45, 45, 0.03) 40%, transparent 70%);
  animation: st7-glowPulse 4s ease-in-out infinite;
}

@keyframes st7-glowPulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

body.page-students .st-s7-waitlist-count {
  position: absolute;
  right: var(--inset);
  bottom: clamp(48px, 8vh, 80px);
  z-index: 2;
  text-align: right;
  opacity: 0;
}

body.page-students .st-s7-wc-number {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: -0.05em;
  line-height: 1;
  display: block;
}

body.page-students .st-s7-wc-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 4px;
}

body.page-students .st-s7-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 680px;
}

body.page-students .st-s7-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: clamp(20px, 3vh, 32px);
  display: flex;
  align-items: center;
  gap: 8px;
}

body.page-students .st-s7-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(3.5rem, 7.5vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: clamp(24px, 3.5vh, 40px);
}

body.page-students .st-s7-hl-ghost {
  color: rgba(255, 255, 255, 0.13);
  white-space: nowrap;
}

body.page-students .st-s7-headline-line2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0;
}

body.page-students .st-s7-hl-nowrap-group {
  white-space: nowrap;
}

body.page-students .st-s7-hl-white { color: var(--white); }
body.page-students .st-s7-hl-red {
  color: var(--red);
  text-shadow: 0 0 80px rgba(255, 45, 45, 0.5), 0 0 160px rgba(255, 45, 45, 0.2);
}

body.page-students .st-s7-framing {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: clamp(28px, 4vh, 44px);
  max-width: 520px;
}

body.page-students .st-s7-framing em {
  font-style: normal;
  color: var(--white);
  font-weight: 700;
}

body.page-students .st-s7-paths {
  display: flex;
  gap: 16px;
  align-items: stretch;
  margin-bottom: clamp(20px, 3vh, 32px);
}

body.page-students .st-path-college {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  flex: 1;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

body.page-students .st-path-college:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

body.page-students .st-path-waitlist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  background: rgba(255, 45, 45, 0.07);
  border: 1px solid rgba(255, 45, 45, 0.3);
  border-radius: 12px;
  flex: 1;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

body.page-students .st-path-waitlist::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255, 45, 45, 0.05), transparent);
  top: -60px;
  animation: st7-pathSweep 3s ease-in-out infinite 2s;
  pointer-events: none;
}

body.page-students .st-path-waitlist:hover {
  border-color: rgba(255, 45, 45, 0.55);
  background: rgba(255, 45, 45, 0.1);
  box-shadow: 0 0 40px rgba(255, 45, 45, 0.15);
}

@keyframes st7-pathSweep {
  0% { top: -60px; }
  100% { top: calc(100% + 60px); }
}

body.page-students .st-path-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
}

body.page-students .st-path-waitlist .st-path-label {
  color: rgba(255, 45, 45, 0.6);
}

body.page-students .st-path-title {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}

body.page-students .st-path-desc {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
  flex: 1;
}

body.page-students .st-path-waitlist .st-path-desc {
  color: rgba(255, 255, 255, 0.55);
}

body.page-students .st-path-cta-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  transition: color 0.2s ease, gap 0.2s ease;
  text-decoration: none;
}

body.page-students .st-path-college .st-path-cta-text {
  color: rgba(255, 255, 255, 0.5);
}

body.page-students .st-path-college:hover .st-path-cta-text {
  color: var(--white);
  gap: 10px;
}

body.page-students .st-path-waitlist .st-path-cta-text {
  color: var(--red);
}

body.page-students .st-path-waitlist:hover .st-path-cta-text {
  gap: 10px;
}

body.page-students .st-s7-invite-line {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.02em;
  margin-bottom: clamp(20px, 3vh, 32px);
}

body.page-students .st-s7-invite-line em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.2s ease, border-color 0.2s ease;
}

body.page-students .st-s7-invite-line em:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

body.page-students .st-s7-bottom-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 680px;
  flex-wrap: wrap;
  gap: 16px;
}

body.page-students .st-s7-live-signal {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.page-students .st-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: st7-livePulse 1.8s ease-in-out infinite;
}

@keyframes st7-livePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.8);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

body.page-students .st-live-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.02em;
}

body.page-students .st-live-text strong {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

body.page-students .st-s7-trust-items {
  display: flex;
  gap: 20px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

body.page-students .st-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
}

body.page-students .st-trust-check {
  color: var(--green);
  font-size: 11px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ST7 entrance (IntersectionObserver adds .st7-visible) */
body.page-students .st-s7:not(.st7-visible) .st-s7-eyebrow {
  opacity: 0;
  transform: translateY(10px);
}

body.page-students .st-s7:not(.st7-visible) .st-s7-hl-ghost,
body.page-students .st-s7:not(.st7-visible) .st-s7-hl-white,
body.page-students .st-s7:not(.st7-visible) .st-s7-hl-red {
  opacity: 0;
  transform: translateY(24px);
}

body.page-students .st-s7:not(.st7-visible) .st-s7-framing,
body.page-students .st-s7:not(.st7-visible) .st-s7-paths {
  opacity: 0;
  transform: translateY(12px);
}

body.page-students .st-s7:not(.st7-visible) .st-s7-invite-line,
body.page-students .st-s7:not(.st7-visible) .st-s7-bottom-strip {
  opacity: 0;
  transform: translateY(8px);
}

body.page-students .st-s7:not(.st7-visible) .st-s7-waitlist-count {
  opacity: 0;
}

body.page-students .st-s7.st7-visible .st-s7-eyebrow {
  animation: st7-fadeUp 0.6s ease 0s forwards;
}

body.page-students .st-s7.st7-visible .st-s7-hl-ghost {
  animation: st7-fadeUp 0.7s ease 0.15s forwards;
}

body.page-students .st-s7.st7-visible .st-s7-hl-white {
  animation: st7-fadeUp 0.7s ease 0.3s forwards;
}

body.page-students .st-s7.st7-visible .st-s7-hl-red {
  animation: st7-fadeUp 0.7s ease 0.45s forwards;
}

body.page-students .st-s7.st7-visible .st-s7-framing {
  animation: st7-fadeUp 0.7s ease 0.6s forwards;
}

body.page-students .st-s7.st7-visible .st-s7-paths {
  animation: st7-fadeUp 0.7s ease 0.75s forwards;
}

body.page-students .st-s7.st7-visible .st-s7-invite-line {
  animation: st7-fadeUp 0.6s ease 0.9s forwards;
}

body.page-students .st-s7.st7-visible .st-s7-bottom-strip {
  animation: st7-fadeUp 0.6s ease 1.05s forwards;
}

body.page-students .st-s7.st7-visible .st-s7-waitlist-count {
  animation: st7-fadeIn 0.8s ease 1.2s forwards;
}

@keyframes st7-fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes st7-fadeIn {
  to { opacity: 1; }
}

.students-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-block: var(--space-24);
  padding-inline: var(--content-padding-inline);
  overflow: hidden;
}
.students-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg-1);
  background-image:
    radial-gradient(ellipse 100% 80% at 50% 120%, rgba(30, 30, 32, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(20, 20, 22, 0.4) 0%, transparent 45%);
}
.students-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-max-width);
  margin-inline: auto;
}
.students-hero__text {
  max-width: 700px;
}
.students-hero__accent {
  display: block;
  width: 2rem;
  height: 2px;
  background: #dc2626;
  margin-bottom: var(--space-6);
  border-radius: 1px;
}
.students-hero__title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin: 0 0 var(--space-6);
  animation: students-hero-title-in 1s var(--ease-out) both;
}
.students-hero__subline {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: var(--leading-snug);
  color: var(--text-secondary);
  margin: 0 0 var(--space-12);
  max-width: 36ch;
  animation: students-hero-subline-in 0.8s var(--ease-out) 0.2s both;
}
.students-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  animation: students-hero-actions-in 0.6s var(--ease-out) 0.4s both;
}
.students-hero__micro {
  font-size: var(--text-small);
  color: var(--text-muted);
  margin: 0;
  animation: students-hero-micro-in 0.5s var(--ease-out) 0.55s both;
}
@keyframes students-hero-title-in {
  from {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes students-hero-subline-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes students-hero-actions-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes students-hero-micro-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .students-hero__title,
  .students-hero__subline,
  .students-hero__actions,
  .students-hero__micro {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}
.students-hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: clamp(calc(var(--space-6) * 1.67), 10.02vw, calc(var(--space-16) * 1.67));
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-small);
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}
.students-hero__scroll:hover {
  color: var(--text-secondary);
}
.students-hero__scroll-icon {
  width: 20px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 10px;
  position: relative;
}
.students-hero__scroll-icon::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 6px;
  background: currentColor;
  border-radius: 2px;
  animation: students-scroll-dot 2s ease-in-out infinite;
}
@keyframes students-scroll-dot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.4; transform: translateX(-50%) translateY(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .students-hero__scroll-icon::before {
    animation: none;
  }
}

/* Students: Myth vs Reality — cinematic intro section (Phase 1) */
.students-myth-reality {
  position: relative;
  background: #000000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-inline: var(--content-padding-inline);
  overflow: hidden;
}
/* Grey line between sections on student page (same as home page: var(--border-1)) */
.students-myth-reality {
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
/* Grid variant: tighter horizontal padding so the grid can be wider without horizontal scroll */
.students-myth-reality.students-myth-reality--grid {
  padding-inline: clamp(20px, 4vw, 56px);
}
.students-myth-reality__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
/* PHASE 9 — Grid variant: subtle signal background (particles, nodes, micro pulse) */
.students-myth-reality--grid .students-myth-reality__bg {
  opacity: 0.05;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px, 64px 64px, 64px 64px;
  background-position: 0 0, 0 0, 0 0;
}
.students-myth-reality--grid .students-myth-reality__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle 3px at 15% 25%, rgba(255, 255, 255, 0.04) 0%, transparent 100%),
    radial-gradient(circle 3px at 82% 35%, rgba(255, 255, 255, 0.035) 0%, transparent 100%),
    radial-gradient(circle 3px at 45% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 100%),
    radial-gradient(circle 3px at 70% 80%, rgba(255, 255, 255, 0.035) 0%, transparent 100%);
  background-repeat: no-repeat;
  animation: students-myth-reality-bg-nodes 14s ease-in-out infinite;
}
.students-myth-reality--grid .students-myth-reality__bg::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 28%;
  height: 1px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
  animation: students-myth-reality-bg-pulse-line 12s ease-in-out infinite;
}
@keyframes students-myth-reality-bg-nodes {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes students-myth-reality-bg-pulse-line {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.7; }
}
@media (prefers-reduced-motion: reduce) {
  .students-myth-reality--grid .students-myth-reality__bg::before,
  .students-myth-reality--grid .students-myth-reality__bg::after {
    animation: none;
    opacity: 0.5;
  }
}
/* PHASE 12 — Ambient accent glows: deep purple, blue, teal (extremely low opacity, soft atmosphere) */
.students-myth-reality--grid .students-myth-reality__ambient {
  position: absolute;
  inset: 0;
  z-index: 0.25;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(59, 31, 88, 0.045) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 25%, rgba(30, 48, 95, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 75% 55% at 50% 85%, rgba(15, 70, 72, 0.04) 0%, transparent 55%);
  background-repeat: no-repeat;
}
/* Faint particle signals in background */
.students-myth-reality__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.students-myth-reality__particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  animation: students-myth-reality-particle 8s cubic-bezier(0.33, 1, 0.68, 1) infinite;
}
.students-myth-reality__particle:nth-child(1) { left: 12%; top: 18%; animation-delay: 0s; }
.students-myth-reality__particle:nth-child(2) { left: 88%; top: 22%; animation-delay: 1.2s; background: rgba(255, 45, 45, 0.08); }
.students-myth-reality__particle:nth-child(3) { left: 24%; top: 52%; animation-delay: 2.4s; }
.students-myth-reality__particle:nth-child(4) { left: 76%; top: 48%; animation-delay: 0.8s; }
.students-myth-reality__particle:nth-child(5) { left: 50%; top: 28%; animation-delay: 3.6s; background: rgba(255, 45, 45, 0.06); }
.students-myth-reality__particle:nth-child(6) { left: 8%; top: 72%; animation-delay: 1.8s; }
.students-myth-reality__particle:nth-child(7) { left: 92%; top: 68%; animation-delay: 2.8s; }
.students-myth-reality__particle:nth-child(8) { left: 36%; top: 82%; animation-delay: 0.4s; }
.students-myth-reality__particle:nth-child(9) { left: 64%; top: 14%; animation-delay: 4s; }
.students-myth-reality__particle:nth-child(10) { left: 52%; top: 78%; animation-delay: 2s; background: rgba(255, 45, 45, 0.07); }
@keyframes students-myth-reality-particle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .students-myth-reality__particle { animation: none; opacity: 0.35; }
}
/* Generic inner: content rail width; grid variant below overrides for myth-reality section */
.students-myth-reality__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-max-width);
  margin-inline: auto;
  text-align: center;
}
.students-myth-reality__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 auto var(--space-10);
  max-width: 18em;
}
.students-myth-reality__accent {
  color: #FF2D2D;
  font-weight: 600;
}
.students-myth-reality__lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  max-width: 28em;
  margin-inline: auto;
}

/* Three-column MYTH | connector | REALITY — soft panels + signal connectors */
.students-myth-reality__columns {
  display: grid;
  grid-template-columns: 1fr 3.5rem 1fr;
  grid-template-rows: auto repeat(4, auto);
  gap: clamp(var(--space-8), 4vw, var(--space-12)) clamp(var(--space-12), 6vw, var(--space-16));
  margin-top: clamp(var(--space-24), 12vw, var(--space-36));
  max-width: 52rem;
  margin-inline: auto;
  width: 100%;
  align-items: start;
}
.students-myth-reality__col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
}
.students-myth-reality__col-title--myth {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: clamp(var(--space-6), 4vw, var(--space-10));
}
.students-myth-reality__col-title--reality {
  grid-column: 3;
  grid-row: 1;
  margin-bottom: clamp(var(--space-6), 4vw, var(--space-10));
  color: rgba(255, 45, 45, 0.55);
}
.students-myth-reality__connector-spacer {
  grid-column: 2;
  grid-row: 1;
}
.students-myth-reality__panel {
  padding: clamp(var(--space-6), 4vw, var(--space-10)) clamp(var(--space-6), 4vw, var(--space-8));
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 4px 24px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(255, 255, 255, 0.02);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.35s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.35s cubic-bezier(0.33, 1, 0.68, 1), filter 0.35s cubic-bezier(0.33, 1, 0.68, 1);
}
.students-myth-reality__panel:hover {
  filter: brightness(1.04);
}
/* Myth panels: label above each statement, muted text (line-through animation ready later) */
.students-myth-reality__panel-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FF2D2D;
  margin-bottom: var(--space-3);
}
.students-myth-reality__panel-label--reality {
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.06);
}
.students-myth-reality__panel-text {
  margin: 0;
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  opacity: 0.92;
  transition: opacity 0.4s ease;
}
/* Myth text: strike-through line (animated when row activates) */
.students-myth-reality__panel:not(.students-myth-reality__panel--reality) .students-myth-reality__panel-text {
  position: relative;
}
.students-myth-reality__panel:not(.students-myth-reality__panel--reality) .students-myth-reality__panel-text::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.students-myth-reality__panel-text--reality {
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
  transition: color 0.35s ease, opacity 0.35s ease, text-shadow 0.35s ease;
}
.students-myth-reality__emphasis {
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.12);
}

/* Scroll-triggered debunk: strike-through myth, dim myth, focus reality */
.students-myth-reality--row-1-in .students-myth-reality__panel[data-row="1"]:not(.students-myth-reality__panel--reality) .students-myth-reality__panel-text,
.students-myth-reality--row-2-in .students-myth-reality__panel[data-row="2"]:not(.students-myth-reality__panel--reality) .students-myth-reality__panel-text,
.students-myth-reality--row-3-in .students-myth-reality__panel[data-row="3"]:not(.students-myth-reality__panel--reality) .students-myth-reality__panel-text,
.students-myth-reality--row-4-in .students-myth-reality__panel[data-row="4"]:not(.students-myth-reality__panel--reality) .students-myth-reality__panel-text {
  opacity: 0.48;
}
.students-myth-reality--row-1-in .students-myth-reality__panel[data-row="1"]:not(.students-myth-reality__panel--reality) .students-myth-reality__panel-text::after,
.students-myth-reality--row-2-in .students-myth-reality__panel[data-row="2"]:not(.students-myth-reality__panel--reality) .students-myth-reality__panel-text::after,
.students-myth-reality--row-3-in .students-myth-reality__panel[data-row="3"]:not(.students-myth-reality__panel--reality) .students-myth-reality__panel-text::after,
.students-myth-reality--row-4-in .students-myth-reality__panel[data-row="4"]:not(.students-myth-reality__panel--reality) .students-myth-reality__panel-text::after {
  transform: scaleX(1);
}
.students-myth-reality--row-1-in .students-myth-reality__panel--reality[data-row="1"],
.students-myth-reality--row-2-in .students-myth-reality__panel--reality[data-row="2"],
.students-myth-reality--row-3-in .students-myth-reality__panel--reality[data-row="3"],
.students-myth-reality--row-4-in .students-myth-reality__panel--reality[data-row="4"] {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 4px 28px rgba(0, 0, 0, 0.2),
    0 0 56px rgba(255, 45, 45, 0.12),
    0 0 40px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.students-myth-reality--row-1-in .students-myth-reality__panel--reality[data-row="1"] .students-myth-reality__panel-text--reality,
.students-myth-reality--row-2-in .students-myth-reality__panel--reality[data-row="2"] .students-myth-reality__panel-text--reality,
.students-myth-reality--row-3-in .students-myth-reality__panel--reality[data-row="3"] .students-myth-reality__panel-text--reality,
.students-myth-reality--row-4-in .students-myth-reality__panel--reality[data-row="4"] .students-myth-reality__panel-text--reality {
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.08);
}
@media (prefers-reduced-motion: reduce) {
  .students-myth-reality__panel:not(.students-myth-reality__panel--reality) .students-myth-reality__panel-text::after,
  .students-myth-reality__panel-text,
  .students-myth-reality__panel-text--reality {
    transition: none;
  }
}

/* Connector: thin line + traveling dot, accent colors */
.students-myth-reality__connector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding-inline: 0.25rem;
}
.students-myth-reality__connector-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  border-radius: 1px;
  opacity: 0.35;
  animation: students-myth-reality-line-pulse 5s cubic-bezier(0.33, 1, 0.68, 1) infinite;
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.students-myth-reality__connector--amber .students-myth-reality__connector-line {
  background: linear-gradient(90deg, transparent 0%, rgba(245, 158, 11, 0.6) 20%, rgba(245, 158, 11, 0.5) 80%, transparent 100%);
}
.students-myth-reality__connector--blue .students-myth-reality__connector-line {
  background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.6) 20%, rgba(59, 130, 246, 0.5) 80%, transparent 100%);
  animation-delay: 1.2s;
}
.students-myth-reality__connector--purple .students-myth-reality__connector-line {
  background: linear-gradient(90deg, transparent 0%, rgba(147, 51, 234, 0.6) 20%, rgba(147, 51, 234, 0.5) 80%, transparent 100%);
  animation-delay: 2.4s;
}
.students-myth-reality__connector--teal .students-myth-reality__connector-line {
  background: linear-gradient(90deg, transparent 0%, rgba(20, 184, 166, 0.6) 20%, rgba(20, 184, 166, 0.5) 80%, transparent 100%);
  animation-delay: 3.6s;
}
@keyframes students-myth-reality-line-pulse {
  0%, 85%, 100% { opacity: 0.35; }
  90% { opacity: 0.52; }
  95% { opacity: 0.35; }
}
@media (prefers-reduced-motion: reduce) {
  .students-myth-reality__connector-line { animation: none; }
}
.students-myth-reality__connector-dot {
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  z-index: 1;
  animation: students-myth-reality-dot-travel 4.5s cubic-bezier(0.33, 1, 0.68, 1) infinite, students-myth-reality-dot-glow 3.5s cubic-bezier(0.33, 1, 0.68, 1) infinite;
}
.students-myth-reality__connector-dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  z-index: -1;
  animation: students-myth-reality-node-halo 3.5s cubic-bezier(0.33, 1, 0.68, 1) infinite;
}
.students-myth-reality__connector--amber .students-myth-reality__connector-dot {
  background: rgba(245, 158, 11, 0.9);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
}
.students-myth-reality__connector--amber .students-myth-reality__connector-dot::before {
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}
.students-myth-reality__connector--blue .students-myth-reality__connector-dot {
  background: rgba(59, 130, 246, 0.9);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
  animation-delay: 0.5s, 0.6s;
}
.students-myth-reality__connector--blue .students-myth-reality__connector-dot::before {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
  animation-delay: 0.6s;
}
.students-myth-reality__connector--purple .students-myth-reality__connector-dot {
  background: rgba(147, 51, 234, 0.9);
  box-shadow: 0 0 12px rgba(147, 51, 234, 0.5);
  animation-delay: 1s, 1.2s;
}
.students-myth-reality__connector--purple .students-myth-reality__connector-dot::before {
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.15);
  animation-delay: 1.2s;
}
.students-myth-reality__connector--teal .students-myth-reality__connector-dot {
  background: rgba(20, 184, 166, 0.9);
  box-shadow: 0 0 12px rgba(20, 184, 166, 0.5);
  animation-delay: 1.5s, 1.8s;
}
.students-myth-reality__connector--teal .students-myth-reality__connector-dot::before {
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.15);
  animation-delay: 1.8s;
}
@keyframes students-myth-reality-dot-glow {
  0%, 80%, 100% { filter: brightness(1); }
  90% { filter: brightness(1.15); }
}
@keyframes students-myth-reality-node-halo {
  0%, 80%, 100% { opacity: 0.4; transform: scale(1); }
  90% { opacity: 0.8; transform: scale(1.15); }
}
@keyframes students-myth-reality-dot-travel {
  0%, 12% { transform: translateX(0); opacity: 0.65; }
  18% { opacity: 1; }
  72% { transform: translateX(calc(3.5rem - 6px)); opacity: 1; }
  78% { opacity: 0.65; }
  85%, 100% { transform: translateX(0); opacity: 0.65; }
}
@media (prefers-reduced-motion: reduce) {
  .students-myth-reality__connector-dot {
    animation: none;
    opacity: 0.5;
  }
  .students-myth-reality__connector-dot::before {
    animation: none;
    opacity: 0.5;
  }
}

/* Hover: highlight connector line when myth or reality panel in that row is hovered */
.students-myth-reality__panel[data-row="1"]:not(.students-myth-reality__panel--reality):hover + .students-myth-reality__connector .students-myth-reality__connector-line,
.students-myth-reality__connector[data-row="1"]:has(+ .students-myth-reality__panel--reality[data-row="1"]:hover) .students-myth-reality__connector-line,
.students-myth-reality__panel[data-row="2"]:not(.students-myth-reality__panel--reality):hover + .students-myth-reality__connector .students-myth-reality__connector-line,
.students-myth-reality__connector[data-row="2"]:has(+ .students-myth-reality__panel--reality[data-row="2"]:hover) .students-myth-reality__connector-line,
.students-myth-reality__panel[data-row="3"]:not(.students-myth-reality__panel--reality):hover + .students-myth-reality__connector .students-myth-reality__connector-line,
.students-myth-reality__connector[data-row="3"]:has(+ .students-myth-reality__panel--reality[data-row="3"]:hover) .students-myth-reality__connector-line,
.students-myth-reality__panel[data-row="4"]:not(.students-myth-reality__panel--reality):hover + .students-myth-reality__connector .students-myth-reality__connector-line,
.students-myth-reality__connector[data-row="4"]:has(+ .students-myth-reality__panel--reality[data-row="4"]:hover) .students-myth-reality__connector-line {
  opacity: 0.68;
}

/* Scroll-driven focus shift: one row active, others dimmed */
.students-myth-reality[data-focus-row] .students-myth-reality__panel,
.students-myth-reality[data-focus-row] .students-myth-reality__connector {
  opacity: 0.5;
  transition: opacity 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}
.students-myth-reality[data-focus-row="1"] .students-myth-reality__panel[data-row="1"],
.students-myth-reality[data-focus-row="1"] .students-myth-reality__connector[data-row="1"],
.students-myth-reality[data-focus-row="2"] .students-myth-reality__panel[data-row="2"],
.students-myth-reality[data-focus-row="2"] .students-myth-reality__connector[data-row="2"],
.students-myth-reality[data-focus-row="3"] .students-myth-reality__panel[data-row="3"],
.students-myth-reality[data-focus-row="3"] .students-myth-reality__connector[data-row="3"],
.students-myth-reality[data-focus-row="4"] .students-myth-reality__panel[data-row="4"],
.students-myth-reality[data-focus-row="4"] .students-myth-reality__connector[data-row="4"] {
  opacity: 1;
}
/* Active row: connector line glows; inactive: dimmed */
.students-myth-reality[data-focus-row] .students-myth-reality__connector-line {
  transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.students-myth-reality[data-focus-row="1"] .students-myth-reality__connector[data-row="2"] .students-myth-reality__connector-line,
.students-myth-reality[data-focus-row="1"] .students-myth-reality__connector[data-row="3"] .students-myth-reality__connector-line,
.students-myth-reality[data-focus-row="1"] .students-myth-reality__connector[data-row="4"] .students-myth-reality__connector-line,
.students-myth-reality[data-focus-row="2"] .students-myth-reality__connector[data-row="1"] .students-myth-reality__connector-line,
.students-myth-reality[data-focus-row="2"] .students-myth-reality__connector[data-row="3"] .students-myth-reality__connector-line,
.students-myth-reality[data-focus-row="2"] .students-myth-reality__connector[data-row="4"] .students-myth-reality__connector-line,
.students-myth-reality[data-focus-row="3"] .students-myth-reality__connector[data-row="1"] .students-myth-reality__connector-line,
.students-myth-reality[data-focus-row="3"] .students-myth-reality__connector[data-row="2"] .students-myth-reality__connector-line,
.students-myth-reality[data-focus-row="3"] .students-myth-reality__connector[data-row="4"] .students-myth-reality__connector-line,
.students-myth-reality[data-focus-row="4"] .students-myth-reality__connector[data-row="1"] .students-myth-reality__connector-line,
.students-myth-reality[data-focus-row="4"] .students-myth-reality__connector[data-row="2"] .students-myth-reality__connector-line,
.students-myth-reality[data-focus-row="4"] .students-myth-reality__connector[data-row="3"] .students-myth-reality__connector-line {
  opacity: 0.18;
  animation: none;
}
.students-myth-reality[data-focus-row="1"] .students-myth-reality__connector[data-row="1"] .students-myth-reality__connector-line,
.students-myth-reality[data-focus-row="2"] .students-myth-reality__connector[data-row="2"] .students-myth-reality__connector-line,
.students-myth-reality[data-focus-row="3"] .students-myth-reality__connector[data-row="3"] .students-myth-reality__connector-line,
.students-myth-reality[data-focus-row="4"] .students-myth-reality__connector[data-row="4"] .students-myth-reality__connector-line {
  opacity: 0.6;
}
/* Inactive rows: minimal motion (pause dot + halo) */
.students-myth-reality[data-focus-row="1"] .students-myth-reality__connector[data-row="2"] .students-myth-reality__connector-dot,
.students-myth-reality[data-focus-row="1"] .students-myth-reality__connector[data-row="2"] .students-myth-reality__connector-dot::before,
.students-myth-reality[data-focus-row="1"] .students-myth-reality__connector[data-row="3"] .students-myth-reality__connector-dot,
.students-myth-reality[data-focus-row="1"] .students-myth-reality__connector[data-row="3"] .students-myth-reality__connector-dot::before,
.students-myth-reality[data-focus-row="1"] .students-myth-reality__connector[data-row="4"] .students-myth-reality__connector-dot,
.students-myth-reality[data-focus-row="1"] .students-myth-reality__connector[data-row="4"] .students-myth-reality__connector-dot::before,
.students-myth-reality[data-focus-row="2"] .students-myth-reality__connector[data-row="1"] .students-myth-reality__connector-dot,
.students-myth-reality[data-focus-row="2"] .students-myth-reality__connector[data-row="1"] .students-myth-reality__connector-dot::before,
.students-myth-reality[data-focus-row="2"] .students-myth-reality__connector[data-row="3"] .students-myth-reality__connector-dot,
.students-myth-reality[data-focus-row="2"] .students-myth-reality__connector[data-row="3"] .students-myth-reality__connector-dot::before,
.students-myth-reality[data-focus-row="2"] .students-myth-reality__connector[data-row="4"] .students-myth-reality__connector-dot,
.students-myth-reality[data-focus-row="2"] .students-myth-reality__connector[data-row="4"] .students-myth-reality__connector-dot::before,
.students-myth-reality[data-focus-row="3"] .students-myth-reality__connector[data-row="1"] .students-myth-reality__connector-dot,
.students-myth-reality[data-focus-row="3"] .students-myth-reality__connector[data-row="1"] .students-myth-reality__connector-dot::before,
.students-myth-reality[data-focus-row="3"] .students-myth-reality__connector[data-row="2"] .students-myth-reality__connector-dot,
.students-myth-reality[data-focus-row="3"] .students-myth-reality__connector[data-row="2"] .students-myth-reality__connector-dot::before,
.students-myth-reality[data-focus-row="3"] .students-myth-reality__connector[data-row="4"] .students-myth-reality__connector-dot,
.students-myth-reality[data-focus-row="3"] .students-myth-reality__connector[data-row="4"] .students-myth-reality__connector-dot::before,
.students-myth-reality[data-focus-row="4"] .students-myth-reality__connector[data-row="1"] .students-myth-reality__connector-dot,
.students-myth-reality[data-focus-row="4"] .students-myth-reality__connector[data-row="1"] .students-myth-reality__connector-dot::before,
.students-myth-reality[data-focus-row="4"] .students-myth-reality__connector[data-row="2"] .students-myth-reality__connector-dot,
.students-myth-reality[data-focus-row="4"] .students-myth-reality__connector[data-row="2"] .students-myth-reality__connector-dot::before,
.students-myth-reality[data-focus-row="4"] .students-myth-reality__connector[data-row="3"] .students-myth-reality__connector-dot,
.students-myth-reality[data-focus-row="4"] .students-myth-reality__connector[data-row="3"] .students-myth-reality__connector-dot::before {
  animation-play-state: paused;
}
/* Active row: reality text slightly brighter */
.students-myth-reality[data-focus-row="1"] .students-myth-reality__panel--reality[data-row="1"] .students-myth-reality__panel-text--reality,
.students-myth-reality[data-focus-row="2"] .students-myth-reality__panel--reality[data-row="2"] .students-myth-reality__panel-text--reality,
.students-myth-reality[data-focus-row="3"] .students-myth-reality__panel--reality[data-row="3"] .students-myth-reality__panel-text--reality,
.students-myth-reality[data-focus-row="4"] .students-myth-reality__panel--reality[data-row="4"] .students-myth-reality__panel-text--reality {
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.1);
}
@media (prefers-reduced-motion: reduce) {
  .students-myth-reality[data-focus-row] .students-myth-reality__panel,
  .students-myth-reality[data-focus-row] .students-myth-reality__connector {
    transition: none;
  }
}

/* Reality panel base (right column) */
.students-myth-reality__panel--reality {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 4px 24px rgba(0, 0, 0, 0.2),
    0 0 48px rgba(255, 45, 45, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
/* Soft illumination + node pulse when signal reaches reality (synced to dot arrival ~72% of cycle) */
.students-myth-reality__panel--reality.students-myth-reality__panel--row-1 {
  animation: students-myth-reality-illuminate 4.5s cubic-bezier(0.33, 1, 0.68, 1) infinite;
  transition: box-shadow 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.students-myth-reality__panel--reality.students-myth-reality__panel--row-2 {
  animation: students-myth-reality-illuminate 4.5s cubic-bezier(0.33, 1, 0.68, 1) infinite 0.5s;
  transition: box-shadow 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.students-myth-reality__panel--reality.students-myth-reality__panel--row-3 {
  animation: students-myth-reality-illuminate 4.5s cubic-bezier(0.33, 1, 0.68, 1) infinite 1s;
  transition: box-shadow 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.students-myth-reality__panel--reality.students-myth-reality__panel--row-4 {
  animation: students-myth-reality-illuminate 4.5s cubic-bezier(0.33, 1, 0.68, 1) infinite 1.5s;
  transition: box-shadow 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@keyframes students-myth-reality-illuminate {
  0%, 68% { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 48px rgba(255, 45, 45, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.03); }
  72% { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.07), 0 4px 28px rgba(0, 0, 0, 0.2), 0 0 72px rgba(255, 45, 45, 0.18), 0 0 40px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.08); }
  76%, 100% { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 48px rgba(255, 45, 45, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.03); }
}
@media (prefers-reduced-motion: reduce) {
  .students-myth-reality__panel--reality.students-myth-reality__panel--row-1,
  .students-myth-reality__panel--reality.students-myth-reality__panel--row-2,
  .students-myth-reality__panel--reality.students-myth-reality__panel--row-3,
  .students-myth-reality__panel--reality.students-myth-reality__panel--row-4 {
    animation: none;
  }
}

.students-myth-reality__panel:not(.students-myth-reality__panel--reality) {
  color: rgba(255, 255, 255, 0.55);
}

/* Section closing statement — bridge to next section */
.students-myth-reality__close {
  margin: 0;
  margin-top: clamp(var(--space-28), 14vw, var(--space-40));
  margin-bottom: clamp(var(--space-24), 12vw, var(--space-32));
  padding-inline: var(--content-padding-inline);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  max-width: 22em;
  margin-inline: auto;
}
.students-myth-reality__close-accent {
  color: #FF2D2D;
  font-weight: 600;
  text-shadow: 0 0 32px rgba(255, 45, 45, 0.35), 0 0 16px rgba(255, 45, 45, 0.2);
}

@media (max-width: 767px) {
  .students-myth-reality__columns {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
    gap: clamp(var(--space-12), 8vw, var(--space-20));
    margin-top: clamp(var(--space-20), 10vw, var(--space-28));
  }
  .students-myth-reality__col-title--myth,
  .students-myth-reality__col-title--reality {
    grid-column: 1;
    grid-row: auto;
  }
  .students-myth-reality__connector-spacer,
  .students-myth-reality__connector {
    display: none;
  }
}

/* ——— Students: Myth vs Reality GRID (flip cards: myth → truth) ——— */
/* PHASE 15 — Interaction polish: unified easing, responsive hovers, no jitter */
.students-myth-reality--grid {
  --spotlight-x: 50%;
  --spotlight-y: 50%;
  --mre-ease: cubic-bezier(0.33, 1, 0.68, 1);
  --mre-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}
/* PHASE 10 — Cursor spotlight: radial glow + card proximity (JS sets --spotlight-x, --spotlight-y) */
.students-myth-reality--grid .students-myth-reality__spotlight {
  position: absolute;
  inset: 0;
  z-index: 0.5;
  pointer-events: none;
  background: radial-gradient(
    circle  min(45vw, 320px) at var(--spotlight-x) var(--spotlight-y),
    rgba(255, 255, 255, 0.035) 0%,
    rgba(255, 255, 255, 0.012) 35%,
    transparent 70%
  );
  transition: background 0.12s var(--mre-ease);
}
/* Myth-reality grid: use full section width (section has reduced padding so grid is wider, no horizontal scroll) */
.students-myth-reality--grid .students-myth-reality__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none; /* allow inner to use full section content box */
  margin-inline: auto;
  padding: clamp(var(--space-20), 10vw, var(--space-32)) clamp(20px, 4vw, 48px); /* match section: tighter so grid is wider */
  text-align: left; /* align left like hero section */
}
/* Section 2 head: align with logo; title left, subline right on same row */
.students-myth-reality--grid .students-myth-reality__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: clamp(var(--space-4), 3vw, var(--space-8));
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: clamp(7rem, 14vw, 10rem);
  padding-left: calc(8vw + clamp(16px, 1.5vw, 28px));
  padding-right: clamp(16px, 1.5vw, 28px);
  max-width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.students-myth-reality--grid .students-myth-reality__title {
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
  max-width: none;
  margin-inline: 0;
  text-align: left;
  flex-shrink: 0;
}
.students-myth-reality--grid .students-myth-reality__title .students-myth-reality__accent {
  color: #FF2D2D;
  font-weight: 600;
}
.students-myth-reality--grid .students-myth-reality__lead {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.58;
  color: #b8b8b8;
  margin: 0;
  font-weight: 400;
  max-width: 28em;
  margin-inline: 0;
  text-align: right;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .students-myth-reality--grid .students-myth-reality__head {
    padding-right: clamp(16px, 5vw, 24px);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
  .students-myth-reality--grid .students-myth-reality__lead {
    text-align: left;
  }
  .students-myth-reality--grid .students-myth-reality__title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
}
.students-myth-reality--grid .students-myth-reality__reframe {
  display: none;
}
/* PHASE 1 — Stable 4×2 grid: 4 equal columns, 2 rows (myth → truth per column); fits viewport, no horizontal scroll */
.students-myth-reality--grid .students-myth-reality__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 32px;
  row-gap: 0;
  margin-bottom: clamp(var(--space-24), 12vw, var(--space-32));
  width: 100%;
  max-width: none; /* use full inner width; section + inner padding already keep it within viewport */
  margin-inline: auto;
  padding-inline: 0; /* inner already has horizontal padding */
}
/* PHASE 10 — Interaction polish: responsive hovers, smooth reveals, subtle spotlight, no layout shift */
.students-myth-reality--grid .students-myth-reality__column {
  display: grid;
  grid-template-rows: 180px 56px 290px;
  row-gap: 0;
  min-width: 0;
  position: relative;
  transition: opacity 0.38s cubic-bezier(0.33, 1, 0.68, 1), filter 0.38s cubic-bezier(0.33, 1, 0.68, 1), transform 0.38s cubic-bezier(0.33, 1, 0.68, 1);
}
/* When a truth card is hovered: blur other columns, keep active column sharp with elegant focus */
.students-myth-reality--grid .students-myth-reality__grid:has(.students-myth-reality__card--truth:hover) .students-myth-reality__column:not(:has(.students-myth-reality__card--truth:hover)) {
  filter: blur(5px);
  opacity: 0.48;
  pointer-events: none;
}
/* Active column (hovered truth): subtle lift + soft glow so it feels “in focus” */
.students-myth-reality--grid .students-myth-reality__column:has(.students-myth-reality__card--truth:hover) {
  transform: scale(1.02);
  z-index: 1;
}
.students-myth-reality--grid .students-myth-reality__column:has(.students-myth-reality__card--truth:hover) .students-myth-reality__card--myth,
.students-myth-reality--grid .students-myth-reality__column:has(.students-myth-reality__card--truth:hover) .students-myth-reality__card--truth {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 32px rgba(255, 255, 255, 0.06), 0 0 48px rgba(255, 45, 45, 0.04);
}
/* PHASE 6 — Vertical signal connector: thin line myth↔truth; on truth reveal, node travels up, myth fades */
.students-myth-reality--grid .students-myth-reality__signal-connector {
  position: relative;
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  pointer-events: none;
}
/* PHASE 8 — Accent energy: per-column (amber, blue, purple, teal) for signal line/node only; no colored backgrounds */
.students-myth-reality--grid .students-myth-reality__column:nth-child(1) {
  --mre-accent: rgba(245, 158, 11, 0.5);
  --mre-accent-glow: rgba(245, 158, 11, 0.12);
}
.students-myth-reality--grid .students-myth-reality__column:nth-child(2) {
  --mre-accent: rgba(59, 130, 246, 0.5);
  --mre-accent-glow: rgba(59, 130, 246, 0.12);
}
.students-myth-reality--grid .students-myth-reality__column:nth-child(3) {
  --mre-accent: rgba(139, 92, 246, 0.5);
  --mre-accent-glow: rgba(139, 92, 246, 0.12);
}
.students-myth-reality--grid .students-myth-reality__column:nth-child(4) {
  --mre-accent: rgba(20, 184, 166, 0.5);
  --mre-accent-glow: rgba(20, 184, 166, 0.12);
}
.students-myth-reality--grid .students-myth-reality__signal-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    var(--mre-accent, rgba(255, 45, 45, 0.12)) 50%,
    rgba(255, 255, 255, 0.06) 100%
  );
  opacity: 0.75;
  box-shadow: 0 0 10px var(--mre-accent-glow, rgba(255, 45, 45, 0.06));
}
.students-myth-reality--grid .students-myth-reality__signal-node {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mre-accent, rgba(255, 45, 45, 0.95));
  transform: translate(-50%, 50%);
  box-shadow: 0 0 10px var(--mre-accent-glow, rgba(255, 45, 45, 0.2)), 0 0 18px var(--mre-accent-glow, rgba(255, 45, 45, 0.1));
  opacity: 0;
  transition: transform 0.34s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.28s cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 1;
}
.students-myth-reality--grid .students-myth-reality__column:has(.students-myth-reality__card--truth:hover) .students-myth-reality__signal-node {
  transform: translate(-50%, -56px);
  opacity: 1;
}
/* PHASE 8 — Column hover: subtle accent glow (amber/blue/purple/teal) in box-shadow only */
.students-myth-reality--grid .students-myth-reality__column:nth-child(1):hover .students-myth-reality__card--myth {
  box-shadow:
    inset 2px 0 0 0 rgba(255, 45, 45, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 24px rgba(255, 255, 255, 0.03),
    0 0 32px rgba(245, 158, 11, 0.06);
}
.students-myth-reality--grid .students-myth-reality__column:nth-child(2):hover .students-myth-reality__card--myth {
  box-shadow:
    inset 2px 0 0 0 rgba(255, 45, 45, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 24px rgba(255, 255, 255, 0.03),
    0 0 32px rgba(59, 130, 246, 0.06);
}
.students-myth-reality--grid .students-myth-reality__column:nth-child(3):hover .students-myth-reality__card--myth {
  box-shadow:
    inset 2px 0 0 0 rgba(255, 45, 45, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 24px rgba(255, 255, 255, 0.03),
    0 0 32px rgba(139, 92, 246, 0.06);
}
.students-myth-reality--grid .students-myth-reality__column:nth-child(4):hover .students-myth-reality__card--myth {
  box-shadow:
    inset 2px 0 0 0 rgba(255, 45, 45, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 24px rgba(255, 255, 255, 0.03),
    0 0 32px rgba(20, 184, 166, 0.06);
}
.students-myth-reality--grid .students-myth-reality__column:nth-child(1):hover .students-myth-reality__card--truth {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(255, 255, 255, 0.05),
    0 0 40px rgba(255, 45, 45, 0.04),
    0 0 48px rgba(245, 158, 11, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.students-myth-reality--grid .students-myth-reality__column:nth-child(2):hover .students-myth-reality__card--truth {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(255, 255, 255, 0.05),
    0 0 40px rgba(255, 45, 45, 0.04),
    0 0 48px rgba(59, 130, 246, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.students-myth-reality--grid .students-myth-reality__column:nth-child(3):hover .students-myth-reality__card--truth {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(255, 255, 255, 0.05),
    0 0 40px rgba(255, 45, 45, 0.04),
    0 0 48px rgba(139, 92, 246, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.students-myth-reality--grid .students-myth-reality__column:nth-child(4):hover .students-myth-reality__card--truth {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(255, 255, 255, 0.05),
    0 0 40px rgba(255, 45, 45, 0.04),
    0 0 48px rgba(20, 184, 166, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
/* Cards: identical size per type, perfect alignment, clean borders */
.students-myth-reality--grid .students-myth-reality__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--space-6);
  border-radius: 12px;
  min-height: 0;
  height: 100%;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 4px 24px rgba(0, 0, 0, 0.2);
  transition: filter 0.2s var(--mre-ease), border-color 0.2s var(--mre-ease), box-shadow 0.2s var(--mre-ease);
  overflow: hidden;
}
.students-myth-reality--grid .students-myth-reality__card--myth {
  min-height: 180px;
}
.students-myth-reality--grid .students-myth-reality__card--truth {
  min-height: 290px;
}
/* Card hover */
.students-myth-reality--grid .students-myth-reality__card--myth:hover {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 2px 0 0 0 rgba(255, 45, 45, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.students-myth-reality--grid .students-myth-reality__card--truth:hover {
  border-color: var(--text-on-dark-dim);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 40px rgba(255, 255, 255, 0.06),
    0 0 56px rgba(255, 45, 45, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
/* Cursor near card: subtle brightness and border */
.students-myth-reality--grid .students-myth-reality__card.spotlight-near {
  filter: brightness(1.04);
  border-color: var(--text-on-dark-faint);
}
.students-myth-reality--grid .students-myth-reality__card--myth.spotlight-near {
  background: rgba(20, 20, 22, 0.94);
}
.students-myth-reality--grid .students-myth-reality__card--truth.spotlight-near {
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
}
/* PHASE 2 — Myth cards as editorial panels: matte dark, no glass, strong statements */
.students-myth-reality--grid .students-myth-reality__card--myth {
  justify-content: flex-start;
  padding: var(--space-5) var(--space-6);
  background: rgba(16, 16, 18, 0.92);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    inset 2px 0 0 0 rgba(255, 45, 45, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  text-align: left;
}
.students-myth-reality--grid .students-myth-reality__card--myth::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 3.5rem;
  background: linear-gradient(180deg, rgba(255, 45, 45, 0.25) 0%, transparent 100%);
  pointer-events: none;
}
/* Label: small "MYTH" in brand red */
.students-myth-reality--grid .students-myth-reality__card--myth .students-myth-reality__card-label {
  display: block;
  color: #FF2D2D;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 var(--space-4);
  line-height: 1;
}
/* PHASE 7 — Myth: slightly larger font, intentional line breaks, tighter line-height, editorial */
.students-myth-reality--grid .students-myth-reality__card--myth .students-myth-reality__card-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.0625rem, 1.35vw, 1.25rem);
  line-height: 1.26;
  letter-spacing: 0.012em;
  text-align: left;
  max-width: 100%;
  font-weight: 500;
  hyphens: none;
}
/* PHASE 6 — Myth correction: when truth is revealed, myth fades slightly, thin strike-through briefly appears, fades after 0.5s */
.students-myth-reality--grid .students-myth-reality__card--myth::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  margin-top: -1px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: opacity 0.2s var(--mre-ease);
  z-index: 1;
  pointer-events: none;
}
.students-myth-reality--grid .students-myth-reality__column:has(.students-myth-reality__card--truth:hover) .students-myth-reality__card--myth::before {
  opacity: 0.9;
  animation: students-myth-reality-correction-fade 0.5s var(--mre-ease) forwards;
}
@keyframes students-myth-reality-correction-fade {
  0% { opacity: 0.9; }
  100% { opacity: 0; }
}
.students-myth-reality--grid .students-myth-reality__card--myth {
  transition: opacity 0.28s var(--mre-ease);
}
/* Keep myth in active column fully visible when its truth card is hovered */
.students-myth-reality--grid .students-myth-reality__column:has(.students-myth-reality__card--truth:hover) .students-myth-reality__card--myth {
  opacity: 1;
}
/* PHASE 14 — Myth collapse: when ripple runs, myth above gets strike-through + dim, fades in 0.5s */
.students-myth-reality--grid .students-myth-reality__card--myth.ripple-myth-corrected {
  animation: students-myth-reality-myth-collapse 0.5s var(--mre-ease) forwards;
}
.students-myth-reality--grid .students-myth-reality__card--myth.ripple-myth-corrected::before {
  animation: students-myth-reality-myth-collapse-line 0.5s var(--mre-ease) forwards;
}
@keyframes students-myth-reality-myth-collapse {
  0% { opacity: 0.72; }
  100% { opacity: 1; }
}
@keyframes students-myth-reality-myth-collapse-line {
  0% { opacity: 0.85; }
  100% { opacity: 0; }
}
/* PHASE 3 — Truth reveal cards: default TRUTH + “Hover to reveal”; on hover card expands and reveals statement */
/* PHASE 4 — Truth card expand: horizontal expand, truth text fades in, subtle glow; 0.4s smooth easing */
.students-myth-reality--grid .students-myth-reality__card--truth {
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 32px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  --truth-duration: 0.28s;
  --truth-ease: cubic-bezier(0.33, 1, 0.68, 1);
  transition: box-shadow var(--truth-duration) var(--truth-ease), border-color var(--truth-duration) var(--truth-ease);
}
.students-myth-reality--grid .students-myth-reality__card--truth .students-myth-reality__card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 290px;
}
/* PHASE 4 + 10 — Slide-up reveal: smooth, no jitter; fixed dimensions prevent layout shift */
.students-myth-reality--grid .students-myth-reality__card--truth .students-myth-reality__card-face {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1.5rem 1.75rem;
}
.students-myth-reality--grid .students-myth-reality__card--truth .students-myth-reality__card-face--front {
  top: 0;
  bottom: 0;
}
/* Small upward arrow at center of bottom edge (reveal hint) */
.students-myth-reality--grid .students-myth-reality__card--truth .students-myth-reality__card-face--front::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.students-myth-reality--grid .students-myth-reality__card--truth .students-myth-reality__card-face--back {
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  justify-content: center;
  background: #ffffff;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.36s cubic-bezier(0.33, 1, 0.68, 1);
  backface-visibility: hidden;
  z-index: 1;
}
.students-myth-reality--grid .students-myth-reality__card--truth:hover .students-myth-reality__card-face--back {
  transform: translate3d(0, 0, 0);
}
/* PHASE 13 — Truth ripple: center node on flip + expanding ripple + card reactions */
.students-myth-reality--grid .students-myth-reality__truth-center-node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  margin-top: -3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.12), 0 0 32px rgba(255, 255, 255, 0.06);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.22s var(--mre-ease);
}
.students-myth-reality--grid .students-myth-reality__card--truth:hover .students-myth-reality__truth-center-node {
  opacity: 0;
}
.students-myth-reality--grid .students-myth-reality__ripple-wave {
  position: absolute;
  width: 120px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 40%, transparent 65%);
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 0.45;
}
.students-myth-reality--grid .students-myth-reality__ripple-wave.ripple-wave--active {
  animation: students-myth-reality-ripple-expand 0.8s var(--mre-ease) forwards;
}
@keyframes students-myth-reality-ripple-expand {
  0% {
    transform: scale(0);
    opacity: 0.08;
  }
  35% {
    opacity: 0.05;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
.students-myth-reality--grid .students-myth-reality__card--myth.ripple-affected {
  animation: students-myth-reality-ripple-myth 0.36s var(--mre-ease) forwards;
}
.students-myth-reality--grid .students-myth-reality__card--truth.ripple-affected {
  animation: students-myth-reality-ripple-truth 0.36s var(--mre-ease) forwards;
}
@keyframes students-myth-reality-ripple-myth {
  0% { opacity: 1; }
  50% { opacity: 0.74; }
  100% { opacity: 1; }
}
@keyframes students-myth-reality-ripple-truth {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.04); }
  100% { filter: brightness(1); }
}
/* PHASE 6 — Signal pulse: node + traveling glow per column (amber, blue, purple, teal) */
.students-myth-reality--grid .students-myth-reality__card--truth {
  --signal-color: rgba(245, 158, 11, 0.55);
  --signal-glow: rgba(245, 158, 11, 0.25);
}
.students-myth-reality--grid .students-myth-reality__column:nth-child(1) .students-myth-reality__card--truth {
  --signal-color: rgba(245, 158, 11, 0.55);
  --signal-glow: rgba(245, 158, 11, 0.25);
}
.students-myth-reality--grid .students-myth-reality__column:nth-child(2) .students-myth-reality__card--truth {
  --signal-color: rgba(59, 130, 246, 0.55);
  --signal-glow: rgba(59, 130, 246, 0.25);
}
.students-myth-reality--grid .students-myth-reality__column:nth-child(3) .students-myth-reality__card--truth {
  --signal-color: rgba(139, 92, 246, 0.55);
  --signal-glow: rgba(139, 92, 246, 0.25);
}
.students-myth-reality--grid .students-myth-reality__column:nth-child(4) .students-myth-reality__card--truth {
  --signal-color: rgba(20, 184, 166, 0.55);
  --signal-glow: rgba(20, 184, 166, 0.25);
}
/* Traveling pulse: soft light sweep across card on hover, then fade */
.students-myth-reality--grid .students-myth-reality__card--truth::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 40%;
  max-width: 120px;
  background: linear-gradient(90deg, var(--signal-glow) 0%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
.students-myth-reality--grid .students-myth-reality__card--truth:hover::before {
  animation: students-myth-reality-pulse-travel 0.72s var(--mre-ease) forwards;
}
/* Signal node: small glowing dot, controlled pulse then fade (PHASE 10: subtle, no jitter) */
.students-myth-reality--grid .students-myth-reality__card--truth::after {
  content: '';
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal-color);
  box-shadow: 0 0 10px var(--signal-glow), 0 0 20px var(--signal-glow);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.students-myth-reality--grid .students-myth-reality__card--truth:hover::after {
  animation: students-myth-reality-node-pulse 0.72s var(--mre-ease) forwards;
}
@keyframes students-myth-reality-pulse-travel {
  0% {
    transform: translate3d(-100%, 0, 0);
    opacity: 0.5;
  }
  40% {
    opacity: 0.45;
  }
  75% {
    transform: translate3d(280%, 0, 0);
    opacity: 0.25;
  }
  100% {
    transform: translate3d(280%, 0, 0);
    opacity: 0;
  }
}
@keyframes students-myth-reality-node-pulse {
  0% {
    opacity: 0;
    transform: scale(0.9);
    box-shadow: 0 0 10px var(--signal-glow), 0 0 20px var(--signal-glow);
  }
  28% {
    opacity: 1;
    transform: scale(1.12);
    box-shadow: 0 0 12px var(--signal-glow), 0 0 24px var(--signal-glow);
  }
  55% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    transform: scale(1);
    box-shadow: 0 0 8px var(--signal-glow), 0 0 16px var(--signal-glow);
  }
}
@media (prefers-reduced-motion: reduce) {
  .students-myth-reality--grid .students-myth-reality__card--truth::before,
  .students-myth-reality--grid .students-myth-reality__card--truth::after {
    animation: none !important;
  }
  .students-myth-reality--grid .students-myth-reality__card--truth:hover::before,
  .students-myth-reality--grid .students-myth-reality__card--truth:hover::after {
    opacity: 0;
  }
  .students-myth-reality--grid .students-myth-reality__card--myth,
  .students-myth-reality--grid .students-myth-reality__card--myth::before {
    transition: none;
  }
  .students-myth-reality--grid .students-myth-reality__column:has(.students-myth-reality__card--truth:hover) .students-myth-reality__card--myth::before {
    animation: none;
    opacity: 0.6;
  }
  .students-myth-reality--grid .students-myth-reality__spotlight {
    opacity: 0;
    pointer-events: none;
  }
  .students-myth-reality--grid .students-myth-reality__card.spotlight-near {
    filter: none;
  }
  .students-myth-reality--grid .students-myth-reality__card {
    transition: none;
  }
  .students-myth-reality--grid .students-myth-reality__card:hover {
    transform: none;
  }
  .students-myth-reality--grid .students-myth-reality__ripple-wave.ripple-wave--active {
    animation: none;
    opacity: 0;
  }
  .students-myth-reality--grid .students-myth-reality__card.ripple-affected {
    animation: none;
  }
  .students-myth-reality--grid .students-myth-reality__card--myth.ripple-myth-corrected,
  .students-myth-reality--grid .students-myth-reality__card--myth.ripple-myth-corrected::before {
    animation: none;
  }
  .students-myth-reality--grid .students-myth-reality__card--truth:hover .students-myth-reality__truth-center-node {
    opacity: 0;
  }
  .students-myth-reality--grid .students-myth-reality__card--truth {
    transition: none;
  }
}
/* PHASE POLISH — Truth cards: TRUTH top-left, clear hover cue + “Hover to reveal” */
.students-myth-reality--grid .students-myth-reality__card--truth .students-myth-reality__card-label--truth {
  display: block;
  color: rgba(255, 255, 255, 0.98);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 var(--space-4);
  line-height: 1;
}
.students-myth-reality--grid .students-myth-reality__card--truth .students-myth-reality__card-hint {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
/* PHASE 7 — Truth: brighter text, key phrases emphasized, readable 3–4 lines, no paragraph wrap */
.students-myth-reality--grid .students-myth-reality__card--truth .students-myth-reality__card-text {
  margin: 0;
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.48;
  color: #000000;
  font-weight: 500;
  text-align: left;
  max-width: 100%;
  hyphens: none;
}
.students-myth-reality--grid .students-myth-reality__card--truth .students-myth-reality__card-text strong {
  font-weight: 600;
  color: #000000;
}
@media (prefers-reduced-motion: reduce) {
  .students-myth-reality--grid .students-myth-reality__column {
    transition: none;
  }
  .students-myth-reality--grid .students-myth-reality__grid:has(.students-myth-reality__card--truth:hover) .students-myth-reality__column:not(:has(.students-myth-reality__card--truth:hover)) {
    filter: none;
    opacity: 0.55;
  }
  .students-myth-reality--grid .students-myth-reality__column:has(.students-myth-reality__card--truth:hover) {
    transform: none;
  }
  .students-myth-reality--grid .students-myth-reality__signal-node {
    transition: none;
  }
  .students-myth-reality--grid .students-myth-reality__card--truth .students-myth-reality__card-inner {
    transition: none;
  }
  .students-myth-reality--grid .students-myth-reality__card--truth .students-myth-reality__card-face--back {
    transition: none;
  }
}
.students-myth-reality--grid .students-myth-reality__card-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FF2D2D;
  margin-bottom: var(--space-3);
}
.students-myth-reality--grid .students-myth-reality__card-text {
  margin: 0;
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
/* PHASE 9 — Section closing moment: strong message, "proof" in brand red; align left with logo (same as heading) */
.students-myth-reality--grid .students-myth-reality__close {
  margin: 0;
  margin-top: clamp(var(--space-24), 12vw, var(--space-40));
  margin-bottom: clamp(var(--space-28), 14vw, var(--space-48));
  text-align: left;
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding-left: calc(8vw + clamp(16px, 1.5vw, 28px));
  padding-right: clamp(16px, 1.5vw, 28px);
  box-sizing: border-box;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.92);
}
.students-myth-reality--grid .students-myth-reality__close-accent {
  color: #FF2D2D;
  font-weight: 700;
  text-shadow:
    0 0 24px rgba(255, 45, 45, 0.4),
    0 0 48px rgba(255, 45, 45, 0.25),
    0 0 16px rgba(255, 45, 45, 0.2);
}
/* Tablet: 2 columns, same row heights + connector */
@media (max-width: 1024px) {
  .students-myth-reality--grid .students-myth-reality__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
  }
  .students-myth-reality--grid .students-myth-reality__column {
    grid-template-rows: 180px 56px 290px;
    row-gap: 0;
  }
}
/* Mobile: 1 column, myth–truth pairs stacked, reduced row heights + connector */
@media (max-width: 767px) {
  .students-myth-reality--grid .students-myth-reality__grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 40px;
  }
  .students-myth-reality--grid .students-myth-reality__column {
    grid-template-rows: minmax(160px, auto) 56px minmax(260px, auto);
    row-gap: 0;
  }
  .students-myth-reality--grid .students-myth-reality__card--myth {
    min-height: 160px;
  }
  .students-myth-reality--grid .students-myth-reality__card--truth,
  .students-myth-reality--grid .students-myth-reality__card--truth .students-myth-reality__card-inner {
    min-height: 260px;
  }
}

/* ——— Students: Myth vs Reality REDESIGN (student-focused, wow factor) ——— */
.students-myth-reality--redesign {
  overflow: visible;
}
.students-myth-reality--redesign .students-myth-reality__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  padding-inline: var(--content-padding-inline);
  text-align: center;
}
.students-myth-reality--redesign .students-myth-reality__hero {
  margin-bottom: clamp(var(--space-16), 8vw, var(--space-24));
}
.students-myth-reality--redesign .students-myth-reality__headline {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 var(--space-6);
  max-width: 14ch;
  margin-inline: auto;
}
.students-myth-reality--redesign .students-myth-reality__headline-muted {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}
.students-myth-reality--redesign .students-myth-reality__lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  max-width: 32em;
  margin-inline: auto;
}
.students-myth-reality--redesign .students-myth-reality__accent {
  color: #FF2D2D;
  font-weight: 600;
}

/* Visual metaphor: what you build → narrows → one line (resume) */
.students-myth-reality--redesign .students-myth-reality__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: clamp(var(--space-20), 10vw, var(--space-32)) 0;
  padding-inline: var(--space-4);
}
.students-myth-reality--redesign .students-myth-reality__proof-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-end;
  text-align: right;
  min-width: 10rem;
}
.students-myth-reality--redesign .students-myth-reality__proof-item {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 28px rgba(255, 45, 45, 0.08), 0 2px 8px rgba(0, 0, 0, 0.2);
}
.students-myth-reality--redesign .students-myth-reality__proof-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 32px rgba(255, 45, 45, 0.1);
}
.students-myth-reality--redesign .students-myth-reality__funnel {
  flex: 1;
  max-width: 8rem;
  min-width: 4rem;
  height: 2px;
  margin: 0 var(--space-2);
  position: relative;
}
.students-myth-reality--redesign .students-myth-reality__funnel-line {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.04) 100%);
  border-radius: 1px;
}
.students-myth-reality--redesign .students-myth-reality__resume-line {
  font-size: clamp(0.75rem, 0.9vw, 0.8125rem);
  font-weight: 500;
  color: var(--text-on-dark-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 5rem;
  text-align: left;
  padding: var(--space-2) var(--space-3);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
}

.students-myth-reality--redesign .students-myth-reality__reframe {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 clamp(var(--space-20), 10vw, var(--space-28));
  letter-spacing: -0.02em;
}

/* Four truths: myth (muted) → reality (bold) */
.students-myth-reality--redesign .students-myth-reality__truths {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 28rem;
  margin-inline: auto;
  text-align: left;
  margin-bottom: clamp(var(--space-24), 12vw, var(--space-36));
}
.students-myth-reality--redesign .students-myth-reality__truth {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.5;
}
.students-myth-reality--redesign .students-myth-reality__myth {
  color: var(--text-on-dark-dim);
  text-decoration: line-through;
  font-weight: 400;
}
.students-myth-reality--redesign .students-myth-reality__reality {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin-left: 0.25em;
}

.students-myth-reality--redesign .students-myth-reality__close {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}
.students-myth-reality--redesign .students-myth-reality__close-accent {
  color: #FF2D2D;
  text-shadow: 0 0 40px rgba(255, 45, 45, 0.3);
}

@media (max-width: 767px) {
  .students-myth-reality--redesign .students-myth-reality__visual {
    flex-direction: column;
    gap: var(--space-6);
    margin: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  }
  .students-myth-reality--redesign .students-myth-reality__proof-list {
    align-items: center;
    text-align: center;
    min-width: auto;
  }
  .students-myth-reality--redesign .students-myth-reality__funnel {
    width: 2px;
    min-width: 2px;
    max-width: 2px;
    height: 3rem;
    margin: 0;
  }
  .students-myth-reality--redesign .students-myth-reality__funnel-line {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 100%);
  }
  .students-myth-reality--redesign .students-myth-reality__resume-line {
    text-align: center;
    min-width: auto;
  }
}

/* ----- Section 3: What Counts As Proof — layout and typography ----- */
#what-counts-as-proof {
  padding: var(--section-gap-y) 80px var(--section-gap-y);
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--border-1);
}

.proof-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: clamp(var(--space-4), 3vw, var(--space-8));
  margin-bottom: 80px;
  text-align: left;
}

.proof-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin-bottom: 18px;
  width: 100%;
}

.proof-label .eyebrow-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: blink 1.8s ease infinite;
}

.proof-headline {
  font-weight: 800;
  font-size: clamp(40px, 4.5vw, 58px);
  line-height: 1.06;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0;
  flex-shrink: 0;
}

.proof-headline em {
  font-style: normal;
  color: #FF2D2D;
}

.proof-subtext {
  font-size: 16px;
  color: var(--text-on-dark-dim);
  line-height: 1.5;
  padding-bottom: 6px;
  text-align: right;
  max-width: 28em;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .proof-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2, 0.5rem);
  }
  .proof-subtext {
    text-align: left;
  }
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
}

.proof-card {
  padding: 40px 36px;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #000000;
}

.proof-card:nth-child(4n) { border-right: none; }
.proof-card:nth-child(n+5) { border-bottom: none; }

.card-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 20px;
  display: block;
  opacity: 0.5;
}

.card-name {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 8px;
}

.card-phrase {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  line-height: 1.4;
}

.proof-closing {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proof-closing-text {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.proof-closing-text em {
  font-style: normal;
  color: #ffffff;
}

.proof-closing-cta {
  font-size: 14px;
  font-weight: 600;
  color: #FF2D2D;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,45,45,0.35);
  padding-bottom: 2px;
  letter-spacing: 0.3px;
}

.proof-closing-cta:hover {
  border-color: #FF2D2D;
}

/* Premium corner accent — thin L-shaped bracket, no red */
.proof-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.proof-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Subtle inner glow — neutral white, not red */
.proof-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.proof-card:hover::after {
  opacity: 1;
}

.proof-card:hover {
  background: rgba(255,255,255,0.02);
}

.proof-card:hover .card-icon {
  opacity: 1;
}

.proof-card:hover .card-phrase {
  color: rgba(255,255,255,0.5);
}

@media (max-width: 1024px) {
  body.page-students #what-counts-as-proof {
    padding-left: var(--inset);
    padding-right: var(--inset);
  }

  body.page-students .proof-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 32px;
  }

  body.page-students .proof-subtext {
    text-align: left;
    max-width: 100%;
  }

  body.page-students .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-students .proof-card:nth-child(4n) {
    border-right: 1px solid rgba(255,255,255,0.07);
  }

  body.page-students .proof-card:nth-child(2n) {
    border-right: none;
  }

  body.page-students .proof-card:nth-child(n+5) {
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  body.page-students .proof-card:nth-last-child(-n+2) {
    border-bottom: none;
  }

  body.page-students .proof-closing {
    margin-top: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 767px) {
  body.page-students #what-counts-as-proof {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  body.page-students .proof-headline {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 0.95;
  }

  body.page-students .proof-subtext {
    font-size: 14px;
    line-height: 1.55;
  }

  body.page-students .proof-grid {
    grid-template-columns: 1fr;
  }

  body.page-students .proof-card {
    padding: 24px 20px;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  }

  body.page-students .proof-card:last-child {
    border-bottom: none !important;
  }

  body.page-students .proof-closing-text {
    font-size: 17px;
    line-height: 1.45;
  }
}

/* Initial state: hidden until scroll-into-view (JS reveals) */
#what-counts-as-proof .proof-card {
  opacity: 0;
  transform: translateY(12px);
}

/* Transition on icon and phrase */
.card-icon {
  transition: opacity 0.25s ease;
}

.card-phrase {
  transition: color 0.25s ease;
}

/* ----- Section 4: Your Work Becomes Proof — layout only ----- */
.section-proof-journey {
  padding: var(--section-gap-y) 0 var(--section-gap-y);
  position: relative;
  border-top: 1px solid var(--border-1);
}

/* Header: breakout to align with nav (logo left, CTA button right) */
.journey-header {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 56px;
  padding-left: calc(8vw + clamp(16px, 1.5vw, 28px));
  padding-right: calc(8vw + clamp(16px, 1.5vw, 28px));
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

.section-proof-journey .section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin-bottom: 18px;
}

.journey-headline {
  font-weight: 800;
  font-size: clamp(40px, 4.5vw, 58px);
  line-height: 1.06;
  letter-spacing: -1px;
  color: #ffffff;
}

.journey-headline em {
  font-style: normal;
  color: #FF2D2D;
}

.journey-subtext {
  font-size: 16px;
  color: var(--text-on-dark-dim);
  line-height: 1.6;
  text-align: right;
  padding-bottom: 6px;
}

/* Sticky area: breakout to align with nav (logo left, CTA button right) */
.sticky-wrapper {
  position: relative;
  height: 400vh;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: calc(8vw + clamp(16px, 1.5vw, 28px));
  padding-right: calc(8vw + clamp(16px, 1.5vw, 28px));
  box-sizing: border-box;
}

.sticky-inner {
  position: sticky;
  top: 56px;
  height: calc(100vh - 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.steps-left {
  padding: 80px 0 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.steps-left::before {
  content: '';
  position: absolute;
  left: 113px;
  top: 80px;
  bottom: 80px;
  width: 1px;
  background: rgba(255,255,255,0.07);
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 32px 0;
  position: relative;
  cursor: pointer;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  margin-top: 8px;
  position: relative;
  z-index: 2;
}

.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-on-dark-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step-title {
  font-weight: 800;
  font-size: 26px;
  line-height: 1.1;
  color: var(--text-on-dark-muted);
  letter-spacing: -0.5px;
}

.step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0);
  line-height: 1.6;
  margin-top: 8px;
  max-width: 320px;
}

.steps-right {
  position: relative;
  border-left: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
}

.scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 80px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-hint-line {
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.step-progress {
  position: absolute;
  bottom: 48px;
  right: 48px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.progress-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.step-item.active .step-dot {
  background: #FF2D2D;
  border-color: #FF2D2D;
  box-shadow: 0 0 12px rgba(255,45,45,0.6);
}

.step-item.active .step-num {
  color: #FF2D2D;
}

.step-item.active .step-title {
  color: #ffffff;
}

.step-item.active .step-desc {
  color: rgba(255,255,255,0.45);
}

.step-visual.active {
  opacity: 1;
}

.progress-dot.active {
  background: #FF2D2D;
  transform: scale(1.3);
}

/* Step transitions */
.step-dot {
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.step-num {
  transition: color 0.4s ease;
}

.step-title {
  transition: color 0.4s ease;
}

.step-desc {
  transition: color 0.4s ease;
}

.step-visual {
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.step-visual.active {
  opacity: 1;
  transform: translateY(0);
}

.progress-dot {
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Visual 1 — floating tags */
.upload-tag {
  animation: tagFloat 3s ease-in-out infinite;
}
.upload-tag:nth-child(2) { animation-delay: 0.4s; }
.upload-tag:nth-child(3) { animation-delay: 0.8s; }
.upload-tag:nth-child(4) { animation-delay: 1.2s; }
.upload-tag:nth-child(5) { animation-delay: 0.6s; }

@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Visual 2 — bar pulse */
.signal-bar {
  animation: barPulse 2s ease-in-out infinite;
}
.signal-bar:nth-child(1) { animation-delay: 0s; }
.signal-bar:nth-child(2) { animation-delay: 0.2s; }
.signal-bar:nth-child(3) { animation-delay: 0.4s; }
.signal-bar:nth-child(4) { animation-delay: 0.6s; }
.signal-bar:nth-child(5) { animation-delay: 0.8s; }
.signal-bar:nth-child(6) { animation-delay: 1.0s; }

@keyframes barPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.signal-line-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #FF2D2D;
  border-radius: 2px;
  animation: lineFill 2s ease-in-out infinite;
}

@keyframes lineFill {
  0%, 100% { transform: scaleX(0.6); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
}

/* Visual 3 — ProofScore rings + glow */
.score-ring {
  animation: ringPulse 3s ease-in-out infinite;
}
.score-ring:nth-child(1) { animation-delay: 0s; }
.score-ring:nth-child(2) { animation-delay: 0.5s; }
.score-ring:nth-child(3) { animation-delay: 1s; }

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.03); opacity: 1; }
}

.score-number {
  animation: scoreGlow 3s ease-in-out infinite;
}

@keyframes scoreGlow {
  0%, 100% { text-shadow: 0 0 30px rgba(255,45,45,0.3), 0 0 60px rgba(255,45,45,0.1); }
  50% { text-shadow: 0 0 50px rgba(255,45,45,0.6), 0 0 100px rgba(255,45,45,0.25); }
}

/* Visual 4 — company rows slide in */
.company-row {
  opacity: 0;
  transform: translateX(16px);
}

.step-visual[data-visual="3"].active .company-row {
  animation: companySlide 0.5s ease forwards;
}
.step-visual[data-visual="3"].active .company-row:nth-child(1) { animation-delay: 0.1s; }
.step-visual[data-visual="3"].active .company-row:nth-child(2) { animation-delay: 0.25s; }
.step-visual[data-visual="3"].active .company-row:nth-child(3) { animation-delay: 0.4s; }
.step-visual[data-visual="3"].active .company-row:nth-child(4) { animation-delay: 0.55s; }

@keyframes companySlide {
  to { opacity: 1; transform: translateX(0); }
}

.company-action-dot {
  box-shadow: 0 0 6px rgba(255,45,45,0.8);
  animation: blink 1.2s ease-in-out infinite;
}
.company-row:nth-child(2) .company-action-dot { animation-delay: 0.3s; }
.company-row:nth-child(3) .company-action-dot { animation-delay: 0.6s; }
.company-row:nth-child(4) .company-action-dot { animation-delay: 0.9s; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Visual 1 — Upload */
.visual-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.upload-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 340px;
}

.upload-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.upload-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF2D2D;
  opacity: 0.7;
}

.upload-arrow {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,45,45,0.6), rgba(255,45,45,0));
}

.upload-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

/* Visual 2 — Analyse */
.visual-analyse {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}

.signal-bar {
  width: 28px;
  border-radius: 4px 4px 0 0;
  background: rgba(255,45,45,0.15);
  border: 1px solid rgba(255,45,45,0.25);
}

.signal-bar:nth-child(1) { height: 40%; }
.signal-bar:nth-child(2) { height: 70%; }
.signal-bar:nth-child(3) { height: 55%; }
.signal-bar:nth-child(4) { height: 90%; background: rgba(255,45,45,0.3); border-color: rgba(255,45,45,0.5); }
.signal-bar:nth-child(5) { height: 65%; }
.signal-bar:nth-child(6) { height: 45%; }

.analyse-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
}

.signal-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 220px;
}

.signal-line-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.signal-line-label {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  width: 80px;
  text-align: right;
}

.signal-line-bar {
  height: 3px;
  border-radius: 2px;
  background: rgba(255,45,45,0.3);
  position: relative;
  overflow: hidden;
}

/* Visual 3 — ProofScore */
.visual-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.score-rings {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,45,45,0.15);
}

.score-ring:nth-child(1) { width: 200px; height: 200px; }
.score-ring:nth-child(2) { width: 155px; height: 155px; border-color: rgba(255,45,45,0.25); }
.score-ring:nth-child(3) { width: 110px; height: 110px; border-color: rgba(255,45,45,0.4); }

.score-number {
  font-weight: 900;
  font-size: 80px;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -2px;
  position: relative;
  z-index: 2;
}

.score-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FF2D2D;
  font-weight: 700;
}

.score-tag {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}

/* Visual 4 — Discovered */
.visual-discovered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.discovered-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
}

.company-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 280px;
}

.company-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
}

.company-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.company-action {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #FF2D2D;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.company-action-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FF2D2D;
}

/* ----- Section 5: The Students Who Win — layout and typography ----- */
#students-who-win {
  padding: var(--section-gap-y) 0 var(--section-gap-y);
  overflow: hidden;
  border-top: 1px solid var(--border-1);
}

/* Header: breakout to align with nav (logo left, CTA button right) */
.underdogs-header {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 80px;
  padding-left: calc(8vw + clamp(16px, 1.5vw, 28px));
  padding-right: calc(8vw + clamp(16px, 1.5vw, 28px));
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

.section-underdogs .section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin-bottom: 18px;
}

.section-underdogs .section-label .eyebrow-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: blink 1.8s ease infinite;
}

.underdogs-headline {
  font-weight: 800;
  font-size: clamp(40px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #ffffff;
}

.underdogs-headline em {
  font-style: normal;
  color: #FF2D2D;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
  padding-bottom: 4px;
}

.header-subtext {
  font-size: 16px;
  color: var(--text-on-dark-dim);
  line-height: 1.6;
  text-align: right;
}

/* Carousel: breakout to align with nav (logo left, CTA button right) */
.carousel-shell {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: calc(8vw + clamp(16px, 1.5vw, 28px));
  padding-right: calc(8vw + clamp(16px, 1.5vw, 28px));
  box-sizing: border-box;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Strict viewport: only one slide visible at a time */
.carousel-viewport {
  width: 100%;
  overflow: hidden;
}

.slides-track {
  display: flex;
  will-change: transform;
  width: 300%;
  flex-wrap: nowrap;
}

.story-slide {
  flex: 0 0 33.333%;
  min-width: 33.333%;
  max-width: 33.333%;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 72px;
  align-items: start;
  box-sizing: border-box;
}

.story-identity {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.story-file-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  font-weight: 600;
}

.story-name {
  font-weight: 800;
  font-size: 24px;
  color: #ffffff;
  letter-spacing: -0.4px;
  line-height: 1.1;
}

.story-college {
  font-size: 12px;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
}

.story-outcome-pill {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
}

.outcome-pill-company {
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
}

.outcome-pill-role {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.4;
}

.outcome-pill-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FF2D2D;
  margin-top: 4px;
  opacity: 0.8;
}

.story-before {
  padding-left: 32px;
  border-left: 1px solid rgba(255,255,255,0.07);
}

.story-after {
  padding-left: 32px;
  border-left: 1px solid rgba(255,255,255,0.07);
}

.col-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin-bottom: 24px;
  font-weight: 600;
}

.after-col-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FF2D2D;
  margin-bottom: 24px;
  font-weight: 600;
  opacity: 0.7;
}

.before-quote {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.before-quote strong {
  color: #ffffff;
  font-weight: 900;
}

.before-context {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  line-height: 1.75;
  max-width: 360px;
}

.after-quote {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.after-quote strong {
  color: #ffffff;
  font-weight: 900;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.proof-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-on-dark-dim);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
}

/* Carousel nav: breakout to align with nav (logo left, CTA button right) */
.carousel-nav {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 32px calc(8vw + clamp(16px, 1.5vw, 28px)) 32px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.nav-indicators {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  opacity: 0.3;
}

.nav-indicator.active {
  opacity: 1;
}

.indicator-line {
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

.nav-indicator.active .indicator-line {
  width: 40px;
  background: #FF2D2D;
}

.indicator-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.nav-indicator.active .indicator-name {
  color: #ffffff;
}

.nav-arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-counter {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--text-on-dark-dim);
  min-width: 48px;
  text-align: center;
}

.nav-counter span {
  color: rgba(255,255,255,0.6);
}

.nav-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.nav-arrow.disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

/* Footer: breakout to align with nav (logo left, CTA button right) */
.underdogs-footer {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 56px calc(8vw + clamp(16px, 1.5vw, 28px)) 100px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-manifesto {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.footer-manifesto em {
  font-style: normal;
  color: #ffffff;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FF2D2D;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
}

/* Track transition — cinematic easing */
.slides-track {
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Indicator transitions */
.nav-indicator {
  transition: opacity 0.3s ease;
}

.indicator-line {
  transition: width 0.4s ease, background 0.3s ease;
}

.indicator-name {
  transition: color 0.3s ease;
}

/* Arrow hover */
.nav-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav-arrow:hover::before { opacity: 1; }

.nav-arrow:hover {
  border-color: var(--text-on-dark-muted);
  transform: scale(1.05);
}

.nav-arrow:active {
  transform: scale(0.96);
}

.nav-arrow {
  transition: border-color 0.25s ease, transform 0.2s ease;
}

/* Footer CTA hover */
.footer-cta {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(255,45,45,0.3);
}

@media (max-width: 1024px) {
  #students-who-win .underdogs-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 34px;
    padding-left: var(--inset);
    padding-right: var(--inset);
  }

  #students-who-win .header-right {
    width: 100%;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    padding-bottom: 0;
  }

  #students-who-win .header-subtext {
    text-align: left;
  }

  #students-who-win .carousel-shell {
    padding-left: var(--inset);
    padding-right: var(--inset);
  }

  #students-who-win .story-slide {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px 0;
  }

  #students-who-win .story-before,
  #students-who-win .story-after {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 16px;
  }

  #students-who-win .carousel-nav {
    padding: 20px var(--inset);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  body.page-students .st-s7 {
    height: auto;
    min-height: unset;
    padding: 32px var(--inset) 40px;
    justify-content: flex-start;
    overflow: visible;
  }

  body.page-students .st-s7-content {
    max-width: 100%;
  }

  body.page-students .st-s7-waitlist-count {
    position: static;
    text-align: left;
    margin: 8px 0 18px;
  }

  body.page-students .st-s7-paths {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  #students-who-win .underdogs-headline {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
    line-height: 0.95;
  }

  #students-who-win .story-name {
    font-size: 22px;
  }

  #students-who-win .before-quote,
  #students-who-win .after-quote {
    font-size: clamp(1.9rem, 8.8vw, 2.6rem);
    line-height: 1.2;
  }

  #students-who-win .before-context {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.65;
  }

  #students-who-win .nav-indicators {
    gap: 10px;
    flex-wrap: wrap;
  }

  #students-who-win .nav-arrow {
    width: 40px;
    height: 40px;
  }

  body.page-students .st-s7-headline {
    font-size: clamp(2.3rem, 12vw, 3.8rem);
    line-height: 0.92;
  }

  body.page-students .st-s7-hl-ghost {
    white-space: normal;
  }

  body.page-students .st-s7-framing {
    font-size: 14px;
    line-height: 1.55;
  }

  body.page-students .st-path-college,
  body.page-students .st-path-waitlist {
    padding: 16px 16px;
  }

  body.page-students .st-s7-bottom-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  body.page-students .st-s7-trust-items {
    gap: 10px;
  }
}

@keyframes s5ContentFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header entrance */
#students-who-win .underdogs-header {
  opacity: 0;
  transform: translateY(16px);
  animation: s5ContentFadeUp 0.6s ease 0.1s forwards;
}

/* Staggered column entrance on active slide */
.story-slide.is-entering .story-identity,
.story-slide.is-entering .story-before,
.story-slide.is-entering .story-after {
  animation: s5ContentFadeUp 0.55s ease forwards;
  opacity: 0;
}

.story-slide.is-entering .story-identity { animation-delay: 0.1s; }
.story-slide.is-entering .story-before   { animation-delay: 0.2s; }
.story-slide.is-entering .story-after    { animation-delay: 0.3s; }

/* ----- Section 6: The Death of the Résumé — layout and typography ----- */
#death-of-resume {
  padding-top: 140px;
  padding-bottom: 140px;
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--content-padding-inline);
  padding-right: var(--content-padding-inline);
  border-top: 1px solid var(--border-1);
}

/* Header: breakout to align with nav (logo left, CTA button right) */
#death-of-resume .tl-header {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 80px;
  padding-left: calc(8vw + clamp(16px, 1.5vw, 28px));
  padding-right: calc(8vw + clamp(16px, 1.5vw, 28px));
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
}

#death-of-resume .tl-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

#death-of-resume .tl-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(40px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
}

#death-of-resume .tl-headline .dead-word {
  color: var(--text-on-dark-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.5);
  text-decoration-thickness: 3px;
}

#death-of-resume .tl-headline em {
  font-style: normal;
  color: #fff;
}

#death-of-resume .tl-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  padding-bottom: 8px;
}

#death-of-resume .tl-verdict {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  text-align: right;
}

#death-of-resume .tl-verdict strong {
  color: #fff;
  font-weight: 700;
}

/* Stage — breakout to align with nav (logo left, CTA button right) */
#death-of-resume .tl-stage {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: calc(8vw + clamp(16px, 1.5vw, 28px));
  padding-right: calc(8vw + clamp(16px, 1.5vw, 28px));
  box-sizing: border-box;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

/* Red cursor line */
#death-of-resume .tl-cursor {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,45,45,0.9) 15%,
    #FF2D2D 50%,
    rgba(255,45,45,0.9) 85%,
    transparent 100%
  );
  box-shadow: 0 0 14px rgba(255,45,45,0.7), 0 0 28px rgba(255,45,45,0.2);
  pointer-events: none;
  z-index: 10;
  left: 0%;
}

/* 5-column grid — constrained to section width */
#death-of-resume .tl-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  max-width: 100%;
}

/* Each column */
#death-of-resume .era {
  padding: 60px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  position: relative;
}

#death-of-resume .era:last-child { border-right: none; }

/* Dead eras */
#death-of-resume .era.dead { background: #000; }

/* NOW era */
#death-of-resume .era.now { background: rgba(255,45,45,0.03); }

#death-of-resume .era.now::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(255,45,45,0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* Year label */
#death-of-resume .era-year {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#death-of-resume .era.dead .era-year { color: rgba(255,255,255,0.5); }
#death-of-resume .era.now  .era-year { color: #FF2D2D; }

#death-of-resume .era-year-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* Icon */
#death-of-resume .era-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  flex-shrink: 0;
}

#death-of-resume .era.dead .era-icon { opacity: 0.4; }
#death-of-resume .era.now  .era-icon { opacity: 1; }

/* Big word */
#death-of-resume .era-word {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 0.92;
  letter-spacing: -2px;
  display: block;
  position: relative;
  margin-bottom: 14px;
}

#death-of-resume .era.dead .era-word {
  color: rgba(255,255,255,0.5);
}

#death-of-resume .era.dead .era-word::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 2px;
  background: rgba(255,255,255,0.35);
  transform: translateY(-50%);
}

#death-of-resume .era.now .era-word { color: #FF2D2D; }

/* Subword */
#death-of-resume .era-sub {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  margin-bottom: auto;
  padding-bottom: 32px;
}

#death-of-resume .era.now .era-sub { color: rgba(255,255,255,0.55); }

/* Cause of death block */
#death-of-resume .era-cod {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
}

#death-of-resume .era.now .era-cod {
  border-top-color: rgba(255,45,45,0.2);
}

#death-of-resume .era-cod-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}

#death-of-resume .era.now .era-cod-label {
  color: rgba(255,255,255,0.45);
}

#death-of-resume .era-cod-text {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
}

#death-of-resume .era.now .era-cod-text {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

/* Footer */
/* Footer: breakout to align with nav (logo left, CTA button right) */
#death-of-resume .tl-footer {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 72px calc(8vw + clamp(16px, 1.5vw, 28px)) 100px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

#death-of-resume .footer-closing {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -1px;
}

#death-of-resume .footer-closing .strike {
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.4);
  text-decoration-thickness: 2px;
}

#death-of-resume .footer-closing em {
  font-style: normal;
  color: #fff;
}

#death-of-resume .footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

#death-of-resume .footer-desc {
  font-size: 14px;
  color: var(--text-on-dark-dim);
  line-height: 1.7;
  text-align: right;
  max-width: 340px;
}

#death-of-resume .footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FF2D2D;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
}

/* Dead era hover */
#death-of-resume .era.dead {
  transition: background 0.3s ease;
}
#death-of-resume .era.dead:hover {
  background: rgba(255,255,255,0.015);
}

/* Footer CTA hover */
#death-of-resume .footer-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#death-of-resume .footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,45,45,0.4);
}

/* NOW dot pulse */
#death-of-resume .era.now .era-year-dot {
  animation: tlDotPulse 2s ease-in-out infinite;
}

@keyframes tlDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,45,45,0.8); }
  70%  { box-shadow: 0 0 0 8px rgba(255,45,45,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,45,45,0); }
}

@keyframes tlEraIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

#death-of-resume .tl-header {
  opacity: 0;
  animation: tlEraIn 0.6s ease 0.1s forwards;
}

#death-of-resume .era.dead {
  opacity: 0;
  animation: tlEraIn 0.65s ease forwards;
}

#death-of-resume .era:nth-child(1) { animation-delay: 0.10s; }
#death-of-resume .era:nth-child(2) { animation-delay: 0.20s; }
#death-of-resume .era:nth-child(3) { animation-delay: 0.30s; }
#death-of-resume .era:nth-child(4) { animation-delay: 0.40s; }

#death-of-resume .era.now {
  opacity: 0;
  animation: tlEraIn 0.8s ease 0.55s forwards;
}

#death-of-resume .tl-footer {
  opacity: 0;
  animation: tlEraIn 0.7s ease 0.7s forwards;
}

/* ----- Section 7: Join Early Access — layout and typography ----- */
#join-early-access {
  padding: var(--section-gap-y) 0 var(--section-gap-y);
  border-top: 1px solid var(--border-1);
}

/* Header: breakout to align with nav (logo left, CTA button right) */
#join-early-access .early-header {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 100px;
  padding-left: calc(8vw + clamp(16px, 1.5vw, 28px));
  padding-right: calc(8vw + clamp(16px, 1.5vw, 28px));
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

#join-early-access .section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin-bottom: 18px;
}

#join-early-access .early-headline {
  font-weight: 800;
  font-size: clamp(40px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
}

#join-early-access .early-headline em {
  font-style: normal;
  color: #FF2D2D;
}

#join-early-access .early-subtext {
  font-size: 16px;
  color: var(--text-on-dark-dim);
  line-height: 1.6;
  text-align: right;
  padding-bottom: 6px;
}

#join-early-access .early-subtext strong {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

/* Stats row: breakout to align with nav (logo left, CTA right) */
#join-early-access .stats-row {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-left: calc(8vw + clamp(16px, 1.5vw, 28px));
  padding-right: calc(8vw + clamp(16px, 1.5vw, 28px));
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

#join-early-access .stat-block {
  padding: 64px 80px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease;
}

#join-early-access .stat-block + .stat-block {
  border-left: 1px solid rgba(255,255,255,0.07);
}

#join-early-access .stat-number {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(56px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 16px;
  transition: text-shadow 0.35s ease;
}

#join-early-access .stat-number em {
  font-style: normal;
  color: #FF2D2D;
}

#join-early-access .stat-desc {
  font-size: 15px;
  color: var(--text-on-dark-dim);
  line-height: 1.6;
  max-width: 260px;
  font-weight: 500;
}

#join-early-access .stat-desc strong {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

#join-early-access .stat-note {
  font-size: 10px;
  color: var(--text-on-dark-soft);
  letter-spacing: 1px;
  margin-top: 16px;
  text-transform: uppercase;
}

/* Feed section: breakout to align with nav (logo left, CTA right) */
#join-early-access .feed-section {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: var(--section-gap-y) calc(8vw + clamp(16px, 1.5vw, 28px));
  box-sizing: border-box;
}

#join-early-access .feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

#join-early-access .feed-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

#join-early-access .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF2D2D;
  box-shadow: 0 0 8px rgba(255,45,45,0.8);
}

#join-early-access .feed-title-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

#join-early-access .feed-meta {
  font-size: 12px;
  color: var(--text-on-dark-dim);
  letter-spacing: 0.5px;
}

#join-early-access .feed-list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}

#join-early-access .feed-item {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

#join-early-access .feed-item:last-child { border-bottom: none; }

#join-early-access .feed-item.new-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: #FF2D2D;
  opacity: 0.5;
}

#join-early-access .feed-student {
  display: flex;
  align-items: center;
  gap: 12px;
}

#join-early-access .student-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  font-family: var(--font-sans);
  letter-spacing: 0.5px;
}

#join-early-access .student-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#join-early-access .student-city {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

#join-early-access .student-college {
  font-size: 11px;
  color: var(--text-on-dark-muted);
}

#join-early-access .feed-action {
  font-size: 13px;
  color: var(--text-on-dark-dim);
}

#join-early-access .feed-action strong {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

#join-early-access .feed-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

#join-early-access .feed-new-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FF2D2D;
  background: rgba(255,45,45,0.08);
  border: 1px solid rgba(255,45,45,0.2);
  border-radius: 3px;
  padding: 2px 7px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#join-early-access .feed-item.new-item .feed-new-badge { opacity: 1; }

#join-early-access .feed-time {
  font-size: 11px;
  color: var(--text-on-dark-soft);
  white-space: nowrap;
}

/* Footer: breakout to align with nav (logo left, CTA right) */
#join-early-access .early-footer {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 72px calc(8vw + clamp(16px, 1.5vw, 28px)) 100px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.07);
}

#join-early-access .footer-statement {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

#join-early-access .footer-statement em {
  font-style: normal;
  color: #fff;
}

#join-early-access .footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

#join-early-access .footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FF2D2D;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

#join-early-access .footer-microcopy {
  font-size: 12px;
  color: var(--text-on-dark-dim);
  display: flex;
  gap: 16px;
}

#join-early-access .footer-microcopy span {
  display: flex;
  align-items: center;
  gap: 5px;
}

#join-early-access .footer-microcopy span::before {
  content: '✓';
  color: var(--text-on-dark-dim);
  font-size: 10px;
}

/* Section 7 — hover and transitions */
#join-early-access .stat-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(255,45,45,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

#join-early-access .stat-block:hover::after { opacity: 1; }
#join-early-access .stat-block:hover { background: rgba(255,255,255,0.015); }

#join-early-access .stat-block:hover .stat-number {
  text-shadow: 0 0 40px rgba(255,45,45,0.25);
}

#join-early-access .feed-item {
  transition: background 0.25s ease;
}
#join-early-access .feed-item:hover { background: rgba(255,255,255,0.02); }

#join-early-access .footer-cta {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#join-early-access .footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,45,45,0.4);
}

#join-early-access .live-dot {
  animation: s7LivePulse 1.5s ease-in-out infinite;
}

@keyframes s7LivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Section 7 — entrance animations */
@keyframes s7FadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

#join-early-access .early-header {
  opacity: 0;
  animation: s7FadeUp 0.6s ease 0.1s forwards;
}

#join-early-access .stat-block {
  opacity: 0;
  animation: s7FadeUp 0.6s ease forwards;
}
#join-early-access .stat-block:nth-child(1) { animation-delay: 0.10s; }
#join-early-access .stat-block:nth-child(2) { animation-delay: 0.20s; }
#join-early-access .stat-block:nth-child(3) { animation-delay: 0.30s; }

#join-early-access .feed-item {
  opacity: 0;
  animation: s7FadeUp 0.5s ease forwards;
}
#join-early-access .feed-item:nth-child(1) { animation-delay: 0.35s; }
#join-early-access .feed-item:nth-child(2) { animation-delay: 0.42s; }
#join-early-access .feed-item:nth-child(3) { animation-delay: 0.49s; }
#join-early-access .feed-item:nth-child(4) { animation-delay: 0.56s; }
#join-early-access .feed-item:nth-child(5) { animation-delay: 0.63s; }
#join-early-access .feed-item:nth-child(6) { animation-delay: 0.70s; }

#join-early-access .early-footer {
  opacity: 0;
  animation: s7FadeUp 0.6s ease 0.8s forwards;
}

/* ----- Proof signals: "What counts as proof?" — structure only (PHASE 1) ----- */
.proof-signals {
  background: #0a0a0b;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: clamp(var(--space-32), 14vw, var(--space-48));
  padding-inline: var(--content-padding-inline);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.proof-signals__inner {
  width: 100%;
  max-width: var(--content-max-width);
  margin-inline: auto;
  text-align: center;
}
.proof-signals__head {
  margin: 0 0 clamp(var(--space-24), 10vw, var(--space-36));
}
.proof-signals__title {
  margin: 0 0 clamp(var(--space-4), 2vw, var(--space-6));
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transform: translateY(8px);
}
.proof-signals__lead {
  margin: 0;
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 400;
  max-width: 36em;
  margin-inline: auto;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(6px);
}
/* PHASE 6 — Scroll reveal: title → first nodes → remaining nodes → lines (staggered, calm) */
@keyframes proof-signals-title-in {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes proof-signals-lead-in {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes proof-signals-node-in {
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes proof-signals-lines-in {
  to { opacity: 1; }
}
.proof-signals--visible .proof-signals__title {
  animation: proof-signals-title-in 0.55s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.proof-signals--visible .proof-signals__lead {
  animation: proof-signals-lead-in 0.45s cubic-bezier(0.33, 1, 0.68, 1) 0.18s forwards;
}
.proof-signals__node {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
}
.proof-signals--visible .proof-signals__node--1,
.proof-signals--visible .proof-signals__node--4,
.proof-signals--visible .proof-signals__node--5 {
  animation: proof-signals-node-in 0.45s cubic-bezier(0.33, 1, 0.68, 1) 0.38s forwards;
}
.proof-signals--visible .proof-signals__node--2 {
  animation: proof-signals-node-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.58s forwards;
}
.proof-signals--visible .proof-signals__node--3 {
  animation: proof-signals-node-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.72s forwards;
}
.proof-signals--visible .proof-signals__node--6 {
  animation: proof-signals-node-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.86s forwards;
}
.proof-signals--visible .proof-signals__node--7 {
  animation: proof-signals-node-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) 1s forwards;
}
.proof-signals--visible .proof-signals__node--8 {
  animation: proof-signals-node-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) 1.14s forwards;
}
.proof-signals--visible .proof-signals__node--9 {
  animation: proof-signals-node-in 0.4s cubic-bezier(0.33, 1, 0.68, 1) 1.28s forwards;
}
.proof-signals__line {
  opacity: 0;
}
.proof-signals--visible .proof-signals__line {
  animation: proof-signals-lines-in 0.55s cubic-bezier(0.33, 1, 0.68, 1) 1.2s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .proof-signals__title,
  .proof-signals__lead,
  .proof-signals__node,
  .proof-signals__line {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .proof-signals__node {
    transform: translate(-50%, -50%);
  }
}
/* PHASE 2 — Signal map: constellation-style node layout (no animations) */
.proof-signals__map {
  position: relative;
  width: 100%;
  min-height: 420px;
  margin-bottom: clamp(var(--space-24), 10vw, var(--space-36));
}
/* PHASE 3 — Connection lines: thin, low-opacity, slight glow (no animation) */
.proof-signals__connectors {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
/* PHASE 8 — Connector lines: optimized brightness, minimal glow, clean */
.proof-signals__line {
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1;
  stroke-linecap: round;
  fill: none;
  filter: url(#proof-signals-line-glow);
  opacity: 0;
}
/* PHASE 5 — Pulse dots: subtle, slow, staggered (SVG animateMotion) */
.proof-signals__pulse {
  opacity: 0.78;
  vector-effect: non-scaling-stroke;
}
@media (prefers-reduced-motion: reduce) {
  .proof-signals__pulse {
    opacity: 0;
    visibility: hidden;
  }
}
.proof-signals__node {
  z-index: 1;
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
/* PHASE 8 — Node cards: refined glow, crisp border, consistent radius, readable type */
.proof-signals__node-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  background: rgba(16, 16, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02), 0 2px 12px rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.018em;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  padding: 0.5rem 1rem;
  transition: transform 0.26s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.26s ease, border-color 0.22s ease;
}
.proof-signals__node:hover .proof-signals__node-label {
  transform: scale(1.04);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 28px rgba(255, 255, 255, 0.04);
  border-color: var(--text-on-dark-faint);
}
.proof-signals__node--large .proof-signals__node-label {
  font-size: 0.9375rem;
  padding: 0.625rem 1.25rem;
  min-width: 6rem;
}
.proof-signals__node--small .proof-signals__node-label {
  font-size: 0.75rem;
  padding: 0.375rem 0.875rem;
  min-width: 4.5rem;
}
/* PHASE 4 + 8 — Reveal panel: smooth hover, consistent radius (12px), minimal glow */
.proof-signals__node-reveal {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 6px);
  margin-top: 0.5rem;
  min-width: 14rem;
  max-width: 18rem;
  padding: 0.875rem 1rem;
  background: rgba(14, 14, 16, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 6px 24px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s cubic-bezier(0.33, 1, 0.68, 1), transform 0.28s cubic-bezier(0.33, 1, 0.68, 1), visibility 0s linear 0.28s;
  text-align: left;
  pointer-events: none;
  z-index: 2;
}
.proof-signals__node:hover .proof-signals__node-reveal {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}
.proof-signals__node-reveal-title {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
.proof-signals__node-reveal-heading {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 0.25rem;
}
.proof-signals__node-reveal-list {
  margin: 0 0 0.5rem;
  padding-left: 1rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  -webkit-font-smoothing: antialiased;
}
.proof-signals__node-reveal-list li {
  margin-bottom: 0.125rem;
}
.proof-signals__node-reveal-impact {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 45, 45, 0.92);
  margin-top: 0.25rem;
}
@media (prefers-reduced-motion: reduce) {
  .proof-signals__node-label {
    transition: none;
  }
  .proof-signals__node:hover .proof-signals__node-label {
    transform: none;
  }
  .proof-signals__node-reveal {
    transition: opacity 0.2s ease;
  }
  .proof-signals__node:hover .proof-signals__node-reveal {
    transform: translate(-50%, 0);
  }
}
/* PHASE 8 — Constellation positions: balanced spacing, no clutter */
.proof-signals__node--1 { left: 22%; top: 17%; }
.proof-signals__node--2 { left: 10%; top: 42%; }
.proof-signals__node--3 { left: 36%; top: 10%; }
.proof-signals__node--4 { left: 50%; top: 44%; }
.proof-signals__node--5 { left: 76%; top: 48%; }
.proof-signals__node--6 { left: 80%; top: 22%; }
.proof-signals__node--7 { left: 86%; top: 70%; }
.proof-signals__node--8 { left: 24%; top: 76%; }
.proof-signals__node--9 { left: 12%; top: 86%; }
/* PHASE 7 + 8 — Closing message: crisp type, emphasize "proof", minimal glow */
.proof-signals__close {
  margin: 0;
  margin-top: clamp(var(--space-28), 12vw, var(--space-40));
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 28em;
  margin-inline: auto;
  -webkit-font-smoothing: antialiased;
}
.proof-signals__close-accent {
  color: #FF2D2D;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(255, 45, 45, 0.28), 0 0 8px rgba(255, 45, 45, 0.15);
}

/* Students: visibility statement — directly below hero, same design language */
.students-visibility {
  background: #0b0b0f;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: clamp(var(--space-20), 10vw, var(--space-28));
  padding-inline: var(--content-padding-inline);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.students-visibility__inner {
  width: 100%;
  max-width: var(--content-max-width);
  margin-inline: auto;
  text-align: center;
}
.students-visibility__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 auto var(--space-8);
  max-width: 18em;
  opacity: 0;
  transform: translateY(12px);
}
.students-visibility__lead {
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  margin: 0;
  max-width: 36em;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(12px);
}
@keyframes students-visibility-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.students-visibility--visible .students-visibility__title {
  animation: students-visibility-reveal 0.55s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.students-visibility--visible .students-visibility__lead {
  animation: students-visibility-reveal 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0.12s forwards;
}
.students-visibility--visible .students-visibility__close {
  animation: students-visibility-reveal 0.5s cubic-bezier(0.33, 1, 0.68, 1) 3.2s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .students-visibility__title,
  .students-visibility__lead,
  .students-visibility__close,
  .students-visibility__compare,
  .students-visibility__col--left .students-visibility__col-title,
  .students-visibility__col--left .students-visibility__signals li,
  .students-visibility__col--right .students-visibility__col-title,
  .students-visibility__col--right .students-visibility__signals {
    opacity: 1;
    transform: none;
  }
  .students-visibility__signal-attempt-dot {
    opacity: 0;
  }
  .students-visibility--visible .students-visibility__title,
  .students-visibility--visible .students-visibility__lead,
  .students-visibility--visible .students-visibility__compare,
  .students-visibility--visible .students-visibility__close,
  .students-visibility--visible .students-visibility__col--left .students-visibility__col-title,
  .students-visibility--visible .students-visibility__col--left .students-visibility__signals li,
  .students-visibility--visible .students-visibility__col--right .students-visibility__col-title,
  .students-visibility--visible .students-visibility__col--right .students-visibility__signals,
  .students-visibility--visible .students-visibility__col--left .students-visibility__signals li::before,
  .students-visibility--visible .students-visibility__signal-attempt-dot {
    animation: none;
  }
}

/* Two-column contrast — spacious, minimal, no cards */
.students-visibility__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-16), 12vw, var(--space-24));
  margin-top: clamp(var(--space-16), 10vw, var(--space-24));
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
  position: relative;
}
.students-visibility__col--left .students-visibility__col-title {
  opacity: 0;
  transform: translateY(10px);
}
.students-visibility--visible .students-visibility__col--left .students-visibility__col-title {
  animation: students-visibility-reveal 0.45s cubic-bezier(0.33, 1, 0.68, 1) 0.2s forwards;
}
.students-visibility__col--left .students-visibility__signals li {
  opacity: 0;
  transform: translateY(8px);
}
.students-visibility--visible .students-visibility__col--left .students-visibility__signals li:nth-child(1) { animation: students-visibility-reveal 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.32s forwards; }
.students-visibility--visible .students-visibility__col--left .students-visibility__signals li:nth-child(2) { animation: students-visibility-reveal 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.45s forwards; }
.students-visibility--visible .students-visibility__col--left .students-visibility__signals li:nth-child(3) { animation: students-visibility-reveal 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.58s forwards; }
.students-visibility--visible .students-visibility__col--left .students-visibility__signals li:nth-child(4) { animation: students-visibility-reveal 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.71s forwards; }
.students-visibility--visible .students-visibility__col--left .students-visibility__signals li:nth-child(5) { animation: students-visibility-reveal 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.84s forwards; }
.students-visibility--visible .students-visibility__col--left .students-visibility__signals li:nth-child(6) { animation: students-visibility-reveal 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.97s forwards; }
.students-visibility--visible .students-visibility__col--left .students-visibility__signals li:nth-child(1)::before { animation: students-visibility-dot-glow 0.65s ease-out 0.32s forwards; }
.students-visibility--visible .students-visibility__col--left .students-visibility__signals li:nth-child(2)::before { animation: students-visibility-dot-glow 0.65s ease-out 0.45s forwards; }
.students-visibility--visible .students-visibility__col--left .students-visibility__signals li:nth-child(3)::before { animation: students-visibility-dot-glow 0.65s ease-out 0.58s forwards; }
.students-visibility--visible .students-visibility__col--left .students-visibility__signals li:nth-child(4)::before { animation: students-visibility-dot-glow 0.65s ease-out 0.71s forwards; }
.students-visibility--visible .students-visibility__col--left .students-visibility__signals li:nth-child(5)::before { animation: students-visibility-dot-glow 0.65s ease-out 0.84s forwards; }
.students-visibility--visible .students-visibility__col--left .students-visibility__signals li:nth-child(6)::before { animation: students-visibility-dot-glow 0.65s ease-out 0.97s forwards; }
@keyframes students-visibility-dot-glow {
  0% { opacity: 0.7; filter: brightness(1); }
  40% { opacity: 1; filter: brightness(1.5); }
  100% { opacity: 1; filter: brightness(1); }
}
.students-visibility__signal-attempt {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  pointer-events: none;
  z-index: 0;
}
.students-visibility__col--left,
.students-visibility__col--right {
  position: relative;
  z-index: 1;
}
.students-visibility__signal-attempt-line {
  position: absolute;
  left: 15%;
  right: 15%;
  top: 50%;
  height: 1px;
  margin-top: -0.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 20%, rgba(255, 255, 255, 0.04) 80%, transparent 100%);
}
.students-visibility__signal-attempt-dot {
  position: absolute;
  left: 15%;
  top: 50%;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: rgba(255, 45, 45, 0.4);
  box-shadow: 0 0 10px rgba(255, 45, 45, 0.2);
  opacity: 0;
}
.students-visibility--visible .students-visibility__signal-attempt-dot {
  animation: students-visibility-signal-attempt 2s cubic-bezier(0.25, 0.1, 0.25, 1) 1.5s forwards;
}
@keyframes students-visibility-signal-attempt {
  0% { left: 15%; opacity: 0; }
  8% { left: 18%; opacity: 0.5; }
  50% { left: 48%; opacity: 0.25; }
  75% { left: 72%; opacity: 0.08; }
  100% { left: 82%; opacity: 0; }
}
.students-visibility__col-title {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(var(--space-6), 4vw, var(--space-8));
  line-height: 1.3;
}
.students-visibility__col--left .students-visibility__col-title {
  color: rgba(255, 255, 255, 0.9);
}
.students-visibility__col--right .students-visibility__col-title {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
}
.students-visibility--visible .students-visibility__col--right .students-visibility__col-title {
  animation: students-visibility-reveal 0.45s cubic-bezier(0.33, 1, 0.68, 1) 1.1s forwards;
}
.students-visibility__col--right .students-visibility__signals {
  opacity: 0;
  transform: translateY(8px);
}
.students-visibility--visible .students-visibility__col--right .students-visibility__signals {
  animation: students-visibility-reveal 0.45s cubic-bezier(0.33, 1, 0.68, 1) 1.25s forwards;
}
.students-visibility__signals {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.6;
}
.students-visibility__signals li {
  margin-bottom: var(--space-3);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}
.students-visibility__signals li:last-child {
  margin-bottom: 0;
}
.students-visibility__col--left .students-visibility__signals {
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
  margin-inline: auto;
  max-width: 12rem;
}
.students-visibility__col--left .students-visibility__signals li {
  justify-content: flex-start;
}
.students-visibility__col--left .students-visibility__signals li::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 45, 45, 0.5);
  box-shadow: 0 0 8px rgba(255, 45, 45, 0.25), 0 0 0 1px rgba(255, 45, 45, 0.12);
}
.students-visibility__col--left .students-visibility__signals li:nth-child(2)::before {
  background: rgba(255, 45, 45, 0.4);
  box-shadow: 0 0 6px rgba(255, 45, 45, 0.2);
}
.students-visibility__col--left .students-visibility__signals li:nth-child(3)::before {
  background: rgba(255, 45, 45, 0.45);
  box-shadow: 0 0 7px rgba(255, 45, 45, 0.22);
}
.students-visibility__col--left .students-visibility__signals li:nth-child(4)::before {
  background: rgba(255, 45, 45, 0.35);
  box-shadow: 0 0 6px rgba(255, 45, 45, 0.18);
}
.students-visibility__col--left .students-visibility__signals li:nth-child(5)::before {
  background: rgba(255, 45, 45, 0.42);
  box-shadow: 0 0 7px rgba(255, 45, 45, 0.2);
}
.students-visibility__col--left .students-visibility__signals li:nth-child(6)::before {
  background: rgba(255, 45, 45, 0.48);
  box-shadow: 0 0 8px rgba(255, 45, 45, 0.23);
}
.students-visibility__col--right .students-visibility__signals {
  color: var(--text-on-dark-soft);
  font-weight: 400;
}
.students-visibility__col--right .students-visibility__signals li::before {
  display: none;
}
@media (max-width: 767px) {
  .students-visibility__compare {
    grid-template-columns: 1fr;
    gap: clamp(var(--space-12), 8vw, var(--space-20));
    margin-top: clamp(var(--space-12), 8vw, var(--space-20));
  }
}

.students-visibility__close {
  opacity: 0;
  transform: translateY(12px);
  font-size: clamp(1.25rem, 1.75vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  margin: 0;
  margin-top: clamp(var(--space-14), 8vw, var(--space-24));
  margin-bottom: clamp(var(--space-12), 6vw, var(--space-20));
  padding-top: clamp(var(--space-12), 6vw, var(--space-16));
  max-width: 24em;
  margin-inline: auto;
}
.students-visibility__close::before {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  margin: 0 auto clamp(var(--space-6), 3vw, var(--space-8)) auto;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 45, 0.25) 50%, transparent);
  border-radius: 1px;
}

/* Students AEO block — seamless transition from hero, same dark system */
.students-aeo {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: var(--space-20);
  padding-top: clamp(var(--space-20), 8vw, var(--space-24));
  background: #0b0b0f;
  background-image:
    radial-gradient(ellipse 100% 50% at 50% 0%, rgba(22, 22, 26, 0.2) 0%, transparent 55%);
  border-top: 1px solid var(--border-1);
}
/* Signal horizon: thin accent line at section boundary — continues hero signal language */
.students-aeo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255, 45, 45, 0.06) 50%, transparent 90%);
  pointer-events: none;
}

/* Downward-traveling proof signal at hero/next-section boundary — guides eye, suggests proof entering system */
.students-aeo__transition-signal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}
.students-aeo--visible .students-aeo__transition-signal {
  animation: students-aeo-reveal 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}
.students-aeo__transition-signal-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 22%, rgba(255, 45, 45, 0.12) 50%, transparent 78%);
  box-shadow: 0 0 8px rgba(255, 45, 45, 0.05);
  animation: students-aeo-signal-travel 5.5s cubic-bezier(0.33, 1, 0.68, 1) 2.5s infinite;
}
@keyframes students-aeo-signal-travel {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }
  12% {
    opacity: 0.4;
  }
  88% {
    opacity: 0.25;
  }
  100% {
    opacity: 0;
    transform: translateY(106px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .students-aeo__transition-signal-line {
    animation: none;
    opacity: 0;
  }
}

.students-aeo__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: var(--content-padding-inline);
}

/* Scroll-linked entrance: initial state (before section is in view) — minimal motion for readability */
.students-aeo__title,
.students-aeo__lead,
.students-aeo__list {
  opacity: 0;
  transform: translateY(10px);
}

/* Reveal when .students-aeo--visible is added — short, quiet stagger (Stripe/Linear quality) */
.students-aeo--visible .students-aeo__title {
  animation: students-aeo-reveal 0.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.students-aeo--visible .students-aeo__lead {
  animation: students-aeo-reveal 0.45s cubic-bezier(0.33, 1, 0.68, 1) 0.1s forwards;
}
.students-aeo--visible .students-aeo__list {
  animation: students-aeo-reveal 0.45s cubic-bezier(0.33, 1, 0.68, 1) 0.22s forwards;
}
@keyframes students-aeo-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .students-aeo__title,
  .students-aeo__lead,
  .students-aeo__list {
    opacity: 1;
    transform: none;
  }
  .students-aeo__transition-signal {
    opacity: 1;
  }
  .students-aeo--visible .students-aeo__title,
  .students-aeo--visible .students-aeo__lead,
  .students-aeo--visible .students-aeo__list,
  .students-aeo--visible .students-aeo__transition-signal {
    animation: none;
  }
}

.students-aeo__title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 var(--space-4);
}
.students-aeo__lead {
  font-size: var(--text-body);
  line-height: var(--leading-normal);
  color: var(--text-secondary);
  margin: 0 0 var(--space-6);
}
.students-aeo__list {
  margin: 0;
  padding-left: var(--space-6);
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.6;
}
.students-aeo__list li {
  margin-bottom: var(--space-2);
}
.students-aeo__list li:last-child {
  margin-bottom: 0;
}

/* Students page: all sections same height as first (100vh), consistent layout */
#students-hero.lp-hero-inner,
.students-myth-reality,
.proof-signals,
.students-visibility,
.students-aeo,
#students-how {
  min-height: 100vh;
  box-sizing: border-box;
}

#students-how {
  display: flex;
  align-items: center;
  background: #0b0b0f;
  border-top: 1px solid var(--border-1);
  padding-block: var(--section-gap-y);
}
#students-how .container {
  width: 100%;
}

/* ----- Institutions page (built from src/pages/institutions.njk). S2, S3, S4 styles below. ----- */

/* ── Institutions hero (Phase 2) — pure #000, no grain; scoped to body.page-institutions ── */
/* ── HERO SHELL — reset padding-block then set insets (longhands override shorthand) ── */
body.page-institutions .lp-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  min-height: 100vh;
  box-sizing: border-box;
  font-family: var(--font-sans);
  padding-block: 0;
  padding-top: var(--tp-nav-fixed-offset);
  /* Match Companies / Recruiters hero: body.page-recruiters .lp-hero-inner padding-bottom */
  padding-bottom: 80px;
  padding-inline: var(--inset);
  background: #000000;
  position: relative;
  overflow: hidden;
}

/* ── GLOWS ── */
body.page-institutions .inst-glow-bl {
  position: absolute;
  bottom: -80px; left: -60px;
  width: 600px; height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(255,45,45,0.09) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

body.page-institutions .inst-glow-tr {
  position: absolute;
  top: -100px; right: 5%;
  width: 400px; height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(255,45,45,0.035) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── HORIZONTAL RULE ── */
body.page-institutions .inst-h-rule {
  position: absolute;
  left: var(--inset); right: var(--inset);
  bottom: 200px;
  height: 1px;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 0;
}

/* ── SIGNAL LINES ── */
body.page-institutions .inst-signal-lines {
  position: absolute;
  right: var(--inset);
  top: 0; bottom: 0;
  display: flex;
  gap: 18px;
  align-items: stretch;
  pointer-events: none;
  z-index: 0;
}

body.page-institutions .inst-sig-line {
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255,45,45,0.0) 15%,
    rgba(255,45,45,0.28) 50%,
    rgba(255,45,45,0.0) 85%,
    transparent 100%
  );
}

/* ── STAT STRIP ── */
body.page-institutions .inst-stat-strip {
  position: absolute;
  top: 80px;
  left: var(--inset);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
}

body.page-institutions .inst-stat-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

body.page-institutions .inst-stat-num {
  font-size: clamp(16px, 1.75vw, 24px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.55);
  line-height: 1;
}

body.page-institutions .inst-stat-num span {
  color: #FF2D2D;
}

body.page-institutions .inst-stat-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

body.page-institutions .inst-stat-divider {
  width: 20px; height: 1px;
  background: rgba(255,255,255,0.08);
}

/* ── PLACEMENT RATE ORB ── */
body.page-institutions .inst-orb-wrap {
  position: absolute;
  top: 80px;
  right: var(--inset);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  z-index: 2;
}

body.page-institutions .inst-orb-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

body.page-institutions .inst-orb-number {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding: 14px 18px;
}

body.page-institutions .inst-orb-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(255,45,45,0.2);
}

body.page-institutions .inst-orb-ring::after {
  content: '';
  position: absolute;
  top: -2px; left: 50%;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #FF2D2D;
  transform: translateX(-50%);
  box-shadow: 0 0 6px rgba(255,45,45,0.75);
}

body.page-institutions .inst-orb-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF2D2D;
}

body.page-institutions .inst-orb-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #FF2D2D;
}

/* ── SCROLL SIGNAL ── */
body.page-institutions .inst-scroll-signal {
  position: absolute;
  bottom: 52px;
  right: var(--inset);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

body.page-institutions .inst-scroll-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

body.page-institutions .inst-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #FF2D2D, transparent);
}

/* ── MAIN CONTENT ── */
body.page-institutions .inst-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 800px;
}

body.page-institutions .inst-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 20px;
}

/* Pulsing dot — same as recruiters / students (replaces grey rule line) */
body.page-institutions .eyebrow-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: blink 1.8s ease infinite;
}

@media (prefers-reduced-motion: reduce) {
  body.page-institutions .eyebrow-pip {
    animation: none !important;
  }
}

/* Same scale as home hero / Companies / Recruiters — `--hero-headline-size` */
body.page-institutions .inst-headline {
  font-family: var(--font-sans);
  font-size: var(--hero-headline-size);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.page-institutions .inst-hl-1 {
  display: block;
  /* Match institutions secondary CTA text color */
  color: rgba(255,255,255,0.58);
}

body.page-institutions .inst-hl-1 .inst-headline-gt {
  color: var(--red);
  text-shadow: 0 0 60px rgba(255, 45, 45, 0.45), 0 0 120px rgba(255, 45, 45, 0.18);
}

/* Same red glow as students hero “INVISIBILITY” / home second line */
body.page-institutions .inst-hl-red {
  display: block;
  color: var(--red);
  text-shadow: 0 0 60px rgba(255, 45, 45, 0.45), 0 0 120px rgba(255, 45, 45, 0.18);
}

body.page-institutions .inst-sub {
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.42);
  max-width: 500px;
  margin-bottom: 34px;
}

body.page-institutions .inst-sub strong {
  color: rgba(255,255,255,0.70);
  font-weight: 600;
}

body.page-institutions .inst-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.page-institutions .inst-btn-primary {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: #FF2D2D;
  border: none;
  border-radius: 8px;
  padding: 13px 26px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 28px rgba(255,45,45,0.28);
  font-family: inherit;
}

body.page-institutions .inst-btn-secondary {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 13px 22px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}

/* ── Institutions hero — motion & hover (Phase 3) ── */

/* Signal lines pulse */
body.page-institutions .inst-sig-line {
  animation: instSigPulse 3s ease-in-out infinite;
}

body.page-institutions .inst-sig-line:nth-child(2) {
  animation-delay: 0.7s;
}

body.page-institutions .inst-sig-line:nth-child(3) {
  animation-delay: 1.4s;
}

/* Glow breathe */
body.page-institutions .inst-glow-bl {
  animation: instBreathe 5s ease-in-out infinite;
}

body.page-institutions .inst-glow-tr {
  animation: instBreathe 7s ease-in-out 2s infinite;
}

/* Orb ring rotates */
body.page-institutions .inst-orb-ring {
  animation: instRingRotate 10s linear infinite;
}

/* Orb dot pulse */
body.page-institutions .inst-orb-dot {
  animation: instDotPulse 2s ease infinite;
}

/* Scroll line pulse */
body.page-institutions .inst-scroll-line {
  animation: instScrollPulse 2s ease-in-out infinite;
}

/* Primary button hover */
body.page-institutions .inst-btn-primary {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.page-institutions .inst-btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -80%; width: 60%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.14),
    transparent
  );
  transition: left 0.5s ease;
}

body.page-institutions .inst-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 36px rgba(255,45,45,0.38);
}

body.page-institutions .inst-btn-primary:hover::before {
  left: 150%;
}

/* Secondary button hover */
body.page-institutions .inst-btn-secondary {
  transition: border-color 0.2s ease, color 0.2s ease;
}

body.page-institutions .inst-btn-secondary:hover {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}

@keyframes instSigPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

@keyframes instBreathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.93); }
}

@keyframes instRingRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes instDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.6); }
}

@keyframes instScrollPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

/* ── Institutions hero — entrance (Phase 4); .is-visible on .lp-hero-inner (Phase 5) ── */

/* ── INITIAL HIDDEN STATES ── */
body.page-institutions .inst-stat-strip,
body.page-institutions .inst-orb-wrap,
body.page-institutions .inst-scroll-signal,
body.page-institutions .inst-eyebrow,
body.page-institutions .inst-hl-1,
body.page-institutions .inst-hl-red,
body.page-institutions .inst-sub,
body.page-institutions .inst-cta-row {
  opacity: 0;
}

body.page-institutions .inst-hl-1,
body.page-institutions .inst-hl-red {
  transform: translateY(28px);
}

body.page-institutions .inst-eyebrow,
body.page-institutions .inst-sub,
body.page-institutions .inst-cta-row {
  transform: translateY(14px);
}

/* ── VISIBLE STATES ── */

/* Stat strip */
body.page-institutions .lp-hero-inner.is-visible .inst-stat-strip {
  animation: instFadeIn 0.7s cubic-bezier(0.16,1,0.3,1) 0.9s forwards;
}

/* Orb */
body.page-institutions .lp-hero-inner.is-visible .inst-orb-wrap {
  animation: instFadeIn 0.8s cubic-bezier(0.16,1,0.3,1) 1.1s forwards;
}

/* Scroll signal */
body.page-institutions .lp-hero-inner.is-visible .inst-scroll-signal {
  animation: instFadeIn 0.6s ease 1.4s forwards;
}

/* Eyebrow */
body.page-institutions .lp-hero-inner.is-visible .inst-eyebrow {
  animation: instFadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.28s forwards;
}

/* Headline lines */
body.page-institutions .lp-hero-inner.is-visible .inst-hl-1 {
  animation: instWordUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.42s forwards;
}

body.page-institutions .lp-hero-inner.is-visible .inst-hl-red {
  animation: instWordUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.58s forwards;
}

/* Sub copy */
body.page-institutions .lp-hero-inner.is-visible .inst-sub {
  animation: instFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.78s forwards;
}

/* CTAs */
body.page-institutions .lp-hero-inner.is-visible .inst-cta-row {
  animation: instFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.92s forwards;
}

/* ── KEYFRAMES (institutions hero entrance) ── */
@keyframes instFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes instFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes instWordUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── REDUCED MOTION (institutions hero entrance + Phase 3 deco) ── */
@media (prefers-reduced-motion: reduce) {
  body.page-institutions .inst-stat-strip,
  body.page-institutions .inst-orb-wrap,
  body.page-institutions .inst-scroll-signal,
  body.page-institutions .inst-eyebrow,
  body.page-institutions .inst-hl-1,
  body.page-institutions .inst-hl-red,
  body.page-institutions .inst-sub,
  body.page-institutions .inst-cta-row {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  body.page-institutions .inst-orb-ring,
  body.page-institutions .inst-orb-dot,
  body.page-institutions .inst-scroll-line,
  body.page-institutions .inst-sig-line,
  body.page-institutions .inst-glow-bl,
  body.page-institutions .inst-glow-tr {
    animation: none !important;
  }
}

/* ── Institutions: mobile before/after metrics (.m-s4) — max-width 768px ── */
@media (max-width: 768px) {
  /* Hero: full-width CTAs + gutter so scroll signal does not cover buttons */
  body.page-institutions .lp-hero-inner {
    padding-bottom: 96px;
  }

  body.page-institutions .inst-content {
    max-width: none;
    width: 100%;
    box-sizing: border-box;
    padding-right: 52px;
    padding-bottom: 56px;
  }

  body.page-institutions .inst-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  body.page-institutions .inst-btn-primary,
  body.page-institutions .inst-btn-secondary {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.35;
  }

  body.page-institutions .inst-scroll-signal {
    bottom: 22px;
    right: var(--inset);
    gap: 8px;
    z-index: 3;
    pointer-events: none;
  }

  body.page-institutions .inst-s3-journey {
    display: none !important;
  }

  body.page-institutions section.inst-s4-difference {
    display: none !important;
  }

  body.page-institutions .m-s4 {
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }

  body.page-institutions .m-s4::before {
    content: 'PROOF';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 220px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.018);
    letter-spacing: -10px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
  }

  body.page-institutions .m-s4-header {
    flex: 0 0 auto;
    padding: 48px 24px 20px;
    position: relative;
    z-index: 1;
  }

  body.page-institutions .m-s4-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  body.page-institutions .m-s4-eyebrow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FF2D2D;
    box-shadow: 0 0 6px rgba(255, 45, 45, 0.8);
    flex-shrink: 0;
  }

  body.page-institutions .m-s4-headline {
    line-height: 0.9;
    margin-bottom: 14px;
  }

  body.page-institutions .m-s4-hl-1 {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2.5px;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.5s 0.1s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.5s 0.1s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.page-institutions .m-s4-hl-2 {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: #FF2D2D;
    letter-spacing: -2.5px;
    text-shadow: 0 0 40px rgba(255, 45, 45, 0.3);
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.5s 0.2s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.5s 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.page-institutions .m-s4-copy {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s 0.3s ease, transform 0.5s 0.3s ease;
  }

  body.page-institutions .m-s4-copy strong {
    color: #fff;
    font-weight: 700;
  }

  body.page-institutions .m-s4-row-labels {
    display: flex;
    gap: 0;
    padding: 0 24px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s 0.4s ease;
  }

  body.page-institutions .m-s4-row-label {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  body.page-institutions .m-s4-row-label-spacer {
    flex: 0 0 32px;
  }

  body.page-institutions .m-s4-row-label.before {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  body.page-institutions .m-s4-row-label.after {
    background: rgba(34, 197, 94, 0.08);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
  }

  body.page-institutions .m-s4-row-label-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
  }

  body.page-institutions .m-s4-row-label.before .m-s4-row-label-dot {
    background: rgba(255, 255, 255, 0.3);
  }

  body.page-institutions .m-s4-row-label.after .m-s4-row-label-dot {
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.8);
  }

  body.page-institutions .m-s4-metrics {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  body.page-institutions .m-s4-metric {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.page-institutions .m-s4-metric-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  body.page-institutions .m-s4-metric-row {
    display: flex;
    align-items: center;
  }

  body.page-institutions .m-s4-before {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  body.page-institutions .m-s4-before-num {
    font-size: 32px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.22);
    letter-spacing: -2px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }

  body.page-institutions .m-s4-before-sub {
    font-size: 8px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 2px;
    line-height: 1.3;
  }

  body.page-institutions .m-s4-arrow {
    flex: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.2);
  }

  body.page-institutions .m-s4-after {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 2px solid #FF2D2D;
  }

  body.page-institutions .m-s4-after-num {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }

  body.page-institutions .m-s4-after-num sup {
    font-size: 16px;
    font-weight: 900;
    vertical-align: super;
    line-height: 0;
  }

  body.page-institutions .m-s4-after-sub {
    font-size: 8px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
    line-height: 1.3;
  }

  body.page-institutions .m-s4-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-top: 5px;
    font-size: 9px;
    font-weight: 700;
    color: #22c55e;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  body.page-institutions .m-s4-pill.m-s4-pill-down {
    color: #22c55e;
  }

  body.page-institutions .m-s4-pill.m-s4-show {
    opacity: 1;
    transform: none;
  }

  body.page-institutions .m-s4-bottom {
    flex: 0 0 auto;
    padding: 14px 24px 28px;
    border-top: 1px solid rgba(255, 45, 45, 0.2);
    background: rgba(255, 45, 45, 0.03);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  body.page-institutions .m-s4-bottom-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin-bottom: 12px;
  }

  body.page-institutions .m-s4-bottom-copy strong {
    color: #fff;
  }

  body.page-institutions .m-s4-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: #FF2D2D;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 0 24px rgba(255, 45, 45, 0.4);
  }

  body.page-institutions .m-s4-visible {
    opacity: 1 !important;
    transform: none !important;
  }

  body.page-institutions section.inst-s5-how-it-works {
    display: none !important;
  }

  /* ── Institutions: mobile journey (.m-s5) — How it works ── */
  body.page-institutions .m-s5 {
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }

  body.page-institutions .m-s5-header {
    flex: 0 0 auto;
    padding: 48px 24px 16px;
    position: relative;
    z-index: 1;
  }

  body.page-institutions .m-s5-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  body.page-institutions .m-s5-eyebrow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FF2D2D;
    box-shadow: 0 0 6px rgba(255, 45, 45, 0.8);
    flex-shrink: 0;
  }

  body.page-institutions .m-s5-headline {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.5s 0.1s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.5s 0.1s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.page-institutions .m-s5-headline span {
    color: #FF2D2D;
  }

  body.page-institutions .m-s5-copy {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s 0.25s ease, transform 0.5s 0.25s ease;
  }

  body.page-institutions .m-s5-copy strong {
    color: #fff;
    font-weight: 700;
  }

  body.page-institutions .m-s5-track {
    flex: 0 0 auto;
    padding: 16px 24px 0;
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s 0.35s ease;
  }

  body.page-institutions .m-s5-track-line {
    position: relative;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 10px;
  }

  body.page-institutions .m-s5-track-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #FF2D2D;
    box-shadow: 0 0 8px rgba(255, 45, 45, 0.6);
    transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    width: 0%;
  }

  body.page-institutions .m-s5-track-dots {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
  }

  body.page-institutions .m-s5-track-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.3s ease,
      border-color 0.3s ease,
      box-shadow 0.3s ease;
  }

  body.page-institutions .m-s5-track-dot.active {
    background: #FF2D2D;
    border-color: #FF2D2D;
    box-shadow: 0 0 10px rgba(255, 45, 45, 0.9);
  }

  body.page-institutions .m-s5-track-labels {
    display: flex;
    justify-content: space-between;
  }

  body.page-institutions .m-s5-track-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.3s ease;
    flex: 1;
  }

  body.page-institutions .m-s5-track-label:first-child {
    text-align: left;
  }

  body.page-institutions .m-s5-track-label:last-child {
    text-align: right;
  }

  body.page-institutions .m-s5-track-label.active {
    color: #FF2D2D;
  }

  body.page-institutions .m-s5-slides {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-top: 16px;
  }

  body.page-institutions .m-s5-slides-inner {
    display: flex;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.page-institutions .m-s5-slide {
    flex: 0 0 100%;
    height: 100%;
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }

  body.page-institutions .m-s5-slide-ghost {
    position: absolute;
    bottom: 20px;
    right: 10px;
    font-size: 140px;
    font-weight: 900;
    color: rgba(255, 45, 45, 0.07);
    letter-spacing: -8px;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
  }

  body.page-institutions .m-s5-slide-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }

  body.page-institutions .m-s5-stage-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-top: 4px;
  }

  body.page-institutions .m-s5-stage-tag-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FF2D2D;
  }

  body.page-institutions .m-s5-slide-choose .m-s5-stage-tag {
    color: #FF2D2D;
  }

  body.page-institutions .m-s5-slide-choose .m-s5-stage-tag-dot {
    box-shadow: 0 0 6px rgba(255, 45, 45, 0.8);
    animation: m-s5-dot-pulse 1.4s ease-in-out infinite;
  }

  @keyframes m-s5-dot-pulse {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.5);
      opacity: 0.6;
    }
  }

  body.page-institutions .m-s5-stage-word {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.9;
    color: rgba(255, 255, 255, 0.18);
    margin-bottom: 14px;
    transition: color 0.3s ease;
  }

  body.page-institutions .m-s5-slide.active-slide .m-s5-stage-word {
    color: #fff;
  }

  body.page-institutions .m-s5-slide-body {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
    margin-bottom: 12px;
  }

  body.page-institutions .m-s5-slide-body strong {
    color: #fff;
    font-weight: 700;
  }

  body.page-institutions .m-s5-stat {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
    margin-bottom: 16px;
    padding-left: 10px;
    border-left: 2px solid #FF2D2D;
  }

  body.page-institutions .m-s5-slide-choose .m-s5-stat {
    color: #FF2D2D;
    font-style: normal;
  }

  body.page-institutions .m-s5-vis-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  body.page-institutions .m-s5-vis-bar-track {
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 6px;
    position: relative;
  }

  body.page-institutions .m-s5-vis-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
    width: 0;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.page-institutions .m-s5-vis-bar-red {
    background: #FF2D2D;
    box-shadow: 0 0 6px rgba(255, 45, 45, 0.6);
  }

  body.page-institutions .m-s5-vis-status {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  body.page-institutions .m-s5-arrow {
    color: #22c55e;
  }

  body.page-institutions .m-s5-vis-status-choose,
  body.page-institutions .m-s5-vis-status-choose .m-s5-arrow {
    color: #FF2D2D;
  }

  body.page-institutions .m-s5-companies {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
  }

  body.page-institutions .m-s5-company-tag {
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.5px;
  }

  body.page-institutions .m-s5-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (min-width: 769px) {
  body.page-institutions .m-s4 {
    display: none !important;
  }

  body.page-institutions .m-s5 {
    display: none !important;
  }
}

/* ── Institutions: .inst-s2-proof-gap (Phase 2 layout) — #000, Inter via var(--font-sans) ── */

/* ── SECTION ── */
body.page-institutions .inst-s2-proof-gap {
  width: 100%;
  min-height: 100vh;
  background: #000000;
  font-family: var(--font-sans);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 5vw;
  padding-top: 120px;
  padding-bottom: 100px;
  padding-inline: var(--inset);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Glow */
body.page-institutions .inst-s2-glow {
  position: absolute;
  top: -80px; left: -60px;
  width: 600px; height: 500px;
  background: radial-gradient(
    ellipse, rgba(255,45,45,0.045) 0%, transparent 65%
  );
  pointer-events: none;
}

/* ── LEFT PANEL ── */
body.page-institutions .inst-s2-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

body.page-institutions .inst-s2-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

/* Headline */
body.page-institutions .inst-s2-hl {
  font-size: clamp(3.6rem, 7.5vw, 7rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

body.page-institutions .inst-s2-hl-1 {
  display: block;
  /* Brighter than 0.15 so “UNGUIDED” reads clearly; still softer than hl-2 */
  color: rgba(255, 255, 255, 0.48);
}

body.page-institutions .inst-s2-hl-2 {
  display: block;
  color: #ffffff;
}

body.page-institutions .inst-s2-hl-3 {
  display: block;
  color: #FF2D2D;
  text-shadow: 0 0 60px rgba(255,45,45,0.3);
}

/* Definitions */
body.page-institutions .inst-s2-defs {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

body.page-institutions .inst-s2-def {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.5;
}

body.page-institutions .inst-def-word {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  width: 92px;
}

body.page-institutions .inst-def-ghost { color: rgba(255,255,255,0.2); }
body.page-institutions .inst-def-white { color: rgba(255,255,255,0.55); }
body.page-institutions .inst-def-red   { color: #FF2D2D; }

body.page-institutions .inst-def-dash {
  width: 14px; height: 1px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  align-self: center;
}

body.page-institutions .inst-def-text {
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

body.page-institutions .inst-def-text strong {
  color: rgba(255,255,255,0.62);
  font-weight: 500;
}

/* Pivot */
body.page-institutions .inst-s2-pivot {
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.3);
  max-width: 360px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

body.page-institutions .inst-s2-pivot strong {
  color: rgba(255,255,255,0.68);
  font-weight: 600;
}

body.page-institutions .inst-s2-pivot-red {
  color: #FF2D2D;
  font-weight: 600;
}

/* ── RIGHT PANEL ── */
body.page-institutions .inst-s2-right {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

/* ── PROOF GAP CARD ── */
body.page-institutions .inst-proof-gap {
  background: #0d0d0f;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02),
    0 40px 100px rgba(0,0,0,0.7);
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

body.page-institutions .inst-proof-gap::before {
  content: '';
  position: absolute;
  top: 0; left: 16px; right: 16px;
  height: 1px;
  background: linear-gradient(
    90deg, transparent, rgba(255,255,255,0.07), transparent
  );
}

/* Title bar */
body.page-institutions .inst-pg-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  flex-shrink: 0;
}

body.page-institutions .inst-pg-dots {
  display: flex; gap: 5px;
}

body.page-institutions .inst-pg-dot {
  width: 8px; height: 8px; border-radius: 50%;
}

body.page-institutions .inst-pg-dot:nth-child(1) { background: #FF5F57; }
body.page-institutions .inst-pg-dot:nth-child(2) { background: #FEBC2E; }
body.page-institutions .inst-pg-dot:nth-child(3) { background: #28C840; }

body.page-institutions .inst-pg-title {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

body.page-institutions .inst-pg-name {
  font-size: 9px; font-weight: 600;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}

/* Counter strip */
body.page-institutions .inst-pg-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.01);
  flex-shrink: 0;
  gap: 12px;
}

body.page-institutions .inst-counter-label {
  font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  white-space: nowrap;
}

body.page-institutions .inst-counter-bar-wrap {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
}

body.page-institutions .inst-counter-bar-fill {
  height: 100%;
  width: 0%;
  background: #FF2D2D;
  border-radius: 3px;
}

body.page-institutions .inst-counter-val {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-shrink: 0;
}

body.page-institutions .inst-counter-num {
  font-size: 20px; font-weight: 900;
  letter-spacing: -0.04em;
  color: #FF2D2D; line-height: 1;
}

body.page-institutions .inst-counter-suffix {
  font-size: 10px; font-weight: 600;
  color: rgba(255,45,45,0.5);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* Two columns */
body.page-institutions .inst-pg-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1; min-height: 0;
}

body.page-institutions .inst-pg-col {
  display: flex;
  flex-direction: column;
}

body.page-institutions .inst-pg-col--recorded {
  border-right: 1px solid rgba(255,255,255,0.05);
}

body.page-institutions .inst-pg-col-head {
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  background: rgba(255,255,255,0.015);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

body.page-institutions .inst-col-head--r { color: rgba(255,255,255,0.35); }
body.page-institutions .inst-col-head--m { color: rgba(255,45,45,0.55); }

body.page-institutions .inst-col-count {
  font-size: 9px; font-weight: 700;
  padding: 2px 6px; border-radius: 4px;
}

body.page-institutions .inst-col-count--r {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
}

body.page-institutions .inst-col-count--m {
  background: rgba(255,45,45,0.08);
  color: rgba(255,45,45,0.55);
}

body.page-institutions .inst-pg-items {
  display: flex;
  flex-direction: column;
  flex: 1;
}

body.page-institutions .inst-pg-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  flex: 1;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

body.page-institutions .inst-pg-item:last-child {
  border-bottom: none;
}

body.page-institutions .inst-pg-icon {
  font-size: 13px; flex-shrink: 0;
  width: 20px; text-align: center;
}

body.page-institutions .inst-missing-item .inst-pg-icon {
  opacity: 0.25;
}

body.page-institutions .inst-pg-body {
  flex: 1; min-width: 0;
}

body.page-institutions .inst-pg-label {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: -0.01em; margin-bottom: 2px;
}

body.page-institutions .inst-recorded-item .inst-pg-label {
  color: rgba(255,255,255,0.68);
}

body.page-institutions .inst-missing-item .inst-pg-label {
  color: rgba(255,255,255,0.28);
}

body.page-institutions .inst-pg-val {
  font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,0.55);
}

body.page-institutions .inst-val--missing {
  color: rgba(255,45,45,0.45);
  font-style: italic;
}

/* Red slash */
body.page-institutions .inst-pg-slash {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: rgba(255,45,45,0.18);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* Green stamp sweep */
body.page-institutions .inst-recorded-item::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(
    90deg, transparent, rgba(34,197,94,0.06), transparent
  );
  pointer-events: none;
}

/* Verdict footer */
body.page-institutions .inst-pg-verdict {
  padding: 12px 16px;
  border-top: 1px solid rgba(255,45,45,0.1);
  background: rgba(255,45,45,0.025);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.page-institutions .inst-pg-verdict-txt {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,45,45,0.75);
  text-align: center;
}

/* ── Institutions .inst-s2-proof-gap — hover & transitions (Phase 3) ── */

/* Glow breathe */
body.page-institutions .inst-s2-glow {
  animation: instS2GlowBreathe 6s ease-in-out infinite;
}

/* Recorded item hover */
body.page-institutions .inst-pg-item {
  transition: background 0.2s ease;
}

body.page-institutions .inst-pg-item:hover {
  background: rgba(255,255,255,0.02);
}

/* Proof gap card border flash — JS controlled */
body.page-institutions .inst-proof-gap {
  transition: box-shadow 0.3s ease;
}

/* Tick — transition from grey to green */
body.page-institutions .inst-pg-tick {
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
  color: rgba(255,255,255,0.3);
  opacity: 0;
  transition: opacity 0.3s ease, color 0.3s ease;
}

body.page-institutions .inst-pg-tick.show {
  opacity: 1;
  color: #22c55e;
}

/* Cross — spring in */
body.page-institutions .inst-pg-cross {
  font-size: 11px; font-weight: 700;
  color: rgba(255,45,45,0.4);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease,
              transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

body.page-institutions .inst-pg-cross.show {
  opacity: 1;
  transform: scale(1);
}

/* Slash draws across */
body.page-institutions .inst-pg-slash.show {
  transform: scaleX(1);
}

/* Verdict footer */
body.page-institutions .inst-pg-verdict {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.7s ease,
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

body.page-institutions .inst-pg-verdict.show {
  opacity: 1;
  transform: translateY(0);
}

/* Counter pulse when stuck at zero */
body.page-institutions .inst-counter-num.stuck {
  animation: instS2CounterPulse 1.5s ease infinite;
}

/* Stamp sweep animation */
body.page-institutions .inst-recorded-item.stamped::after {
  animation: instS2StampSweep 0.5s ease forwards;
}

@keyframes instS2GlowBreathe {
  0%,100% { opacity:1; }
  50%      { opacity:0.45; }
}

@keyframes instS2CounterPulse {
  0%,100% { opacity:1; }
  50%      { opacity:0.35; }
}

@keyframes instS2StampSweep {
  0%   { left:-100%; opacity:1; }
  100% { left:200%; opacity:0; }
}

/* ── Institutions .inst-s2-proof-gap — entrance animations (Phase 4) */
/* .is-visible is added by Intersection Observer (Phase 5) */

/* ── INITIAL HIDDEN STATES ── */
body.page-institutions .inst-s2-eyebrow,
body.page-institutions .inst-s2-hl-1,
body.page-institutions .inst-s2-hl-2,
body.page-institutions .inst-s2-hl-3,
body.page-institutions .inst-s2-defs,
body.page-institutions .inst-s2-pivot,
body.page-institutions .inst-s2-right,
body.page-institutions .inst-pg-item {
  opacity: 0;
}

body.page-institutions .inst-s2-hl-1 {
  filter: blur(8px);
  transform: translateY(10px);
}

body.page-institutions .inst-s2-hl-2 {
  transform: translateY(40px);
}

body.page-institutions .inst-s2-hl-3 {
  transform: translateY(-30px) scale(1.05);
}

body.page-institutions .inst-s2-eyebrow,
body.page-institutions .inst-s2-defs,
body.page-institutions .inst-s2-pivot {
  transform: translateY(12px);
}

body.page-institutions .inst-s2-right {
  transform: translateX(28px) scale(0.97);
}

/* ── VISIBLE STATES ── */
body.page-institutions .inst-s2-proof-gap.is-visible
  .inst-s2-eyebrow {
  animation: instS2FadeUp 0.5s cubic-bezier(0.16,1,0.3,1)
             0.1s forwards;
}

body.page-institutions .inst-s2-proof-gap.is-visible
  .inst-s2-hl-1 {
  animation: instS2SlamGhost 0.8s cubic-bezier(0.16,1,0.3,1)
             0.3s forwards;
}

body.page-institutions .inst-s2-proof-gap.is-visible
  .inst-s2-hl-2 {
  animation: instS2SlamWhite 0.65s cubic-bezier(0.16,1,0.3,1)
             0.55s forwards;
}

body.page-institutions .inst-s2-proof-gap.is-visible
  .inst-s2-hl-3 {
  animation: instS2SlamRed 0.7s cubic-bezier(0.34,1.4,0.64,1)
             0.82s forwards;
}

body.page-institutions .inst-s2-proof-gap.is-visible
  .inst-s2-defs {
  animation: instS2FadeUp 0.6s cubic-bezier(0.16,1,0.3,1)
             1.0s forwards;
}

body.page-institutions .inst-s2-proof-gap.is-visible
  .inst-s2-pivot {
  animation: instS2FadeUp 0.6s cubic-bezier(0.16,1,0.3,1)
             1.15s forwards;
}

body.page-institutions .inst-s2-proof-gap.is-visible
  .inst-s2-right {
  animation: instS2CardIn 0.9s cubic-bezier(0.16,1,0.3,1)
             0.4s forwards;
}

/* ── KEYFRAMES ── */
@keyframes instS2FadeUp {
  from { opacity:0; transform:translateY(12px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes instS2SlamGhost {
  from { opacity:0; filter:blur(8px); transform:translateY(10px); }
  to   { opacity:1; filter:blur(0); transform:translateY(0); }
}

@keyframes instS2SlamWhite {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes instS2SlamRed {
  from { opacity:0; transform:translateY(-30px) scale(1.05); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}

@keyframes instS2CardIn {
  from { opacity:0; transform:translateX(28px) scale(0.97); }
  to   { opacity:1; transform:translateX(0) scale(1); }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  body.page-institutions .inst-s2-eyebrow,
  body.page-institutions .inst-s2-hl-1,
  body.page-institutions .inst-s2-hl-2,
  body.page-institutions .inst-s2-hl-3,
  body.page-institutions .inst-s2-defs,
  body.page-institutions .inst-s2-pivot,
  body.page-institutions .inst-s2-right,
  body.page-institutions .inst-pg-item {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
  }
  body.page-institutions .inst-pg-tick,
  body.page-institutions .inst-pg-cross { opacity:1; transform:none; }
  body.page-institutions .inst-pg-slash { transform:scaleX(1); }
  body.page-institutions .inst-pg-verdict { opacity:1; transform:none; }
}

/* ── Institutions: .inst-s3-journey (Phase 2 layout) — #000, Inter via var(--font-sans) ── */

/* ── SECTION ── */
body.page-institutions .inst-s3-journey {
  width: 100%;
  min-height: 100vh;
  background: #000000;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 88px;
  padding-bottom: 44px;
  padding-inline: var(--inset);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
  gap: clamp(10px, 1.5vh, 16px);
}

/* Glow */
body.page-institutions .inst-s3-glow {
  position: absolute;
  bottom: -80px; right: -60px;
  width: 560px; height: 480px;
  background: radial-gradient(
    ellipse, rgba(255,45,45,0.05) 0%, transparent 65%
  );
  pointer-events: none;
}

/* ── TOP ROW ── */
body.page-institutions .inst-s3-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

body.page-institutions .inst-s3-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.page-institutions .inst-s3-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

body.page-institutions .inst-s3-hl {
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

body.page-institutions .inst-s3-hw { color: #ffffff; display: inline; }
body.page-institutions .inst-s3-hr { color: #FF2D2D; display: inline; }

body.page-institutions .inst-s3-sub {
  max-width: 280px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.38);
  text-align: right;
  align-self: flex-end;
}

body.page-institutions .inst-s3-sub strong {
  color: rgba(255,255,255,0.62);
  font-weight: 600;
}

/* ── TIMELINE ── */
body.page-institutions .inst-s3-timeline {
  display: flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

body.page-institutions .inst-tl-track {
  position: absolute;
  left: 0; right: 0;
  top: 4px;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

body.page-institutions .inst-tl-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  background: #FF2D2D;
  box-shadow: 0 0 8px rgba(255,45,45,0.5);
}

body.page-institutions .inst-tl-markers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  position: relative;
  z-index: 1;
  align-items: start;
}

body.page-institutions .inst-tl-marker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

body.page-institutions .inst-tl-marker--last {
  align-items: flex-end;
}

body.page-institutions .inst-tl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 4px;
  transition: background 0.4s ease, border-color 0.4s ease,
              box-shadow 0.4s ease, transform 0.2s
              cubic-bezier(0.34,1.56,0.64,1);
}

body.page-institutions .inst-tl-dot.active,
body.page-institutions .inst-tl-dot--active {
  background: #FF2D2D;
  border-color: #FF2D2D;
  box-shadow: 0 0 8px rgba(255,45,45,0.6);
}

body.page-institutions .inst-tl-year {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.4s ease;
}

body.page-institutions .inst-tl-year.active,
body.page-institutions .inst-tl-year--active {
  color: #FF2D2D;
}

body.page-institutions .inst-tl-sem {
  font-size: 8px; font-weight: 500;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.06em;
}

/* ── FOUR CARDS ── */
body.page-institutions .inst-s3-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  height: clamp(300px, 46vh, 420px);
  flex-shrink: 0;
}

/* Card base */
body.page-institutions .inst-s3-card {
  background: #000000;
  padding: clamp(16px,2vw,24px) clamp(14px,1.8vw,22px);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vh, 16px);
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  will-change: opacity, filter;
  cursor: default;
}

/* Active card — CHOOSE */
body.page-institutions .inst-s3-card--active {
  background: #0a0000;
}

body.page-institutions .inst-s3-card--active::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: #FF2D2D;
  box-shadow: 0 0 12px rgba(255,45,45,0.5);
}

/* Ghost number */
body.page-institutions .inst-card-ghost {
  position: absolute;
  bottom: -16px; right: -6px;
  font-size: clamp(100px, 13vw, 180px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.032);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.25s ease,
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

/* Card top */
body.page-institutions .inst-card-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.page-institutions .inst-card-phase {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

body.page-institutions .inst-phase-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

body.page-institutions .inst-phase-dot--red {
  background: #FF2D2D;
}

body.page-institutions .inst-card-word {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s ease;
}

body.page-institutions .inst-s3-card--active .inst-card-word {
  color: #ffffff;
}

body.page-institutions .inst-card-desc {
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s ease;
}

body.page-institutions .inst-card-desc strong {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

body.page-institutions .inst-card-stat {
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-style: italic;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 4px;
  transition: color 0.2s ease;
}

body.page-institutions .inst-card-stat--red {
  color: rgba(255,45,45,0.7);
}

/* Visibility */
body.page-institutions .inst-card-vis {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: auto;
}

body.page-institutions .inst-vis-label {
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

body.page-institutions .inst-vis-bar {
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

body.page-institutions .inst-vis-fill {
  height: 100%;
  border-radius: 2px;
  background: #22c55e;
  width: 0%;
  box-shadow: 0 0 6px rgba(34,197,94,0.4);
  transition: width 1s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.2s ease;
}

body.page-institutions .inst-vis-status {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
}

body.page-institutions .inst-vis-status--active {
  color: #FF2D2D;
}

/* Company tags */
body.page-institutions .inst-co-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}

body.page-institutions .inst-co-tag {
  font-size: 9px; font-weight: 700;
  padding: 3px 9px; border-radius: 4px;
  background: rgba(255,45,45,0.08);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.04em;
}

/* ── Institutions .inst-s3-journey — hover & transitions (Phase 3) ── */

/* ── GLOW BREATHE ── */
body.page-institutions .inst-s3-glow {
  animation: instS3GlowBreathe 6s ease-in-out infinite;
}

/* ── PHASE DOT PULSE ── */
body.page-institutions .inst-phase-dot--red {
  animation: instS3DotPulse 2s ease infinite;
}

/* ── SPOTLIGHT HOVER SYSTEM ── */

/* Dim all cards when any is hovered */
body.page-institutions .inst-s3-cards:has(.inst-s3-card:hover)
  .inst-s3-card {
  opacity: 0.18;
  filter: brightness(0.35) saturate(0.5);
  transition: opacity 0.3s ease, filter 0.3s ease,
              background 0.25s ease;
}

/* Hovered card fully lit */
body.page-institutions .inst-s3-cards:has(.inst-s3-card:hover)
  .inst-s3-card:hover {
  opacity: 1;
  filter: brightness(1) saturate(1);
  background: #111115;
  box-shadow: 0 0 60px rgba(255,45,45,0.08);
  transition: opacity 0.18s ease, filter 0.18s ease,
              background 0.18s ease;
}

/* Card word goes white */
body.page-institutions .inst-s3-card:hover .inst-card-word {
  color: rgba(255,255,255,0.9);
}

/* Desc brightens */
body.page-institutions .inst-s3-card:hover .inst-card-desc {
  color: rgba(255,255,255,0.65);
}

/* Stat brightens */
body.page-institutions .inst-s3-card:hover .inst-card-stat {
  color: rgba(255,255,255,0.45);
}

/* Ghost number goes red */
body.page-institutions .inst-s3-card:hover .inst-card-ghost {
  color: rgba(255,45,45,0.14);
}

/* Vis bar glows intensely */
body.page-institutions .inst-s3-card:hover .inst-vis-fill {
  box-shadow: 0 0 14px rgba(34,197,94,0.75),
              0 0 4px rgba(34,197,94,1);
}

/* Top accent line sweeps on hover */
body.page-institutions .inst-s3-card:not(.inst-s3-card--active)::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg, transparent, rgba(255,255,255,0.35), transparent
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  z-index: 3;
}

body.page-institutions
  .inst-s3-card:not(.inst-s3-card--active):hover::before {
  transform: scaleX(1);
}

/* Inset border on hover */
body.page-institutions
  .inst-s3-card:not(.inst-s3-card--active)::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0);
  transition: box-shadow 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

body.page-institutions
  .inst-s3-card:not(.inst-s3-card--active):hover::after {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}

@keyframes instS3GlowBreathe {
  0%,100% { opacity:1; }
  50%      { opacity:0.4; }
}

@keyframes instS3DotPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.3; transform:scale(0.6); }
}

/* ── Institutions: .inst-s4-difference (Phase 2 layout) — #000, Inter via var(--font-sans) ── */

/* ── SECTION ── */
body.page-institutions .inst-s4-difference {
  width: 100%;
  min-height: 100vh;
  background: #000000;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 80px;
  padding-inline: var(--inset);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
  gap: clamp(24px, 4vh, 48px);
}

/* Glow */
body.page-institutions .inst-s4-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 500px; height: 400px;
  background: radial-gradient(
    ellipse, rgba(255,45,45,0.045) 0%, transparent 65%
  );
  pointer-events: none;
}

/* ── HEADER ── */
body.page-institutions .inst-s4-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

body.page-institutions .inst-s4-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.page-institutions .inst-s4-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

body.page-institutions .inst-s4-hl {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

body.page-institutions .inst-s4-hw {
  display: block;
  color: #ffffff;
}

body.page-institutions .inst-s4-hr {
  display: block;
  color: #FF2D2D;
  text-shadow: 0 0 40px rgba(255,45,45,0.25);
}

body.page-institutions .inst-s4-sub {
  max-width: 280px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.35);
  text-align: right;
  align-self: flex-end;
}

body.page-institutions .inst-s4-sub strong {
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

/* ── TABLE CARD ── */
body.page-institutions .inst-s4-table {
  background: #0d0d0f;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02),
    0 40px 100px rgba(0,0,0,0.7);
}

body.page-institutions .inst-s4-table::before {
  content: '';
  position: absolute;
  top: 0; left: 16px; right: 16px;
  height: 1px;
  background: linear-gradient(
    90deg, transparent, rgba(255,255,255,0.07), transparent
  );
}

/* 5-col grid */
body.page-institutions .inst-s4-grid {
  display: grid;
  grid-template-columns: 180px repeat(4, 1fr);
}

/* Header cells */
body.page-institutions .inst-s4-h-cell {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

body.page-institutions .inst-s4-h-cell:last-child {
  border-right: none;
}

body.page-institutions .inst-s4-h-cell:first-child {
  background: transparent;
}

body.page-institutions .inst-s4-h-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  line-height: 1.5;
}

/* Label cells */
body.page-institutions .inst-s4-label-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: clamp(22px,3.2vh,38px) 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
}

body.page-institutions .inst-s4-label-cell--after {
  border-bottom: none;
}

body.page-institutions .inst-s4-badge {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-self: flex-start;
}

body.page-institutions .inst-s4-badge--before {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}

body.page-institutions .inst-s4-badge--after {
  background: rgba(34,197,94,0.1);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.2);
}

body.page-institutions .inst-s4-row-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

body.page-institutions .inst-s4-row-title--before {
  color: rgba(255,255,255,0.35);
}

body.page-institutions .inst-s4-row-title--after {
  color: rgba(255,255,255,0.9);
}

/* Data cells */
body.page-institutions .inst-s4-cell {
  padding: clamp(22px,3.2vh,38px) 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease;
}

body.page-institutions .inst-s4-cell:last-child {
  border-right: none;
}

body.page-institutions .inst-s4-cell:hover {
  background: rgba(255,255,255,0.02);
}

body.page-institutions .inst-s4-cell--after {
  border-bottom: none;
}

/* Red bottom bar on after cells */
body.page-institutions .inst-s4-cell--after::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: #FF2D2D;
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 8px rgba(255,45,45,0.4);
}

/* Metric numbers */
body.page-institutions .inst-s4-num {
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

body.page-institutions .inst-s4-num--before {
  color: rgba(255,255,255,0.22);
}

body.page-institutions .inst-s4-num--after {
  color: #ffffff;
}

body.page-institutions .inst-s4-suffix {
  font-size: 0.5em;
  font-weight: 700;
  letter-spacing: -0.02em;
  vertical-align: super;
  line-height: 0;
}

body.page-institutions .inst-s4-sub-txt {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.02em;
}

/* Uplift pills */
body.page-institutions .inst-s4-uplift {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s ease,
              transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

body.page-institutions .inst-s4-uplift.show {
  opacity: 1;
  transform: translateY(0);
}

body.page-institutions .inst-s4-uplift--up   { color: #22c55e; }
body.page-institutions .inst-s4-uplift--down { color: #22c55e; }

/* Footer */
body.page-institutions .inst-s4-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.01);
  gap: 24px;
}

body.page-institutions .inst-s4-foot-line {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  max-width: 560px;
}

body.page-institutions .inst-s4-foot-line strong {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* CTA button */
body.page-institutions .inst-s4-cta {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: #FF2D2D;
  border: none;
  border-radius: 8px;
  padding: 11px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(255,45,45,0.25);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

body.page-institutions .inst-s4-cta-arr {
  display: inline-block;
  transition: transform 0.2s ease;
}

/* ── Institutions .inst-s4-difference — hover & transitions (Phase 3) ── */

/* Glow breathe */
body.page-institutions .inst-s4-glow {
  animation: instS4GlowBreathe 6s ease-in-out infinite;
}

/* CTA hover */
body.page-institutions .inst-s4-cta {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.page-institutions .inst-s4-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -80%; width: 60%; height: 100%;
  background: linear-gradient(
    90deg, transparent, rgba(255,255,255,0.15), transparent
  );
  transition: left 0.5s ease;
}

body.page-institutions .inst-s4-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(255,45,45,0.38);
}

body.page-institutions .inst-s4-cta:hover::before {
  left: 150%;
}

body.page-institutions .inst-s4-cta:hover .inst-s4-cta-arr {
  transform: translateX(3px);
}

/* After cell hover — number scales */
body.page-institutions .inst-s4-cell--after
  .inst-s4-num--after {
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              text-shadow 0.2s ease;
}

body.page-institutions .inst-s4-cell--after:hover
  .inst-s4-num--after {
  transform: scale(1.06);
  text-shadow: 0 0 30px rgba(255,255,255,0.15);
}

@keyframes instS4GlowBreathe {
  0%,100% { opacity:1; }
  50%      { opacity:0.45; }
}

/* ── Institutions .inst-s4-difference — entrance animations (Phase 4) — .is-visible from Phase 5 ── */

/* ── INITIAL HIDDEN STATES ── */
body.page-institutions .inst-s4-eyebrow,
body.page-institutions .inst-s4-hw,
body.page-institutions .inst-s4-hr,
body.page-institutions .inst-s4-sub,
body.page-institutions .inst-s4-table,
body.page-institutions .inst-s4-cta {
  opacity: 0;
}

body.page-institutions .inst-s4-eyebrow,
body.page-institutions .inst-s4-hw,
body.page-institutions .inst-s4-hr,
body.page-institutions .inst-s4-sub {
  transform: translateY(12px);
}

body.page-institutions .inst-s4-table {
  transform: translateY(16px);
}

body.page-institutions .inst-s4-cta {
  transform: translateY(8px);
}

/* Before numbers start hidden */
body.page-institutions #inst-b0,
body.page-institutions #inst-b1,
body.page-institutions #inst-b2,
body.page-institutions #inst-b3 {
  opacity: 0;
}

/* ── VISIBLE STATES ── */
body.page-institutions .inst-s4-difference.is-visible
  .inst-s4-eyebrow {
  animation: instS4FadeUp 0.5s cubic-bezier(0.16,1,0.3,1)
             0.1s forwards;
}

body.page-institutions .inst-s4-difference.is-visible
  .inst-s4-hw {
  animation: instS4WordUp 0.6s cubic-bezier(0.16,1,0.3,1)
             0.2s forwards;
}

body.page-institutions .inst-s4-difference.is-visible
  .inst-s4-hr {
  animation: instS4WordUp 0.6s cubic-bezier(0.16,1,0.3,1)
             0.34s forwards;
}

body.page-institutions .inst-s4-difference.is-visible
  .inst-s4-sub {
  animation: instS4FadeUp 0.5s cubic-bezier(0.16,1,0.3,1)
             0.4s forwards;
}

body.page-institutions .inst-s4-difference.is-visible
  .inst-s4-table {
  animation: instS4TableIn 0.7s cubic-bezier(0.16,1,0.3,1)
             0.5s forwards;
}

/* ── KEYFRAMES ── */
@keyframes instS4FadeUp {
  from { opacity:0; transform:translateY(12px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes instS4WordUp {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes instS4TableIn {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  body.page-institutions .inst-s4-eyebrow,
  body.page-institutions .inst-s4-hw,
  body.page-institutions .inst-s4-hr,
  body.page-institutions .inst-s4-sub,
  body.page-institutions .inst-s4-table,
  body.page-institutions .inst-s4-cta,
  body.page-institutions #inst-b0,
  body.page-institutions #inst-b1,
  body.page-institutions #inst-b2,
  body.page-institutions #inst-b3 {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  body.page-institutions .inst-s4-uplift { opacity:1; transform:none; }
  body.page-institutions .inst-s4-cell--after::after {
    transform: scaleX(1);
  }
  body.page-institutions .inst-s4-glow { animation:none !important; }
}

/* ── Institutions: .inst-s5-how-it-works (Phase 2 layout) — #000, Inter via var(--font-sans) ── */

/* ── SECTION ── */
body.page-institutions .inst-s5-how-it-works {
  width: 100%;
  min-height: 100vh;
  background: #000000;
  font-family: var(--font-sans);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: stretch;
  gap: 5vw;
  padding-top: 120px;
  /* Extra space after pivot (“Live in 20 minutes…”) before .inst-s6-provocation */
  padding-bottom: clamp(100px, 14vh, 180px);
  padding-inline: var(--inset);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Glow */
body.page-institutions .inst-s5-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 560px; height: 480px;
  background: radial-gradient(
    ellipse, rgba(255,45,45,0.045) 0%, transparent 65%
  );
  pointer-events: none;
}

/* ── LEFT ── */
body.page-institutions .inst-s5-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

body.page-institutions .inst-s5-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

/* Steps container */
body.page-institutions .inst-s5-steps {
  display: flex; flex-direction: column;
  gap: 0; flex: 1; justify-content: center;
}

/* Individual step */
body.page-institutions .inst-s5-step {
  display: flex; align-items: stretch; gap: 20px;
  cursor: pointer;
  padding: clamp(18px,2.8vh,32px) 0;
  position: relative;
}

/* Timeline column */
body.page-institutions .inst-step-line-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: 0;
  flex-shrink: 0; width: 20px;
}

body.page-institutions .inst-step-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: background 0.4s ease, border-color 0.4s ease,
              box-shadow 0.4s ease,
              transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

body.page-institutions .inst-step-dot.active,
body.page-institutions .inst-step-dot--active {
  background: #FF2D2D;
  border-color: #FF2D2D;
  box-shadow: 0 0 12px rgba(255,45,45,0.7);
  transform: scale(1.3);
}

body.page-institutions .inst-step-connector {
  flex: 1; width: 1px;
  background: rgba(255,255,255,0.08);
  margin: 4px 0; position: relative;
  overflow: hidden; min-height: 20px;
}

body.page-institutions .inst-step-conn-fill {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 0%;
  background: #FF2D2D;
  box-shadow: 0 0 6px rgba(255,45,45,0.5);
  transition: height 0.8s cubic-bezier(0.16,1,0.3,1);
}

/* Step content */
body.page-institutions .inst-step-content {
  flex: 1; padding-bottom: 8px;
}

body.page-institutions .inst-step-num {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em; color: #FF2D2D;
  margin-bottom: 5px;
}

body.page-institutions .inst-step-title {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 900; letter-spacing: -0.035em;
  line-height: 0.92; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  transition: color 0.4s ease;
  margin-bottom: 12px;
}

body.page-institutions .inst-s5-step.active .inst-step-title,
body.page-institutions .inst-s5-step--active .inst-step-title {
  color: #ffffff;
}

body.page-institutions .inst-step-desc {
  font-size: clamp(12.5px,1.05vw,14px);
  font-weight: 400; line-height: 1.75;
  color: rgba(255,255,255,0.28);
  max-width: 340px;
  height: 0; overflow: hidden;
  opacity: 0;
  transition: height 0.4s ease,
              opacity 0.4s ease,
              color 0.4s ease;
}

body.page-institutions .inst-s5-step.active .inst-step-desc,
body.page-institutions .inst-s5-step--active .inst-step-desc {
  height: auto; opacity: 1;
  color: rgba(255,255,255,0.52);
}

body.page-institutions .inst-step-desc strong {
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}

body.page-institutions .inst-step-progress {
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px; overflow: hidden;
  margin-top: 16px;
}

body.page-institutions .inst-step-prog-fill {
  height: 100%; width: 0%;
  background: #FF2D2D;
  box-shadow: 0 0 8px rgba(255,45,45,0.6);
  border-radius: 2px;
}

/* Pivot */
body.page-institutions .inst-s5-pivot {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #FF2D2D; line-height: 1.55;
}

/* ── RIGHT ── */
body.page-institutions .inst-s5-right {
  display: flex; align-items: center;
}

/* Product window */
body.page-institutions .inst-prod-win {
  width: 100%;
  background: #0d0d0f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02),
    0 40px 100px rgba(0,0,0,0.75);
  display: flex; flex-direction: column;
  position: relative;
}

body.page-institutions .inst-prod-win::before {
  content: '';
  position: absolute;
  top: 0; left: 16px; right: 16px; height: 1px;
  background: linear-gradient(
    90deg, transparent, rgba(255,255,255,0.07), transparent
  );
}

/* Win bar */
body.page-institutions .inst-win-bar {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  flex-shrink: 0;
}

body.page-institutions .inst-win-dots { display: flex; gap: 5px; }

body.page-institutions .inst-win-dot {
  width: 8px; height: 8px; border-radius: 50%;
}

body.page-institutions .inst-win-dot:nth-child(1) { background: #FF5F57; }
body.page-institutions .inst-win-dot:nth-child(2) { background: #FEBC2E; }
body.page-institutions .inst-win-dot:nth-child(3) { background: #28C840; }

body.page-institutions .inst-win-title {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  transition: opacity 0.3s ease;
}

body.page-institutions .inst-win-status {
  display: flex; align-items: center; gap: 5px;
  font-size: 9px; font-weight: 700;
  color: #22c55e;
}

body.page-institutions .inst-win-status-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #22c55e;
}

/* Screens */
body.page-institutions .inst-win-screen {
  display: none; flex-direction: column;
  padding: 22px; gap: 14px;
  min-height: 420px;
}

body.page-institutions .inst-win-screen.active,
body.page-institutions .inst-win-screen--active {
  display: flex;
}

/* ── SCREEN 1 — ONBOARD ── */
body.page-institutions .inst-onb-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 4px;
}

body.page-institutions .inst-onb-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

body.page-institutions .inst-onb-counter {
  font-size: 26px; font-weight: 900;
  letter-spacing: -0.04em; color: #fff;
  display: flex; align-items: baseline; gap: 6px;
}

body.page-institutions .inst-onb-counter-sub {
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase; letter-spacing: 0.08em;
}

body.page-institutions .inst-student-list {
  display: flex; flex-direction: column;
  gap: 7px; flex: 1;
}

body.page-institutions .inst-student-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 7px;
  opacity: 0; transform: translateX(12px);
  transition: opacity 0.35s ease,
              transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

body.page-institutions .inst-student-row.visible {
  opacity: 1; transform: translateX(0);
}

body.page-institutions .inst-stu-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center;
  justify-content: center;
  font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,0.4); flex-shrink: 0;
}

body.page-institutions .inst-stu-info { flex: 1; min-width: 0; }

body.page-institutions .inst-stu-name {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.7);
  white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis;
}

body.page-institutions .inst-stu-college {
  font-size: 9px; font-weight: 500;
  color: rgba(255,255,255,0.25);
}

body.page-institutions .inst-stu-badge {
  font-size: 8px; font-weight: 700;
  padding: 2px 7px; border-radius: 4px;
  white-space: nowrap;
}

body.page-institutions .inst-stu-badge--new {
  background: rgba(255,45,45,0.1);
  color: #FF2D2D;
  border: 1px solid rgba(255,45,45,0.2);
}

body.page-institutions .inst-stu-badge--done {
  background: rgba(34,197,94,0.08);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.18);
}

body.page-institutions .inst-onb-foot {
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 9.5px; font-weight: 500;
  color: rgba(255,255,255,0.2);
  text-align: center; font-style: italic;
}

/* ── SCREEN 2 — PROOF ── */
body.page-institutions .inst-proof-student-header {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 9px; margin-bottom: 4px;
}

body.page-institutions .inst-ps-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center;
  justify-content: center;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.4); flex-shrink: 0;
}

body.page-institutions .inst-ps-info { flex: 1; }

body.page-institutions .inst-ps-name {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.8);
}

body.page-institutions .inst-ps-college {
  font-size: 9.5px; font-weight: 500;
  color: rgba(255,255,255,0.3);
}

body.page-institutions .inst-ps-score-ring {
  position: relative; width: 44px; height: 44px;
}

body.page-institutions .inst-ps-score-ring svg {
  transform: rotate(-90deg);
}

body.page-institutions .inst-ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.05);
  stroke-width: 2;
}

body.page-institutions .inst-ring-fg {
  fill: none;
  stroke: #FF2D2D;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  filter: drop-shadow(0 0 4px rgba(255,45,45,0.6));
  transition: stroke-dashoffset 1s cubic-bezier(0.16,1,0.3,1);
}

body.page-institutions .inst-ps-score-num {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  justify-content: center;
  font-size: 15px; font-weight: 900;
  color: #fff; letter-spacing: -0.03em;
}

body.page-institutions .inst-proof-signals {
  display: flex; flex-direction: column;
  gap: 9px; flex: 1;
}

body.page-institutions .inst-proof-sig {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 9px; opacity: 0;
  position: relative; overflow: hidden;
}

body.page-institutions .inst-proof-sig-icon {
  font-size: 13px; flex-shrink: 0;
  width: 20px; text-align: center; opacity: 0.3;
}

body.page-institutions .inst-proof-sig-body { flex: 1; min-width: 0; }

body.page-institutions .inst-proof-sig-title {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.01em; margin-bottom: 2px;
}

body.page-institutions .inst-proof-sig-sub {
  font-size: 9.5px; font-weight: 500;
  color: rgba(255,255,255,0.22);
}

body.page-institutions .inst-proof-sig-badges {
  display: flex; flex-direction: column;
  gap: 3px; opacity: 0;
  transition: opacity 0.4s ease;
}

body.page-institutions .inst-proof-sig-badges.show {
  opacity: 1;
}

body.page-institutions .inst-psig-badge {
  font-size: 7.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 4px;
  display: flex; align-items: center;
  gap: 3px; white-space: nowrap;
}

body.page-institutions .inst-psig-badge--v {
  background: rgba(255,45,45,0.08);
  color: #FF2D2D;
  border: 1px solid rgba(255,45,45,0.16);
}

body.page-institutions .inst-psig-badge--a {
  background: rgba(34,197,94,0.08);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.16);
}

body.page-institutions .inst-bdot {
  width: 3.5px; height: 3.5px; border-radius: 50%;
  flex-shrink: 0;
}

body.page-institutions .inst-psig-badge--v .inst-bdot {
  background: #FF2D2D;
}

body.page-institutions .inst-psig-badge--a .inst-bdot {
  background: #22c55e;
}

body.page-institutions .inst-proof-sig-scan {
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(
    90deg, transparent,
    rgba(34,197,94,0.06), transparent
  );
  pointer-events: none;
}

/* ── SCREEN 3 — PLACEMENTS ── */
body.page-institutions .inst-recruiter-notifs {
  display: flex; flex-direction: column;
  gap: 9px; flex: 1;
}

body.page-institutions .inst-notif {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 9px;
  opacity: 0; transform: translateX(16px);
  position: relative; overflow: hidden;
}

body.page-institutions .inst-notif-glow {
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(
    90deg, transparent,
    rgba(255,45,45,0.04), transparent
  );
  pointer-events: none;
}

body.page-institutions .inst-notif-icon {
  font-size: 13px; flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center;
  justify-content: center;
}

body.page-institutions .inst-notif-body { flex: 1; min-width: 0; }

body.page-institutions .inst-notif-title {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.72); margin-bottom: 2px;
}

body.page-institutions .inst-notif-sub {
  font-size: 9.5px; font-weight: 500;
  color: rgba(255,255,255,0.28);
}

body.page-institutions .inst-notif-badge {
  font-size: 8.5px; font-weight: 700;
  padding: 3px 9px; border-radius: 5px;
  white-space: nowrap; flex-shrink: 0;
}

body.page-institutions .inst-notif-badge--view {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.08);
}

body.page-institutions .inst-notif-badge--short {
  background: rgba(255,200,50,0.08);
  color: rgba(255,200,50,0.8);
  border: 1px solid rgba(255,200,50,0.18);
}

body.page-institutions .inst-notif-badge--offer {
  background: rgba(34,197,94,0.1);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.2);
}

body.page-institutions .inst-placement-strip {
  padding: 12px 14px;
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

body.page-institutions .inst-pc-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}

body.page-institutions .inst-pc-sub {
  font-size: 8.5px; font-weight: 500;
  color: rgba(255,255,255,0.18);
  font-style: italic; margin-top: 3px;
}

body.page-institutions .inst-pc-num {
  font-size: 32px; font-weight: 900;
  letter-spacing: -0.04em; color: #22c55e;
  line-height: 1;
}

/* ── Institutions .inst-s5-how-it-works — hover & transitions (Phase 3) ── */

/* Glow breathe */
body.page-institutions .inst-s5-glow {
  animation: instS5GlowBreathe 6s ease-in-out infinite;
}

/* Live dot pulse */
body.page-institutions .inst-win-status-dot {
  animation: instS5DotPulse 1.8s ease infinite;
}

/* Badge dots pulse */
body.page-institutions .inst-bdot {
  animation: instS5DotPulse 2s ease infinite;
}

/* Step hover — brighten inactive step */
body.page-institutions .inst-s5-step:not(.active):not(.inst-s5-step--active):hover
  .inst-step-title {
  color: rgba(255,255,255,0.5);
  transition: color 0.25s ease;
}

/* Win title fade on screen change */
body.page-institutions .inst-win-title {
  transition: opacity 0.3s ease;
}

/* Screen fade transition */
body.page-institutions .inst-win-screen {
  transition: opacity 0.4s ease;
}

/* Notif hover */
body.page-institutions .inst-notif {
  transition: background 0.2s ease;
}

body.page-institutions .inst-notif:hover {
  background: rgba(255,255,255,0.03);
}

/* Proof sig hover */
body.page-institutions .inst-proof-sig {
  transition: background 0.2s ease;
}

body.page-institutions .inst-proof-sig:hover {
  background: rgba(255,255,255,0.04);
}

@keyframes instS5GlowBreathe {
  0%,100% { opacity:1; }
  50%      { opacity:0.45; }
}

@keyframes instS5DotPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.3; transform:scale(0.6); }
}

@keyframes instS5NotifIn {
  from { opacity:0; transform:translateX(16px); }
  to   { opacity:1; transform:translateX(0); }
}

@keyframes instS5ScanAnim {
  0%   { left:-100%; opacity:1; }
  100% { left:200%; opacity:0; }
}

/* ── Institutions .inst-s5-how-it-works — entrance animations (Phase 4) — .is-visible from Phase 5 ── */

/* ── INITIAL HIDDEN STATES ── */
body.page-institutions .inst-s5-eyebrow,
body.page-institutions .inst-s5-step,
body.page-institutions .inst-s5-pivot,
body.page-institutions .inst-s5-right {
  opacity: 0;
}

body.page-institutions .inst-s5-eyebrow,
body.page-institutions .inst-s5-pivot {
  transform: translateY(12px);
}

body.page-institutions .inst-s5-step {
  transform: translateY(10px);
}

body.page-institutions .inst-s5-right {
  transform: translateX(28px) scale(0.97);
}

/* ── VISIBLE STATES ── */
body.page-institutions .inst-s5-how-it-works.is-visible
  .inst-s5-eyebrow {
  animation: instS5FadeUp 0.5s cubic-bezier(0.16,1,0.3,1)
             0.1s forwards;
}

body.page-institutions .inst-s5-how-it-works.is-visible
  .inst-s5-steps .inst-s5-step:nth-child(1) {
  animation: instS5FadeUp 0.5s cubic-bezier(0.16,1,0.3,1)
             0.2s forwards;
}

body.page-institutions .inst-s5-how-it-works.is-visible
  .inst-s5-steps .inst-s5-step:nth-child(2) {
  animation: instS5FadeUp 0.5s cubic-bezier(0.16,1,0.3,1)
             0.35s forwards;
}

body.page-institutions .inst-s5-how-it-works.is-visible
  .inst-s5-steps .inst-s5-step:nth-child(3) {
  animation: instS5FadeUp 0.5s cubic-bezier(0.16,1,0.3,1)
             0.5s forwards;
}

body.page-institutions .inst-s5-how-it-works.is-visible
  .inst-s5-pivot {
  animation: instS5FadeUp 0.6s cubic-bezier(0.16,1,0.3,1)
             0.7s forwards;
}

body.page-institutions .inst-s5-how-it-works.is-visible
  .inst-s5-right {
  animation: instS5CardIn 0.9s cubic-bezier(0.16,1,0.3,1)
             0.4s forwards;
}

/* ── KEYFRAMES ── */
@keyframes instS5FadeUp {
  from { opacity:0; transform:translateY(12px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes instS5CardIn {
  from { opacity:0; transform:translateX(28px) scale(0.97); }
  to   { opacity:1; transform:translateX(0) scale(1); }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  body.page-institutions .inst-s5-eyebrow,
  body.page-institutions .inst-s5-step,
  body.page-institutions .inst-s5-pivot,
  body.page-institutions .inst-s5-right {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  body.page-institutions .inst-s5-step--active .inst-step-title,
  body.page-institutions .inst-s5-step.active .inst-step-title {
    color: #ffffff;
  }
  body.page-institutions .inst-s5-step--active .inst-step-desc,
  body.page-institutions .inst-s5-step.active .inst-step-desc {
    height: auto; opacity: 1;
  }
  body.page-institutions .inst-s5-glow,
  body.page-institutions .inst-win-status-dot,
  body.page-institutions .inst-bdot {
    animation: none !important;
  }
}

/* ── Institutions: .inst-s6 / .inst-s7 (Phase 2 layout) — #000, Inter via var(--font-sans) ── */

/* ══════════════════════════════════
   S6 — PROVOCATION
══════════════════════════════════ */

/* Match companies page .r6-provocation — red line → headline, sub → nudge, gap before S7 */
body.page-institutions .inst-s6-provocation {
  width: 100%;
  min-height: clamp(560px, 72vh, 920px);
  background: #000000;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 120px;
  padding-bottom: var(--section-gap-y);
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  padding-inline: var(--inset);
  box-sizing: border-box;
}

/* Top red accent line */
body.page-institutions .inst-s6-line {
  position: absolute;
  top: 0;
  left: var(--inset);
  right: var(--inset);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,45,45,0.5),
    transparent
  );
  transform-origin: center;
}

/* Red glow — top centre */
body.page-institutions .inst-s6-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(255,45,45,0.065) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* Headline — align with .page-recruiters .r6-hl */
body.page-institutions .inst-s6-hl {
  text-align: center;
  font-size: clamp(3rem, 9vw, 8.25rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  padding-block: 0.06em 0.12em;
}

body.page-institutions .inst-s6-l1 {
  display: block;
  color: rgba(255,255,255,0.32);
}

body.page-institutions .inst-s6-l2 {
  display: block;
  color: #ffffff;
}

body.page-institutions .inst-s6-l3 {
  display: block;
  color: #FF2D2D;
  text-shadow: 0 0 80px rgba(255,45,45,0.4);
}

/* Sub line — align with .r6-sub (space to “Keep reading” via section min-height + absolute nudge) */
body.page-institutions .inst-s6-sub {
  margin-top: 24px;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  text-align: center;
  position: relative;
  z-index: 1;
}

body.page-institutions .inst-s6-sub strong {
  color: rgba(255,255,255,0.70);
  font-weight: 600;
}

/* Scroll nudge */
body.page-institutions .inst-s6-nudge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  /* Always keep X centering in transform; entrance keyframes use translate(-50%, y). */
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

body.page-institutions .inst-s6-nudge-bar {
  width: 1px;
  height: 28px;
  background: linear-gradient(
    to bottom,
    rgba(255,45,45,0.55),
    transparent
  );
}

body.page-institutions .inst-s6-nudge-txt {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}

/* ══════════════════════════════════
   S7 — FOUNDING INSTITUTION
══════════════════════════════════ */

/* Match companies page .r7-founding-partner — gap after S6 + padding before eyebrow */
body.page-institutions .inst-s7-founding {
  width: 100%;
  min-height: 100vh;
  background: #000000;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: var(--section-gap-y);
  padding-inline: var(--inset);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  gap: clamp(36px, 5vh, 60px);
}

/* Top border */
body.page-institutions .inst-s7-border {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

/* Ambient glow */
body.page-institutions .inst-s7-glow {
  position: absolute;
  bottom: -80px; right: -40px;
  width: 700px; height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(255,45,45,0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* Header */
body.page-institutions .inst-s7-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

body.page-institutions .inst-s7-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 14px;
}

body.page-institutions .inst-s7-hl {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

body.page-institutions .inst-s7-hw { color: #ffffff; }
body.page-institutions .inst-s7-hr { color: #FF2D2D; }

body.page-institutions .inst-s7-hook {
  max-width: 320px;
  align-self: flex-end;
  text-align: right;
}

body.page-institutions .inst-s7-hook-main {
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

body.page-institutions .inst-s7-hook-sub {
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

body.page-institutions .inst-s7-hook-sub strong {
  color: rgba(255,255,255,0.62);
  font-weight: 600;
}

/* Benefits grid */
body.page-institutions .inst-s7-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

body.page-institutions .inst-s7-benefit {
  background: #000000;
  padding: clamp(28px, 3vw, 44px)
           clamp(24px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Ghost number */
body.page-institutions .inst-s7-benefit-ghost {
  position: absolute;
  bottom: -16px; right: -6px;
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.028);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.4s ease,
              transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

body.page-institutions .inst-s7-benefit-num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #FF2D2D;
}

body.page-institutions .inst-s7-benefit-phrase {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  text-transform: uppercase;
  color: #ffffff;
}

body.page-institutions .inst-s7-benefit-phrase span {
  color: #FF2D2D;
}

body.page-institutions .inst-s7-benefit-whisper {
  font-size: clamp(11.5px, 0.95vw, 13px);
  font-weight: 400;
  line-height: 1.62;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
}

body.page-institutions .inst-s7-benefit-whisper strong {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* CTA block */
body.page-institutions .inst-s7-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Spots */
body.page-institutions .inst-s7-spots {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

body.page-institutions .inst-s7-spots-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FF2D2D;
  box-shadow: 0 0 6px rgba(255,45,45,0.5);
}

/* CTA button */
body.page-institutions .inst-s7-btn {
  background: #FF2D2D;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 18px 48px;
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(255,45,45,0.3);
}

body.page-institutions .inst-s7-btn-arrow {
  font-size: 16px;
  display: inline-block;
}

body.page-institutions .inst-s7-btn-sub {
  font-size: 10.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.20);
  letter-spacing: 0.02em;
  margin-top: -8px;
}

/* Trust strip */
body.page-institutions .inst-s7-trust-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

body.page-institutions .inst-s7-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.32);
  padding: 0 16px;
  white-space: nowrap;
}

body.page-institutions .inst-s7-trust-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.1);
}

body.page-institutions .inst-s7-t-check {
  color: #22c55e;
  font-size: 10px;
  font-weight: 700;
}

/* ── Institutions .inst-s6 / .inst-s7 — hover & transitions (Phase 3) ── */

/* S6 glow breathe */
body.page-institutions .inst-s6-glow {
  animation: instS6GlowBreathe 5s ease-in-out infinite;
}

/* S6 nudge bar pulse */
body.page-institutions .inst-s6-nudge-bar {
  animation: instS6BarPulse 1.8s ease-in-out infinite;
}

/* S7 glow breathe */
body.page-institutions .inst-s7-glow {
  animation: instS7GlowBreathe 6s ease-in-out 3s infinite;
}

/* S7 spots dot pulse */
body.page-institutions .inst-s7-spots-dot {
  animation: instS7DotPulse 1.5s ease infinite;
}

/* Benefit card hover */
body.page-institutions .inst-s7-benefit {
  transition: background 0.3s ease;
}

body.page-institutions .inst-s7-benefit:hover {
  background: #070707;
}

/* Red accent line sweeps in on hover */
body.page-institutions .inst-s7-benefit::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(
    90deg, #FF2D2D, transparent 70%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

body.page-institutions .inst-s7-benefit:hover::after {
  transform: scaleX(1);
}

/* Ghost number lifts and reddens */
body.page-institutions .inst-s7-benefit:hover
  .inst-s7-benefit-ghost {
  color: rgba(255,45,45,0.055);
  transform: scale(1.05) translateY(-4px);
}

/* CTA button hover */
body.page-institutions .inst-s7-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.page-institutions .inst-s7-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -80%; width: 60%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  transition: left 0.55s ease;
}

body.page-institutions .inst-s7-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(255,45,45,0.42);
}

body.page-institutions .inst-s7-btn:hover::before {
  left: 150%;
}

body.page-institutions .inst-s7-btn:active {
  transform: translateY(0);
}

body.page-institutions .inst-s7-btn-arrow {
  transition: transform 0.2s ease;
}

body.page-institutions .inst-s7-btn:hover .inst-s7-btn-arrow {
  transform: translateX(5px);
}

@keyframes instS6GlowBreathe {
  0%,100% { opacity:1; }
  50%      { opacity:0.45; }
}

@keyframes instS6BarPulse {
  0%,100% { opacity:1; transform:scaleY(1); }
  50%      { opacity:0.3; transform:scaleY(0.6); }
}

@keyframes instS7GlowBreathe {
  0%,100% { opacity:1; }
  50%      { opacity:0.45; }
}

@keyframes instS7DotPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.3; transform:scale(0.6); }
}

/* ── Institutions .inst-s6 / .inst-s7 — entrance animations (Phase 4) — .is-visible from Phase 5 ── */

/* ══ S6 — INITIAL STATES ══ */
body.page-institutions .inst-s6-line {
  transform: scaleX(0);
  opacity: 0;
}

body.page-institutions .inst-s6-l1,
body.page-institutions .inst-s6-l2,
body.page-institutions .inst-s6-l3,
body.page-institutions .inst-s6-sub,
body.page-institutions .inst-s6-nudge {
  opacity: 0;
}

body.page-institutions .inst-s6-l1,
body.page-institutions .inst-s6-l2,
body.page-institutions .inst-s6-l3 {
  transform: translateY(22px) skewY(1.5deg);
}

body.page-institutions .inst-s6-sub {
  transform: translateY(12px);
}

body.page-institutions .inst-s6-nudge {
  transform: translate(-50%, 12px);
}

/* ── S6 VISIBLE STATES ── */
body.page-institutions .inst-s6-provocation.is-visible
  .inst-s6-line {
  animation: instS6LineReveal 1s cubic-bezier(0.16,1,0.3,1)
             0.1s forwards;
}

body.page-institutions .inst-s6-provocation.is-visible
  .inst-s6-l1 {
  animation: instS6WordDrop 0.65s cubic-bezier(0.16,1,0.3,1)
             0.25s forwards;
}

body.page-institutions .inst-s6-provocation.is-visible
  .inst-s6-l2 {
  animation: instS6WordDrop 0.65s cubic-bezier(0.16,1,0.3,1)
             0.42s forwards;
}

body.page-institutions .inst-s6-provocation.is-visible
  .inst-s6-l3 {
  animation: instS6WordDrop 0.65s cubic-bezier(0.16,1,0.3,1)
             0.58s forwards;
}

body.page-institutions .inst-s6-provocation.is-visible
  .inst-s6-sub {
  animation: instS6FadeUp 0.6s cubic-bezier(0.16,1,0.3,1)
             0.9s forwards;
}

body.page-institutions .inst-s6-provocation.is-visible
  .inst-s6-nudge {
  animation: instS6NudgeFadeUp 0.5s ease 1.3s forwards;
}

/* ══ S7 — INITIAL STATES ══ */
body.page-institutions .inst-s7-eyebrow,
body.page-institutions .inst-s7-hl,
body.page-institutions .inst-s7-hook,
body.page-institutions .inst-s7-benefit,
body.page-institutions .inst-s7-cta-block {
  opacity: 0;
}

body.page-institutions .inst-s7-eyebrow,
body.page-institutions .inst-s7-hl,
body.page-institutions .inst-s7-hook {
  transform: translateY(16px);
}

body.page-institutions .inst-s7-benefit {
  transform: translateY(24px) scale(0.98);
}

body.page-institutions .inst-s7-cta-block {
  transform: translateY(16px);
}

/* ── S7 VISIBLE STATES ── */
body.page-institutions .inst-s7-founding.is-visible
  .inst-s7-eyebrow {
  animation: instS7FadeUp 0.6s cubic-bezier(0.16,1,0.3,1)
             0.1s forwards;
}

body.page-institutions .inst-s7-founding.is-visible
  .inst-s7-hl {
  animation: instS7FadeUp 0.7s cubic-bezier(0.16,1,0.3,1)
             0.2s forwards;
}

body.page-institutions .inst-s7-founding.is-visible
  .inst-s7-hook {
  animation: instS7FadeUp 0.7s cubic-bezier(0.16,1,0.3,1)
             0.32s forwards;
}

body.page-institutions .inst-s7-founding.is-visible
  .inst-s7-benefit:nth-child(1) {
  animation: instS7CardSpring 0.8s
             cubic-bezier(0.34,1.56,0.64,1) 0.5s forwards;
}

body.page-institutions .inst-s7-founding.is-visible
  .inst-s7-benefit:nth-child(2) {
  animation: instS7CardSpring 0.8s
             cubic-bezier(0.34,1.56,0.64,1) 0.65s forwards;
}

body.page-institutions .inst-s7-founding.is-visible
  .inst-s7-benefit:nth-child(3) {
  animation: instS7CardSpring 0.8s
             cubic-bezier(0.34,1.56,0.64,1) 0.8s forwards;
}

/* ── Institutions responsive: tablet + mobile ───────────────────────────── */
@media (max-width: 1024px) {
  body.page-institutions .inst-s2-proof-gap,
  body.page-institutions .inst-s3-journey,
  body.page-institutions .inst-s5-how-it-works,
  body.page-institutions .inst-s6-provocation,
  body.page-institutions .inst-s7-founding {
    height: auto;
    min-height: unset;
    overflow: visible;
  }

  body.page-institutions .inst-s2-proof-gap {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 72px;
    padding-bottom: 64px;
  }

  body.page-institutions .inst-s2-left,
  body.page-institutions .inst-s2-right {
    width: 100%;
  }

  body.page-institutions .inst-s2-hl {
    font-size: clamp(2.6rem, 10.5vw, 4.4rem);
  }

  body.page-institutions .inst-s2-pivot {
    max-width: 100%;
  }

  body.page-institutions .inst-proof-gap {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

  body.page-institutions .inst-pg-bar,
  body.page-institutions .inst-pg-counter {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  body.page-institutions .inst-counter-label,
  body.page-institutions .inst-pg-verdict-txt {
    white-space: normal;
  }

  body.page-institutions .inst-s3-journey {
    padding-top: 68px;
    padding-bottom: 64px;
  }

  body.page-institutions .inst-s3-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  body.page-institutions .inst-s3-sub {
    text-align: left;
    max-width: 100%;
  }

  body.page-institutions .inst-s3-timeline {
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 12px;
  }

  body.page-institutions .inst-tl-markers {
    min-width: 720px;
  }

  body.page-institutions .inst-s3-cards {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 12px;
  }

  body.page-institutions .inst-s3-card {
    width: 260px;
    min-width: 260px;
  }

  body.page-institutions .inst-s4-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  body.page-institutions .inst-s4-sub {
    max-width: 100%;
    text-align: left;
  }

  body.page-institutions .inst-s4-table {
    overflow-x: auto;
    overflow-y: visible;
  }

  body.page-institutions .inst-s4-grid {
    min-width: 920px;
  }

  body.page-institutions .inst-s4-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  body.page-institutions .inst-s5-how-it-works {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  body.page-institutions .inst-s5-left,
  body.page-institutions .inst-s5-right {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  body.page-institutions .inst-step-desc {
    max-width: 100%;
  }

  body.page-institutions .inst-prod-win {
    max-width: 760px;
    margin: 0 auto;
  }

  body.page-institutions .inst-s6-provocation {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  body.page-institutions .inst-s6-sub {
    max-width: 100%;
  }

  body.page-institutions .inst-s7-founding {
    padding-top: 72px;
    padding-bottom: 64px;
  }

  body.page-institutions .inst-s7-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  body.page-institutions .inst-s7-hook {
    max-width: 100%;
    text-align: left;
  }

  body.page-institutions .inst-s7-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-institutions .inst-s7-trust-strip {
    justify-content: flex-start;
    gap: 12px;
  }

  body.page-institutions .inst-s7-trust-item {
    white-space: normal;
    padding: 0;
  }

  body.page-institutions .inst-s7-trust-item:not(:last-child) {
    border-right: none;
  }
}

@media (max-width: 767px) {
  body.page-institutions .inst-s2-proof-gap,
  body.page-institutions .inst-s3-journey,
  body.page-institutions .inst-s4-difference,
  body.page-institutions .inst-s5-how-it-works,
  body.page-institutions .inst-s6-provocation,
  body.page-institutions .inst-s7-founding {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  body.page-institutions .inst-s2-hl,
  body.page-institutions .inst-s4-hl,
  body.page-institutions .inst-s6-hl,
  body.page-institutions .inst-s7-hl {
    font-size: clamp(2rem, 13.2vw, 3.2rem);
    line-height: 0.9;
  }

  body.page-institutions .inst-def-text,
  body.page-institutions .inst-s3-sub,
  body.page-institutions .inst-s4-sub,
  body.page-institutions .inst-step-desc,
  body.page-institutions .inst-s6-sub,
  body.page-institutions .inst-s7-hook-sub {
    font-size: 13px;
    line-height: 1.6;
  }

  body.page-institutions .inst-pg-cols {
    grid-template-columns: 1fr;
  }

  body.page-institutions .inst-pg-col--recorded {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  body.page-institutions .inst-s3-hl {
    font-size: clamp(1.8rem, 11vw, 2.8rem);
    line-height: 0.96;
  }

  body.page-institutions .inst-tl-markers {
    min-width: 640px;
  }

  body.page-institutions .inst-s3-cards {
    flex-direction: column;
    overflow: visible;
    padding-bottom: 0;
  }

  body.page-institutions .inst-s3-card {
    width: 100%;
    min-width: 0;
  }

  body.page-institutions .inst-s4-grid {
    min-width: 760px;
  }

  body.page-institutions .inst-s4-num {
    font-size: clamp(2rem, 9.2vw, 3rem);
  }

  body.page-institutions .inst-s4-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  body.page-institutions .inst-s5-step {
    gap: 12px;
    padding: 16px 0;
  }

  body.page-institutions .inst-step-title {
    font-size: clamp(1.7rem, 9.6vw, 2.3rem);
  }

  body.page-institutions .inst-win-screen {
    min-height: 360px;
    padding: 14px;
    gap: 10px;
  }

  body.page-institutions .inst-s6-nudge {
    margin-top: 20px;
  }

  body.page-institutions .inst-s7-benefits {
    grid-template-columns: 1fr;
  }

  body.page-institutions .inst-s7-btn {
    width: 100%;
    justify-content: center;
  }

  body.page-institutions .inst-s7-btn-sub {
    white-space: normal;
  }
}

body.page-institutions .inst-s7-founding.is-visible
  .inst-s7-cta-block {
  animation: instS7FadeUp 0.7s cubic-bezier(0.16,1,0.3,1)
             1.1s forwards;
}

/* ── KEYFRAMES ── */
@keyframes instS6LineReveal {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

@keyframes instS6WordDrop {
  from { opacity:0; transform:translateY(22px) skewY(1.5deg); }
  to   { opacity:1; transform:translateY(0) skewY(0deg); }
}

@keyframes instS6FadeUp {
  from { opacity:0; transform:translateY(12px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes instS6NudgeFadeUp {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes instS7FadeUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes instS7CardSpring {
  from { opacity:0; transform:translateY(24px) scale(0.98); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  body.page-institutions .inst-s6-line,
  body.page-institutions .inst-s6-l1,
  body.page-institutions .inst-s6-l2,
  body.page-institutions .inst-s6-l3,
  body.page-institutions .inst-s6-sub,
  body.page-institutions .inst-s7-eyebrow,
  body.page-institutions .inst-s7-hl,
  body.page-institutions .inst-s7-hook,
  body.page-institutions .inst-s7-benefit,
  body.page-institutions .inst-s7-cta-block {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  body.page-institutions .inst-s6-nudge {
    opacity: 1;
    transform: translate(-50%, 0);
    animation: none !important;
  }
  body.page-institutions .inst-s6-glow,
  body.page-institutions .inst-s6-nudge-bar,
  body.page-institutions .inst-s7-glow,
  body.page-institutions .inst-s7-spots-dot {
    animation: none !important;
  }
}

/* S2 Invisible Filter */
#s2-invisible-filter {
  background: #000000;
  padding: var(--section-gap-y) 0 var(--section-gap-y);
  font-family: var(--font-sans);
  color: #ffffff;
  /* Separator is .recruiters-section-divider after hero (same as Companies page) */
  border-top: none;
}

/* Align with nav (.nav uses margin-inline 8vw + padding-inline clamp) */
#s2-invisible-filter .section-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  padding-left: calc(8vw + clamp(16px, 1.5vw, 28px));
  padding-right: calc(8vw + clamp(16px, 1.5vw, 28px));
  box-sizing: border-box;
  position: relative;
}

#s2-invisible-filter .s2-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
  align-items: start;
}

/* S2 entrance – initial states (only when section has not received .in-view) */
#s2-invisible-filter .s2-header-left {
  opacity: 0;
  transform: translateY(32px);
}

#s2-invisible-filter .s2-header-right {
  opacity: 0;
  transform: translateY(24px);
}

#s2-invisible-filter .section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  transition: letter-spacing 0.3s ease;
  opacity: 0;
}

#s2-invisible-filter.in-view .s2-header-left {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease 0s, transform 0.7s ease 0s;
}

#s2-invisible-filter.in-view .s2-header-right {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

#s2-invisible-filter.in-view .section-label {
  opacity: 1;
  letter-spacing: 2.5px;
  transition: opacity 0.5s ease, letter-spacing 0.5s ease;
}

#s2-invisible-filter .s2-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 72px;
  line-height: 0.95;
  text-transform: uppercase;
}

#s2-invisible-filter .headline-primary {
  color: #ffffff;
  display: block;
}

#s2-invisible-filter .headline-dim {
  color: rgba(255,255,255,0.3);
  display: block;
}

#s2-invisible-filter .s2-subtext {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 380px;
  margin-left: auto;
  padding-top: 48px;
}

/* ATS container + ambient glow */
#s2-invisible-filter .ats-container {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  max-width: 960px;
  margin: 0 auto;
  transition: border-color 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

#s2-invisible-filter.in-view .ats-container {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, border-color 0.3s ease;
  animation: s2AtsBorderGlow 1.2s ease 0.8s forwards;
}

@keyframes s2AtsBorderGlow {
  0%, 100% { border-color: rgba(255,255,255,0.1); }
  50% { border-color: var(--text-on-dark-soft); }
}

#s2-invisible-filter .ats-container:hover {
  border-color: var(--text-on-dark-soft);
}

#s2-invisible-filter .ats-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse 700px 400px, rgba(255,45,45,0.03) 0%, transparent 70%);
  pointer-events: none;
}

#s2-invisible-filter .ats-chrome {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

#s2-invisible-filter .chrome-dots {
  display: flex;
  gap: 6px;
}

#s2-invisible-filter .chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

#s2-invisible-filter .chrome-dot:nth-child(1) {
  background: rgba(255,100,100,0.3);
}

#s2-invisible-filter .chrome-dot:nth-child(2) {
  background: rgba(255,200,100,0.2);
}

#s2-invisible-filter .chrome-dot:nth-child(3) {
  background: rgba(100,255,100,0.2);
}

#s2-invisible-filter .chrome-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-on-dark-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 8px;
}

#s2-invisible-filter .chrome-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FF2D2D;
}

#s2-invisible-filter .live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF2D2D;
  animation: s2LivePulse 1.5s ease-in-out infinite;
}

@keyframes s2LivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

#s2-invisible-filter .ats-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 300px 1fr;
}

#s2-invisible-filter .filter-panel {
  background: rgba(255,255,255,0.025);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#s2-invisible-filter .filter-panel-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
}

#s2-invisible-filter .filter-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

#s2-invisible-filter .filter-group label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
}

#s2-invisible-filter .filter-count {
  font-size: 10px;
  font-weight: 700;
  background: rgba(255,45,45,0.15);
  color: #FF2D2D;
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: auto;
}

#s2-invisible-filter .filter-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

#s2-invisible-filter .college-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px;
}

#s2-invisible-filter .college-tags.has-tags {
  border-color: rgba(255,45,45,0.3);
}

#s2-invisible-filter .college-tag {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
}

#s2-invisible-filter .college-tag.visible {
  opacity: 1;
  transform: translateY(0);
}

#s2-invisible-filter .college-tag:hover {
  background: rgba(255,255,255,0.14);
  cursor: default;
}

#s2-invisible-filter .tag-check {
  color: #FF2D2D;
  font-size: 10px;
}

#s2-invisible-filter .filter-typing {
  font-size: 11px;
  color: var(--text-on-dark-muted);
  min-height: 16px;
  padding: 0 4px;
}

#s2-invisible-filter .filter-apply-btn {
  background: #FF2D2D;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  opacity: 0.3;
  cursor: default;
}

#s2-invisible-filter .filter-apply-btn.ready {
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.15s ease;
}

#s2-invisible-filter .filter-apply-btn.ready:hover {
  transform: scale(1.01);
  filter: brightness(1.1);
}

#s2-invisible-filter .filter-pool-note {
  font-size: 10px;
  color: var(--text-on-dark-dim);
  text-align: center;
  font-weight: 500;
}

#s2-invisible-filter .results-panel {
  overflow: hidden;
}

#s2-invisible-filter .results-col-header {
  display: grid;
  grid-template-columns: 32px 1fr 160px 70px 70px;
  gap: 12px;
  padding: 8px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

#s2-invisible-filter .col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
}

#s2-invisible-filter .results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
}

#s2-invisible-filter .results-count {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}

#s2-invisible-filter .results-count.alarming {
  color: #FF2D2D;
  animation: s2Flicker 2s ease-in-out infinite;
}

@keyframes s2Flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

#s2-invisible-filter .results-sort {
  font-size: 11px;
  color: var(--text-on-dark-soft);
}

#s2-invisible-filter .student-row {
  display: grid;
  grid-template-columns: 32px 1fr 160px 70px 70px;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease, background 0.15s ease;
}

#s2-invisible-filter .student-row:not(.filtered-out):hover {
  background: rgba(255,255,255,0.03);
}

#s2-invisible-filter .row-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-on-dark-soft);
}

#s2-invisible-filter .student-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

#s2-invisible-filter .student-college {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-on-dark-dim);
}

#s2-invisible-filter .student-cgpa {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
}

#s2-invisible-filter .student-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

#s2-invisible-filter .remove-flash {
  position: absolute;
  right: 16px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FF2D2D;
  opacity: 0;
  transition: opacity 0.2s ease;
}

#s2-invisible-filter .student-row.filtered-out {
  animation: s2FilterOut 0.55s ease forwards;
}

@keyframes s2FilterOut {
  0% {
    opacity: 1;
    max-height: 46px;
  }
  30% {
    background: rgba(255,45,45,0.04);
  }
  100% {
    opacity: 0;
    max-height: 0;
    padding: 0;
    border: none;
  }
}

#s2-invisible-filter .student-row.filtered-out .remove-flash {
  opacity: 1;
}

#s2-invisible-filter .student-row.survived {
  background: rgba(255,255,255,0.015);
}

#s2-invisible-filter .knockout-wrap {
  margin-top: 100px;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.9s ease;
}

#s2-invisible-filter .knockout-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

#s2-invisible-filter .knockout-line {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  line-height: 1.1;
}

#s2-invisible-filter .knockout-wrap.visible .knockout-line {
  text-shadow: 0 0 40px rgba(255,255,255,0.06);
}

#s2-invisible-filter .knockout-sub {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-on-dark-dim);
}

#s2-invisible-filter .knockout-sub span {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

#s2-invisible-filter .signal-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,45,45,0.5), transparent);
  margin: 28px auto 0;
  opacity: 0;
  transition: opacity 0.6s ease 0.5s;
}

#s2-invisible-filter .knockout-wrap.visible .signal-line {
  opacity: 1;
}

#s2-invisible-filter .knockout-pivot {
  margin-top: 28px;
  font-size: 12px;
  font-weight: 600;
  color: #FF2D2D;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Institutions page: divider between sections */
#institutions-content {
  border-top: 1px solid var(--border-1);
}

/* ----- Section 3: Two Realities (institutions.njk — after full Section 2) ----- */
/* Horizontal alignment matches .nav (logo line / CTA line) */
#s3-two-realities {
  background: #000000;
  padding: var(--section-gap-y) 0 var(--section-gap-y);
  font-family: var(--font-sans);
  color: #ffffff;
  border-top: 1px solid var(--border-1);
}

/* Extra space below Problem section + divider, before Two Realities content */
body.page-institutions #s3-two-realities {
  padding: calc(var(--section-gap-y) + 56px) 0 var(--section-gap-y);
}

#s3-two-realities .section-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  padding-left: calc(8vw + clamp(16px, 1.5vw, 28px));
  padding-right: calc(8vw + clamp(16px, 1.5vw, 28px));
  box-sizing: border-box;
  position: relative;
}

#s3-two-realities .s3-header {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}

#s3-two-realities .s3-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

#s3-two-realities .s3-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -1.5px;
  color: #fff;
}

#s3-two-realities .s3-subtext {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.65;
  text-align: right;
  max-width: 340px;
  margin-left: auto;
}

#s3-two-realities .student-strip {
  margin: 0;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px 12px 0 0;
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 16px;
}

#s3-two-realities .student-ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

#s3-two-realities .student-info {
  flex: 1;
}

#s3-two-realities .student-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

#s3-two-realities .student-meta {
  font-size: 12px;
  color: var(--text-on-dark-muted);
}

#s3-two-realities .student-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 4px 10px;
}

/* Split layout — full Two Realities section */
#s3-two-realities .split {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  align-items: stretch;
}

#s3-two-realities .split-line {
  background: #ff2d2d;
  position: relative;
  z-index: 2;
  min-height: 100%;
  align-self: stretch;
}

#s3-two-realities .split-line::before {
  content: 'VS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ff2d2d;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 6px 8px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 3;
}

#s3-two-realities .side-without {
  padding: 40px 40px 48px;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

#s3-two-realities .side-without::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 0;
}

#s3-two-realities .side-without > * {
  position: relative;
  z-index: 1;
}

#s3-two-realities .side-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

#s3-two-realities .side-label.without {
  color: var(--text-on-dark-dim);
}

#s3-two-realities .side-label.with {
  color: rgba(255, 255, 255, 0.5);
}

#s3-two-realities .resume-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

#s3-two-realities .resume-card-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  margin-bottom: 16px;
}

#s3-two-realities .resume-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 8px;
}

#s3-two-realities .resume-line.short {
  width: 60%;
}

#s3-two-realities .resume-line.medium {
  width: 80%;
}

#s3-two-realities .resume-line.long {
  width: 100%;
}

#s3-two-realities .resume-line.xshort {
  width: 40%;
}

#s3-two-realities .screen-box {
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 16px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

#s3-two-realities .screen-one {
  background: rgba(255, 45, 45, 0.04);
  border: 1px solid rgba(255, 45, 45, 0.18);
}

#s3-two-realities .screen-one:hover {
  border-color: rgba(255, 45, 45, 0.35);
  background: rgba(255, 45, 45, 0.06);
}

#s3-two-realities .screen-two {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

#s3-two-realities .screen-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

#s3-two-realities .screen-stage {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
}

#s3-two-realities .screen-status-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 8px;
}

#s3-two-realities .rejected-tag {
  color: #ff2d2d;
  background: rgba(255, 45, 45, 0.08);
  border: 1px solid rgba(255, 45, 45, 0.2);
}

#s3-two-realities .screen-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

#s3-two-realities .screen-row:last-of-type {
  border-bottom: none;
}

#s3-two-realities .screen-icon {
  font-size: 13px;
  font-weight: 900;
  color: #ff2d2d;
  width: 16px;
  flex-shrink: 0;
  font-family: var(--font-sans);
}

#s3-two-realities .screen-text {
  font-size: 12px;
  color: var(--text-on-dark-dim);
  font-weight: 500;
}

#s3-two-realities .overridden {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  font-style: italic;
}

#s3-two-realities .screen-note {
  font-size: 11px;
  color: rgba(255, 45, 45, 0.6);
  margin-top: 10px;
  font-style: italic;
}

/* Stage 1 / Stage 2 blocks (match reference layout) */
#s3-two-realities .stage-box {
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 16px;
}

#s3-two-realities .stage-box--primary {
  background: rgba(255, 45, 45, 0.06);
  border: 1px solid rgba(255, 45, 45, 0.35);
}

#s3-two-realities .stage-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}

#s3-two-realities .stage-box-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

#s3-two-realities .screened-out-badge {
  font-size: 9px;
  letter-spacing: 1.2px;
}

#s3-two-realities .stage-primary-message {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

#s3-two-realities .stage-primary-x {
  font-size: 28px;
  font-weight: 900;
  color: #ff2d2d;
  line-height: 1;
  font-family: var(--font-sans);
}

#s3-two-realities .stage-primary-text {
  font-size: 14px;
  font-weight: 700;
  color: #ff2d2d;
}

#s3-two-realities .stage-primary-note {
  margin-top: 0;
  margin-bottom: 0;
}

#s3-two-realities .stage-box--secondary {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

#s3-two-realities .stage-box-title--block {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

#s3-two-realities .stage2-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 12px;
  color: var(--text-on-dark-dim);
}

#s3-two-realities .stage2-arrow {
  color: var(--text-on-dark-muted);
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1.4;
}

#s3-two-realities .stage2-footer {
  margin-top: 14px;
  font-size: 11px;
  color: var(--text-on-dark-muted);
  font-style: italic;
}

/* Recruiter found — tag row + meta */
#s3-two-realities .found-label--long {
  font-size: 9px;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 14px;
}

#s3-two-realities .found-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

#s3-two-realities .found-tag {
  display: inline-block;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

#s3-two-realities .found-meta {
  font-size: 11px;
  color: var(--text-on-dark-muted);
}

#s3-two-realities .side-label.without,
#s3-two-realities .side-label.with {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  letter-spacing: 2px;
}

#s3-two-realities .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
}

#s3-two-realities .status-pill.rejected {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark-muted);
}

#s3-two-realities .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

#s3-two-realities .status-dot.grey {
  background: rgba(255, 255, 255, 0.15);
}

#s3-two-realities .side-with {
  padding: 40px 40px 48px;
  background: rgba(255, 255, 255, 0.01);
  position: relative;
}

#s3-two-realities .proof-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

#s3-two-realities .proof-card-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#s3-two-realities .proof-verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4caf50;
}

#s3-two-realities .proof-verified-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.7);
}

#s3-two-realities .proof-signal {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.25s ease;
}

#s3-two-realities .proof-signal:last-child {
  border-bottom: none;
}

#s3-two-realities .proof-signal:hover {
  background: rgba(255, 255, 255, 0.02);
}

#s3-two-realities .proof-signal-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

#s3-two-realities .proof-signal-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

#s3-two-realities .proof-signal-meta {
  font-size: 10px;
  color: var(--text-on-dark-muted);
}

#s3-two-realities .proof-signal-check {
  font-size: 13px;
  color: #4caf50;
}

#s3-two-realities .recruiter-found {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

#s3-two-realities .found-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin-bottom: 12px;
}

#s3-two-realities .found-company {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

#s3-two-realities .status-pill.scheduled {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

#s3-two-realities .status-dot.green {
  background: #4caf50;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.8);
}

@media (max-width: 900px) {
  #s3-two-realities .s3-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #s3-two-realities .s3-subtext {
    text-align: left;
    margin-left: 0;
    max-width: none;
  }
  #s3-two-realities .split {
    grid-template-columns: 1fr;
  }
  #s3-two-realities .split-line {
    display: none;
  }
}

/* ----- Section 4: The Placement Shift (institutions built page) ----- */
#placement-shift {
  padding: var(--section-gap-y) 0 var(--section-gap-y);
  background: #000000;
  font-family: var(--font-sans);
  color: #ffffff;
  border-top: 1px solid var(--border-1);
}

#placement-shift .placement-shift-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  padding-left: calc(8vw + clamp(16px, 1.5vw, 28px));
  padding-right: calc(8vw + clamp(16px, 1.5vw, 28px));
  box-sizing: border-box;
  position: relative;
}

#placement-shift .s4-header {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
  margin-bottom: 80px;
}

#placement-shift .s4-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

#placement-shift .s4-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -1.5px;
  color: #fff;
}

#placement-shift .s4-subtext {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.65;
  text-align: right;
  max-width: 340px;
  margin-left: auto;
}

#placement-shift .s4-subtext strong {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
}

#placement-shift .scoreboard {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
}

#placement-shift .score-col-headers {
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.01);
}

#placement-shift .score-col-header {
  padding: 16px 32px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.5;
}

#placement-shift .score-col-header:last-child {
  border-right: none;
}

#placement-shift .score-row {
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  position: relative;
  transition: background 0.3s ease;
}

#placement-shift .score-row:hover {
  background: rgba(255, 255, 255, 0.01);
}

#placement-shift .before-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}

#placement-shift .after-row {
  background: rgba(255, 255, 255, 0.01);
}

#placement-shift .score-row-label {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

#placement-shift .row-label-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 8px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

#placement-shift .row-label-tag.before {
  color: var(--text-on-dark-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#placement-shift .row-label-tag.after {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

#placement-shift .row-label-name {
  font-size: 14px;
  font-weight: 700;
}

#placement-shift .row-label-name.before {
  color: var(--text-on-dark-dim);
}

#placement-shift .row-label-name.after {
  color: #fff;
}

#placement-shift .score-cell {
  padding: 36px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease;
}

#placement-shift .score-cell:hover {
  background: rgba(255, 255, 255, 0.015);
}

#placement-shift .score-cell:last-child {
  border-right: none;
}

#placement-shift .score-cell-number {
  font-family: var(--font-sans);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}

#placement-shift .score-cell-number.before {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--text-on-dark-faint);
}

#placement-shift .score-cell-number.after {
  font-size: clamp(36px, 4vw, 56px);
  color: #fff;
}

#placement-shift .score-cell-number em {
  font-style: normal;
  font-size: 0.45em;
  letter-spacing: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

#placement-shift .score-cell-label {
  font-size: 11px;
  color: var(--text-on-dark-dim);
  line-height: 1.4;
}

#placement-shift .score-delta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #4caf50;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#placement-shift .score-delta.visible {
  opacity: 1;
  transform: translateY(0);
}

#placement-shift .score-bar-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.04);
}

#placement-shift .score-bar-fill {
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

#placement-shift .score-bar-fill.active {
  background: #ff2d2d;
  opacity: 0.6;
}

#placement-shift .shift-callout {
  margin: 32px 0 0;
  padding: 28px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
}

#placement-shift .callout-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.65;
}

#placement-shift .callout-text strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

#placement-shift .callout-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff2d2d;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: fit-content;
}

#placement-shift .callout-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 45, 45, 0.4);
  color: #fff;
}

/* Section 4 — entrance animations */
@keyframes s4FadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

#placement-shift .s4-header {
  opacity: 0;
  animation: s4FadeUp 0.7s ease 0.1s forwards;
}

#placement-shift .scoreboard {
  opacity: 0;
  animation: s4FadeUp 0.7s ease 0.3s forwards;
}

#placement-shift .shift-callout {
  opacity: 0;
  animation: s4FadeUp 0.6s ease 0.5s forwards;
}

@media (max-width: 900px) {
  #placement-shift .s4-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #placement-shift .s4-subtext {
    text-align: left;
    margin-left: 0;
    max-width: none;
  }
  #placement-shift .score-col-headers,
  #placement-shift .score-row {
    grid-template-columns: 140px repeat(4, 1fr);
  }
  #placement-shift .shift-callout {
    grid-template-columns: 1fr;
  }
}

/* ----- Section 5: The 4-Year Transformation (institutions built page) ----- */
#transformation {
  padding: var(--section-gap-y) 0 0;
  position: relative;
  overflow: hidden;
  background: #000000;
  font-family: var(--font-sans);
  color: #ffffff;
  border-top: 1px solid var(--border-1);
}

#transformation .transformation-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  padding-left: calc(8vw + clamp(16px, 1.5vw, 28px));
  padding-right: calc(8vw + clamp(16px, 1.5vw, 28px));
  box-sizing: border-box;
  position: relative;
}

#transformation .s5-header {
  padding: 0;
  margin-bottom: 24px;
}

#transformation .s5-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

#transformation .s5-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 0.95;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 20px;
}

#transformation .s5-headline em {
  font-style: normal;
  color: #ff2d2d;
}

#transformation .s5-subtext {
  font-size: 16px;
  color: var(--text-on-dark-dim);
  line-height: 1.6;
  max-width: 600px;
  font-weight: 500;
}

#transformation .s5-subtext strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

#transformation .trajectory-bar-section {
  padding: 48px 0 0;
}

#transformation .trajectory-bar-wrap {
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: visible;
}

#transformation .trajectory-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), #ff2d2d);
  transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

#transformation .trajectory-bar-fill::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff2d2d;
  box-shadow: 0 0 12px rgba(255, 45, 45, 0.9), 0 0 24px rgba(255, 45, 45, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#transformation .trajectory-bar-fill.active::after {
  opacity: 1;
}

#transformation .trajectory-ticks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
  position: relative;
}

#transformation .trajectory-tick {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 16px;
  position: relative;
}

#transformation .trajectory-tick::before {
  content: '';
  position: absolute;
  top: -13px;
  left: 0;
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.4s ease, height 0.4s ease;
}

#transformation .trajectory-tick.active::before {
  background: #ff2d2d;
  height: 14px;
  top: -15px;
  box-shadow: 0 0 6px rgba(255, 45, 45, 0.6);
}

#transformation .tick-year {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin-bottom: 4px;
  transition: color 0.4s ease;
}

#transformation .trajectory-tick.active .tick-year {
  color: rgba(255, 255, 255, 0.5);
}

#transformation .trajectory-tick.final .tick-year {
  color: #ff2d2d;
}

#transformation .tick-label {
  font-size: 11px;
  color: var(--text-on-dark-soft);
  transition: color 0.4s ease;
}

#transformation .trajectory-tick.active .tick-label {
  color: rgba(255, 255, 255, 0.3);
}

#transformation .stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 48px;
}

#transformation .stage {
  padding: 56px 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

#transformation .stage:last-child {
  border-right: none;
}

#transformation .stage:hover {
  background: rgba(255, 255, 255, 0.015);
}

#transformation .stage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #ff2d2d;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

#transformation .stage.final::before {
  transform: scaleX(1);
  opacity: 0.5;
}

#transformation .stage:hover::before {
  transform: scaleX(1);
}

#transformation .stage-year {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#transformation .stage-year-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#transformation .stage.final .stage-year-dot {
  background: #ff2d2d;
  box-shadow: 0 0 8px rgba(255, 45, 45, 0.7);
}

#transformation .stage:hover .stage-year-dot {
  background: rgba(255, 255, 255, 0.35);
}

#transformation .stage.final .stage-year-dot {
  animation: s5FinalPulse 1.5s ease-in-out infinite;
}

@keyframes s5FinalPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(255, 45, 45, 0.6); }
  50% { box-shadow: 0 0 14px rgba(255, 45, 45, 1), 0 0 24px rgba(255, 45, 45, 0.3); }
}

#transformation .stage-word {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

#transformation .stage:nth-child(1) .stage-word {
  color: var(--text-on-dark-muted);
}

#transformation .stage:nth-child(2) .stage-word {
  color: rgba(255, 255, 255, 0.45);
}

#transformation .stage:nth-child(3) .stage-word {
  color: rgba(255, 255, 255, 0.7);
}

#transformation .stage:nth-child(4) .stage-word {
  color: #fff;
}

#transformation .stage-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 500;
}

#transformation .stage.final {
  background: rgba(255, 255, 255, 0.02);
}

#transformation .company-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}

#transformation .company-tag {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 4px 10px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

#transformation .company-tag:hover {
  border-color: var(--text-on-dark-muted);
  color: rgba(255, 255, 255, 0.8);
}

#transformation .attention-meter {
  margin-top: auto;
}

#transformation .attention-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  margin-bottom: 8px;
}

#transformation .attention-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

#transformation .attention-fill {
  height: 100%;
  border-radius: 2px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

#transformation .stage:nth-child(1) .attention-fill {
  background: rgba(255, 255, 255, 0.1);
}

#transformation .stage:nth-child(2) .attention-fill {
  background: rgba(255, 255, 255, 0.2);
}

#transformation .stage:nth-child(3) .attention-fill {
  background: rgba(255, 255, 255, 0.35);
}

#transformation .stage:nth-child(4) .attention-fill {
  background: #ff2d2d;
  opacity: 0.8;
}

#transformation .attention-value {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 13px;
  color: var(--text-on-dark-dim);
  margin-top: 6px;
}

#transformation #av4 {
  color: rgba(255, 45, 45, 0.8);
}

#transformation .stat-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

#transformation .stat-strip-item {
  padding: 40px 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

#transformation .stat-strip-item:last-child {
  border-right: none;
}

#transformation .stat-strip-number {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -2px;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}

#transformation .stat-strip-number em {
  font-style: normal;
  color: #ff2d2d;
}

#transformation .stat-strip-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
  font-weight: 500;
}

#transformation .stat-strip-label strong {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

#transformation .s5-cta-row {
  padding: 56px 0 100px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

#transformation .cta-row-text {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -1px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.1;
}

#transformation .cta-row-text em {
  font-style: normal;
  color: #fff;
}

#transformation .cta-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

#transformation .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff2d2d;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#transformation .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 45, 45, 0.4);
  color: #fff;
}

#transformation .cta-micro {
  font-size: 12px;
  color: var(--text-on-dark-dim);
  display: flex;
  align-items: center;
  gap: 5px;
}

#transformation .cta-micro::before {
  content: '✓';
  font-size: 10px;
}

/* Section 5 — entrance animations */
@keyframes s5FadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

#transformation .s5-header {
  opacity: 0;
  animation: s5FadeUp 0.7s ease 0.1s forwards;
}

#transformation .trajectory-bar-section {
  opacity: 0;
  animation: s5FadeUp 0.6s ease 0.3s forwards;
}

#transformation .stat-strip {
  opacity: 0;
  animation: s5FadeUp 0.6s ease 1.6s forwards;
}

#transformation .s5-cta-row {
  opacity: 0;
  animation: s5FadeUp 0.6s ease 1.8s forwards;
}

@media (max-width: 900px) {
  #transformation .stages {
    grid-template-columns: 1fr;
  }
  #transformation .stage {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  #transformation .stat-strip {
    grid-template-columns: 1fr;
  }
  #transformation .stat-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  #transformation .s5-cta-row {
    grid-template-columns: 1fr;
  }
  #transformation .cta-row-right {
    align-items: flex-start;
  }
}

/* ----- Section 6: The Flywheel Effect (institutions) ----- */
/* Align with nav (logo line): same padding as .nav margin-inline + padding-inline */
.s6-flywheel {
  padding: var(--section-gap-y) calc(8vw + clamp(16px, 1.5vw, 28px)) 0;
  background: transparent;
  overflow: hidden;
  position: relative;
}

.s6-flywheel__grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.s6-flywheel .s6-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 64px;
}

.s6-flywheel .s6-header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.s6-flywheel .s6-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.s6-flywheel .s6-headline-red {
  color: var(--red);
}

.s6-flywheel .s6-subtext {
  max-width: 340px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey-1);
  margin: 0;
}

.s6-flywheel .flywheel-svg-container {
  width: 700px;
  height: 700px;
  margin: 0 auto;
  position: relative;
}

.s6-flywheel .flywheel-svg-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 45, 45, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.s6-flywheel .flywheel-svg-container svg {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: visible;
}

@keyframes fwSpinCCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes fwSpinCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fwArcDash {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -40; }
}

@keyframes fwNodePulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.6); opacity: 0.3; }
}

.s6-flywheel .fw-node-dot {
  transform-origin: center;
}

.s6-flywheel .fw-label {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.13em;
  fill: rgba(255, 255, 255, 0.9);
}

.s6-flywheel .fw-sublabel {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 10px;
  fill: rgba(255, 255, 255, 0.32);
}

.s6-flywheel .flywheel-steps {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 900px;
  margin: 0 auto;
}

.s6-flywheel .fw-step {
  flex: 1;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.s6-flywheel .fw-step:last-child {
  border-right: none;
}

.s6-flywheel .fw-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.s6-flywheel .fw-step-num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  color: #FF2D2D;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.s6-flywheel .fw-step p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
}

.s6-flywheel .fw-step p strong {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .s6-flywheel {
    padding: calc(var(--section-gap-y) * 0.75) calc(8vw + clamp(16px, 1.5vw, 28px)) 0;
  }
  .s6-flywheel .s6-header {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 32px;
  }
  .s6-flywheel .s6-subtext {
    max-width: none;
  }
  .s6-flywheel .flywheel-svg-container {
    width: 100%;
    max-width: 700px;
    height: auto;
    aspect-ratio: 1;
    margin-left: auto;
    margin-right: auto;
  }
  .s6-flywheel .flywheel-steps {
    flex-direction: column;
  }
  .s6-flywheel .fw-step {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .s6-flywheel .fw-step:last-child {
    border-bottom: none;
  }
}

/* ----- Cost section (s6-flywheel) ----- */
.s6-flywheel .cost-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 100px 0 140px;
  position: relative;
}

.s6-flywheel .cost-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #FF2D2D, transparent);
  opacity: 0.3;
  pointer-events: none;
}

.s6-flywheel .cost-inner {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.s6-flywheel .cost-left {
  flex: 1;
}

.s6-flywheel .cost-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  color: rgba(255, 45, 45, 0.6);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.s6-flywheel .cost-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 68px);
  text-transform: uppercase;
  line-height: 0.95;
  color: #fff;
  margin: 0 0 28px;
}

.s6-flywheel .cost-headline-dim {
  color: var(--text-on-dark-muted);
}

.s6-flywheel .cost-subtext {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0 0 24px;
}

.s6-flywheel .cost-subtext em {
  font-style: italic;
}

.s6-flywheel .cost-quote {
  border-left: 2px solid #FF2D2D;
  padding-left: 16px;
  margin: 0 0 32px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.s6-flywheel .cost-quote-highlight {
  color: #fff;
}

.s6-flywheel .cost-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.s6-flywheel .cost-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FF2D2D;
  color: #fff;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 100px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.s6-flywheel .cost-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 45, 45, 0.4);
  color: #fff;
}

.s6-flywheel .cost-cta-ghost {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.s6-flywheel .cost-cta-ghost:hover {
  color: rgba(255, 255, 255, 0.9);
}

.s6-flywheel .cost-right {
  width: 380px;
  flex-shrink: 0;
}

.s6-flywheel .cost-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.s6-flywheel .cost-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.s6-flywheel .cost-row-future {
  opacity: 0.35;
}

.s6-flywheel .cost-year {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  width: 72px;
  flex-shrink: 0;
}

.s6-flywheel .cost-bar-track {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.s6-flywheel .cost-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.s6-flywheel .cost-bar-missed {
  background: rgba(255, 45, 45, 0.3);
}

.s6-flywheel .cost-bar-live {
  background: #FF2D2D;
  box-shadow: 0 0 12px rgba(255, 45, 45, 0.6);
}

.s6-flywheel .cost-count {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  width: 48px;
  text-align: right;
}

.s6-flywheel .cost-status {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  width: 70px;
}

.s6-flywheel .cost-status-missed {
  color: rgba(255, 45, 45, 0.35);
}

.s6-flywheel .cost-status-live {
  color: #FF2D2D;
}

.s6-flywheel .cost-status-future {
  color: rgba(255, 45, 45, 0.3);
}

.s6-flywheel .cost-counter-block {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.s6-flywheel .cost-counter-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  color: var(--text-on-dark-dim);
  margin: 0 0 8px;
}

.s6-flywheel .cost-counter-value {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 48px;
  color: rgba(255, 45, 45, 0.35);
  line-height: 1;
  margin-bottom: 8px;
}

.s6-flywheel .cost-counter-sub {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  color: var(--text-on-dark-soft);
  margin: 0;
}

@media (max-width: 900px) {
  .s6-flywheel .cost-inner {
    flex-direction: column;
    gap: 48px;
  }
  .s6-flywheel .cost-right {
    width: 100%;
  }
}

/* ----- Recruiters / Companies: Section C2 (The Problem) ----- */
/* Align with nav (logo line): same padding as .nav margin-inline + padding-inline */
.c2 {
  padding: var(--section-gap-y) calc(8vw + clamp(16px, 1.5vw, 28px));
  position: relative;
  overflow: hidden;
  background: var(--bg-1);
}
.c2__grain {
  position: absolute;
  inset: 0;
  z-index: 999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.c2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.c2__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin: 0 0 64px 0;
}
.c2-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
}
.c2__headline {
  flex: 1;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(44px, 6.5vw, 90px);
  text-transform: uppercase;
  line-height: 0.91;
  letter-spacing: -0.02em;
  margin: 0;
}
.c2__dim {
  color: var(--text-on-dark-dim);
}
.c2__red {
  color: #FF2D2D;
}
.c2-right {
  max-width: 340px;
  flex-shrink: 0;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.recruiter-quote {
  border-left: 2px solid rgba(255, 45, 45, 0.35);
  padding-left: 20px;
  margin: 0;
}
.recruiter-quote__text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 0.5em 0;
}
.recruiter-quote__attr {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  font-style: normal;
}
.c2__sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  margin: 0;
}
.c2__sub em {
  color: #fff;
  font-weight: 500;
  font-style: normal;
}

.context-bar {
  display: flex;
  flex-direction: row;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.01);
  overflow: hidden;
}
.context-item {
  flex: 1;
  padding: 13px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.context-item:last-child {
  border-right: none;
}
.context-item__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.context-item__dot--red {
  background: rgba(255, 45, 45, 0.4);
}
.context-item__label {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-on-dark-muted);
}
.context-item__label strong {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.context-item__red {
  color: rgba(255, 45, 45, 0.6);
  font-weight: 600;
}

/* ----- Cards wrapper (candidate comparison) ----- */
.cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
  overflow: hidden;
}
.cand-card {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-hired {
  background: rgba(255, 255, 255, 0.01);
}
.card-missed {
  position: relative;
  background: rgba(255, 45, 45, 0.02);
  overflow: hidden;
}
.card-missed::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at top right, rgba(255, 45, 45, 0.07), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.card-missed > * {
  position: relative;
  z-index: 1;
}

/* Verdict pill */
.card-verdict {
  align-self: flex-start;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.verdict-hired {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-on-dark-dim);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.verdict-hired .verdict-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(100, 220, 100, 0.55);
}
.verdict-missed {
  background: rgba(255, 45, 45, 0.07);
  color: rgba(255, 45, 45, 0.6);
  border: 1px solid rgba(255, 45, 45, 0.14);
}
.verdict-missed .verdict-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 45, 45, 0.55);
}

/* Identity row */
.card-identity {
  display: flex;
  align-items: center;
  gap: 14px;
}
.card-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
.card-avatar--hired {
  background: rgba(255, 255, 255, 0.05);
}
.card-avatar--missed {
  background: rgba(255, 45, 45, 0.09);
}
.card-name {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 22px;
  color: #fff;
}
.card-meta {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  color: var(--text-on-dark-muted);
}

/* Card section */
.card-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-section__pill {
  align-self: flex-start;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-on-dark-dim);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 12px;
  border-radius: 4px;
}
.card-section__pill--muted {
  color: var(--text-on-dark-soft);
}
.eh-done {
  color: rgba(80, 210, 120, 0.85) !important;
  background: rgba(80, 210, 120, 0.05) !important;
  border-color: rgba(80, 210, 120, 0.14) !important;
}

/* Evidence rows */
.evidence-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 5px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  font-style: italic;
}
.ev-empty {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-on-dark-dim);
}
.ev-empty .ev-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.ev-text {
  flex: 1;
  min-width: 0;
}
.ev-filled {
  background: rgba(80, 210, 120, 0.03);
  border: 1px solid rgba(80, 210, 120, 0.1);
  color: rgba(180, 240, 200, 0.85);
  font-style: normal;
}
.ev-filled .ev-dot--green {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(80, 210, 120, 0.8);
  flex-shrink: 0;
}
.ev-filled .ev-dot {
  flex-shrink: 0;
}

/* Chips */
.chip {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 9px;
  padding: 4px 8px;
  border-radius: 3px;
  margin-left: auto;
}
.chip-unknown {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 9px;
  color: var(--text-on-dark-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
}
.chip-verified {
  background: rgba(80, 210, 120, 0.08);
  color: rgba(80, 210, 120, 0.85);
  border: 1px solid rgba(80, 210, 120, 0.16);
}

/* Score row */
.score-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 6px;
}
.score-hired-row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.score-missed-row {
  background: rgba(255, 45, 45, 0.04);
  border: 1px solid rgba(255, 45, 45, 0.12);
}
.score-num {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 32px;
  color: var(--text-on-dark-dim);
  flex-shrink: 0;
}
.score-num--red {
  color: #FF2D2D;
}
.score-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.score-label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  color: var(--text-on-dark-dim);
}
.score-missed-row .score-label {
  color: rgba(255, 255, 255, 0.6);
}
.score-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-on-dark-dim);
}
.score-missed-row .score-sub {
  color: var(--text-on-dark-dim);
}
.outcome-chip {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}
.outcome-chip--hired {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
}
.outcome-chip--missed {
  background: rgba(255, 45, 45, 0.08);
  color: rgba(255, 45, 45, 0.55);
}

/* VS column */
.vs-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.008);
}
.vs-line {
  flex: 1;
  min-height: 24px;
}
.vs-line--top {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.06), transparent);
}
.vs-line--bottom {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.06), transparent);
}
.vs-text {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-on-dark-soft);
  writing-mode: vertical-rl;
  padding: 14px 0;
  transform: rotate(180deg);
}

/* ----- Twist strip ----- */
.twist-strip {
  border: 1px solid rgba(255, 45, 45, 0.14);
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: rgba(255, 45, 45, 0.025);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.twist-main {
  display: flex;
  align-items: center;
  gap: 16px;
}
.twist-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 45, 45, 0.1);
  border: 1px solid rgba(255, 45, 45, 0.18);
  color: rgba(255, 45, 45, 0.7);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.twist-copy {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 100, 100, 0.65);
  line-height: 1.65;
  margin: 0;
}
.twist-copy strong {
  font-weight: 600;
  color: rgba(255, 120, 120, 0.9);
}
.twist-tag {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 45, 45, 0.3);
  text-align: right;
  line-height: 1.7;
}

/* ----- C2 close ----- */
.c2-close {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.close-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
}
.close-copy {
  max-width: 280px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin: 0;
}
.close-copy em {
  color: #fff;
  font-weight: 500;
  font-style: normal;
}

/* ----- C2 staggered fade-up animation ----- */
@keyframes c2-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .c2-anim {
    opacity: 0;
    animation: c2-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .c2-anim[data-c2-delay="0"] { animation-delay: 0s; }
  .c2-anim[data-c2-delay="1"] { animation-delay: 0.14s; }
  .c2-anim[data-c2-delay="2"] { animation-delay: 0.28s; }
  .c2-anim[data-c2-delay="3"] { animation-delay: 0.42s; }
  .c2-anim[data-c2-delay="4"] { animation-delay: 0.56s; }
  .c2-anim[data-c2-delay="5"] { animation-delay: 0.7s; }
}
@media (prefers-reduced-motion: reduce) {
  .c2-anim {
    opacity: 1;
    animation: none;
  }
}

/* ----- C2 1280px: prevent wrap, keep layout ----- */
@media (min-width: 1280px) {
  .c2-top {
    flex-wrap: nowrap;
  }
}

/* Recruiters & Institutions — full-width dividers between major sections */
body.page-recruiters .recruiters-section-divider,
body.page-institutions .recruiters-section-divider {
  display: block;
  width: 100vw;
  max-width: none;
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  height: 0;
  padding: 0;
  background: none;
  box-sizing: border-box;
}

/* ----- Recruiters / Companies: Section C3 (The Real Problem) ----- */
.c3-indict {
  /* Top & bottom: same as --section-gap-y (hero → eyebrow; after closing caption) */
  padding: var(--section-gap-y) calc(8vw + clamp(16px, 1.5vw, 28px)) var(--section-gap-y);
  position: relative;
  overflow: hidden;
  background: var(--bg-1);
}
.c3-indict__eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin: 0 0 56px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.indict-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.87;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin: 0 0 72px 0;
}
.indict-headline .ghost {
  display: block;
  color: var(--text-on-dark-faint);
}
.indict-headline .bold {
  display: block;
  color: rgba(255, 255, 255, 0.95);
}
.indict-headline .red {
  display: block;
  color: #FF2D2D;
}

/* ----- Obsolete strip ----- */
.obsolete-strip {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0;
}
.obs-item {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.obs-item:last-child {
  border-right: none;
}

/* Recruiters R2 — The Real Problem: obsolete strip cards (staggered reveal) */
/* Phase 1 — card reveal */
@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Allow translateY to paint without clipping (strip default is overflow: hidden) */
body.page-recruiters .c3-indict .obsolete-strip {
  overflow: visible;
}

body.page-recruiters .c3-indict .obsolete-strip > .card {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}

body.page-recruiters .c3-indict .obsolete-strip > .card:nth-child(1) {
  animation: cardReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

body.page-recruiters .c3-indict .obsolete-strip > .card:nth-child(2) {
  animation: cardReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.62s forwards;
}

body.page-recruiters .c3-indict .obsolete-strip > .card:nth-child(3) {
  animation: cardReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.74s forwards;
}

body.page-recruiters .c3-indict .obsolete-strip > .card:nth-child(4) {
  animation: cardReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.86s forwards;
}

body.page-recruiters .c3-indict .obsolete-strip > .card:nth-child(5) {
  animation: cardReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.98s forwards;
}

/* Phase 2 — shimmer (runs after Phase 1 card reveal) */
body.page-recruiters .c3-indict .obsolete-strip > .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.03) 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

@keyframes shimmer {
  from { left: -100%; opacity: 1; }
  to { left: 150%; opacity: 0; }
}

body.page-recruiters .c3-indict .obsolete-strip > .card:nth-child(1)::before {
  animation: shimmer 0.9s ease 1.1s forwards;
}

body.page-recruiters .c3-indict .obsolete-strip > .card:nth-child(2)::before {
  animation: shimmer 0.9s ease 1.22s forwards;
}

body.page-recruiters .c3-indict .obsolete-strip > .card:nth-child(3)::before {
  animation: shimmer 0.9s ease 1.34s forwards;
}

body.page-recruiters .c3-indict .obsolete-strip > .card:nth-child(4)::before {
  animation: shimmer 0.9s ease 1.46s forwards;
}

body.page-recruiters .c3-indict .obsolete-strip > .card:nth-child(5)::before {
  animation: shimmer 0.9s ease 1.58s forwards;
}

/* Children sit above shimmer layer */
body.page-recruiters .c3-indict .obsolete-strip > .card > * {
  position: relative;
  z-index: 2;
}

body.page-recruiters .c3-indict .obsolete-strip > .card > .obs-x,
body.page-recruiters .c3-indict .obsolete-strip > .card > .obs-pulse {
  position: absolute;
  z-index: 2;
}

/* Phase 3 — top edge line (after Phase 2 shimmer) */
body.page-recruiters .c3-indict .obsolete-strip > .card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  z-index: 3;
}

@keyframes lineDrawIn {
  from { width: 0; }
  to { width: 100%; }
}

/* Dead cards — white line */
body.page-recruiters .c3-indict .obsolete-strip > .card:nth-child(1)::after {
  animation: lineDrawIn 0.6s ease 1s forwards;
}

body.page-recruiters .c3-indict .obsolete-strip > .card:nth-child(2)::after {
  animation: lineDrawIn 0.6s ease 1.12s forwards;
}

body.page-recruiters .c3-indict .obsolete-strip > .card:nth-child(3)::after {
  animation: lineDrawIn 0.6s ease 1.24s forwards;
}

body.page-recruiters .c3-indict .obsolete-strip > .card:nth-child(4)::after {
  animation: lineDrawIn 0.6s ease 1.36s forwards;
}

/* Resume card — red glowing line */
body.page-recruiters .c3-indict .obsolete-strip > .card.card-alive::after {
  background: #FF2D2D;
  box-shadow: 0 0 8px rgba(255, 45, 45, 0.5);
  animation: lineDrawIn 0.8s ease 1.2s forwards;
}

/* card-alive needs overflow visible for glow */
body.page-recruiters .c3-indict .obsolete-strip > .card-alive {
  overflow: visible;
}

/* Phase 4 — corner glow + pulsing dot (Resume card) */
/* Corner glow element */
body.page-recruiters .c3-indict .obsolete-strip > .card-alive > .glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(255, 45, 45, 0.15),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: glowFadeIn 1s ease 1.6s forwards;
}

@keyframes glowFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Pulsing dot — uses global @keyframes pulse (same as obs-pulse) */
body.page-recruiters .c3-indict .obsolete-strip > .card-alive > .obs-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF2D2D;
  animation: pulse 1.8s ease infinite;
}

/* Phase 5 — dead card ✕ hover + name tone (markup: .card.dead, .obs-x) */
/* ✕ rotates on hover */
body.page-recruiters .c3-indict .obsolete-strip > .card.dead > .obs-x {
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

body.page-recruiters .c3-indict .obsolete-strip > .card.dead:hover > .obs-x {
  color: var(--grey-1);
  transform: rotate(90deg);
}

/* Dead name color */
body.page-recruiters .c3-indict .obsolete-strip > .card.dead .obs-name {
  color: var(--text-on-dark-dim);
}

/* Reduced motion — disable all animations */
@media (prefers-reduced-motion: reduce) {
  body.page-recruiters .c3-indict *,
  body.page-recruiters .c3-indict *::before,
  body.page-recruiters .c3-indict *::after {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    width: auto !important;
  }

  body.page-recruiters .c3-indict .obsolete-strip > .card {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Shimmer sweep stays hidden when motion is reduced */
  body.page-recruiters .c3-indict .obsolete-strip > .card::before {
    opacity: 0 !important;
    left: -100% !important;
    width: 60% !important;
  }
}

/* ── Recruiters: mobile “real problem” (.m-r2) — mirrors c3-indict, ≤768px ── */
@media (max-width: 768px) {
  body.page-recruiters .c3.c3-indict {
    display: none !important;
  }

  body.page-recruiters .m-r2 {
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }

  body.page-recruiters .m-r2::before {
    content: '1950';
    position: absolute;
    bottom: 60px;
    right: -20px;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.018);
    letter-spacing: -12px;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
  }

  body.page-recruiters .m-r2-header {
    flex: 0 0 auto;
    padding: 48px 24px 24px;
    position: relative;
    z-index: 1;
  }

  body.page-recruiters .m-r2-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  body.page-recruiters .m-r2-eyebrow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FF2D2D;
    box-shadow: 0 0 6px rgba(255, 45, 45, 0.8);
    flex-shrink: 0;
  }

  body.page-recruiters .m-r2-headline {
    line-height: 0.88;
  }

  body.page-recruiters .m-r2-hl-1 {
    display: block;
    font-size: 52px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.18);
    letter-spacing: -3px;
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 0.5s 0.1s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.5s 0.1s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.page-recruiters .m-r2-hl-2 {
    display: block;
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -3px;
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 0.5s 0.2s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.5s 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.page-recruiters .m-r2-hl-3 {
    display: block;
    font-size: 52px;
    font-weight: 900;
    color: #FF2D2D;
    letter-spacing: -3px;
    text-shadow: 0 0 40px rgba(255, 45, 45, 0.35);
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 0.5s 0.3s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.5s 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.page-recruiters .m-r2-dead-list {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
  }

  body.page-recruiters .m-r2-dead-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.page-recruiters .m-r2-dead-card-left {
    flex: 1;
    min-width: 0;
  }

  body.page-recruiters .m-r2-dead-year {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    margin-bottom: 3px;
  }

  body.page-recruiters .m-r2-dead-name {
    font-size: 16px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: -0.5px;
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-decoration-thickness: 2px;
  }

  body.page-recruiters .m-r2-dead-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }

  body.page-recruiters .m-r2-dead-x {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
  }

  body.page-recruiters .m-r2-dead-sub {
    font-size: 9px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    text-align: right;
  }

  body.page-recruiters .m-r2-resume-card {
    flex: 0 0 auto;
    margin: 0 24px;
    padding: 18px 16px;
    background: rgba(255, 45, 45, 0.06);
    border: 1px solid rgba(255, 45, 45, 0.3);
    border-top: 2px solid #FF2D2D;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.page-recruiters .m-r2-resume-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
  }

  body.page-recruiters .m-r2-resume-year {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
  }

  body.page-recruiters .m-r2-resume-dot-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  body.page-recruiters .m-r2-resume-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF2D2D;
    box-shadow: 0 0 10px rgba(255, 45, 45, 1);
    animation: m-r2-dot-pulse 1.2s ease-in-out infinite;
  }

  @keyframes m-r2-dot-pulse {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 0 10px rgba(255, 45, 45, 1);
    }
    50% {
      transform: scale(1.4);
      box-shadow: 0 0 16px rgba(255, 45, 45, 0.6);
    }
  }

  body.page-recruiters .m-r2-resume-dot-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 45, 45, 0.9);
    text-transform: uppercase;
  }

  body.page-recruiters .m-r2-resume-name {
    font-size: 28px;
    font-weight: 900;
    color: #FF2D2D;
    letter-spacing: -1px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 45, 45, 0.4);
    margin-bottom: 6px;
  }

  body.page-recruiters .m-r2-resume-sub {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
  }

  body.page-recruiters .m-r2-resume-sub span {
    color: #FF2D2D;
    font-style: normal;
  }

  body.page-recruiters .m-r2-bottom {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px 24px 32px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  body.page-recruiters .m-r2-bottom-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.55;
    margin: 0;
  }

  body.page-recruiters .m-r2-bottom-text strong {
    color: #fff;
  }

  body.page-recruiters .m-r2-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (min-width: 769px) {
  body.page-recruiters .m-r2 {
    display: none !important;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  body.page-recruiters .m-r2-eyebrow,
  body.page-recruiters .m-r2-hl-1,
  body.page-recruiters .m-r2-hl-2,
  body.page-recruiters .m-r2-hl-3,
  body.page-recruiters .m-r2-dead-card,
  body.page-recruiters .m-r2-resume-card,
  body.page-recruiters .m-r2-bottom {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  body.page-recruiters .m-r2-resume-dot {
    animation: none !important;
  }
}

.obs-item.dead {
  background: rgba(255, 255, 255, 0.01);
}
.obs-item.alive {
  background: rgba(255, 45, 45, 0.03);
  border-left: 1px solid rgba(255, 45, 45, 0.12);
}
.obs-x {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  color: var(--text-on-dark-faint);
}
.obs-pulse {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF2D2D;
  animation: obs-pulse 1.8s ease infinite;
}
@keyframes obs-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
@media (prefers-reduced-motion: reduce) {
  .obs-pulse {
    animation: none;
  }
}
.obs-year {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin-bottom: 10px;
  display: block;
}
.obs-name {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1;
  display: block;
}
.obs-item.dead .obs-name {
  color: var(--text-on-dark-dim);
  text-decoration: line-through;
  text-decoration-color: var(--text-on-dark-faint);
}
.obs-item.alive .obs-name {
  color: rgba(255, 45, 45, 0.8);
}
.obs-status {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 10px;
  display: block;
}
.obs-item.dead .obs-status {
  color: var(--text-on-dark-soft);
}
.obs-item.alive .obs-status {
  color: rgba(255, 45, 45, 0.45);
  font-weight: 500;
}
.obsolete-caption {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 12px;
  color: var(--text-on-dark-muted);
  padding-top: 12px;
  /* Bottom spacing comes from .c3-indict padding-bottom (160px), same as padding-top before eyebrow */
  margin: 0;
}
.obsolete-caption em {
  color: #fff;
  font-weight: 500;
  font-style: normal;
}

/* ----- Recruiters: C3 Guesswork (after The Real Problem) ----- */
@keyframes gwFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gwFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body.page-recruiters .c3-guesswork .gw-eyebrow,
body.page-recruiters .c3-guesswork .gw-hl,
body.page-recruiters .c3-guesswork .gw-claim,
body.page-recruiters .c3-guesswork .gw-footer {
  opacity: 0;
}

body.page-recruiters .c3-guesswork {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  padding-inline: var(--inset);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

body.page-recruiters .c3-guesswork .gw-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

body.page-recruiters .c3-guesswork .gw-eyebrow-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

body.page-recruiters .c3-guesswork .gw-headline {
  margin-bottom: 48px;
  line-height: 0.9;
}

body.page-recruiters .c3-guesswork .gw-hl {
  display: block;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

body.page-recruiters .c3-guesswork .gw-hl--ghost {
  color: var(--text-on-dark-faint);
}

body.page-recruiters .c3-guesswork .gw-hl--white {
  color: #ffffff;
}

body.page-recruiters .c3-guesswork .gw-hl--red {
  color: #ff2d2d;
}

body.page-recruiters .c3-guesswork .gw-claims {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 32px;
}

body.page-recruiters .c3-guesswork .gw-claim {
  background: #0a0a0b;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: default;
  transition: background 0.2s;
}

body.page-recruiters .c3-guesswork .gw-claim:hover {
  background: rgba(255, 45, 45, 0.03);
}

body.page-recruiters .c3-guesswork .gw-claim-num {
  font-size: 64px;
  font-weight: 900;
  font-style: italic;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  letter-spacing: -0.04em;
  position: absolute;
  bottom: 12px;
  right: 16px;
  user-select: none;
  pointer-events: none;
  transition: color 0.2s;
}

body.page-recruiters .c3-guesswork .gw-claim:hover .gw-claim-num {
  color: rgba(255, 45, 45, 0.07);
}

body.page-recruiters .c3-guesswork .gw-claim-tag {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

body.page-recruiters .c3-guesswork .gw-claim:hover .gw-claim-tag {
  color: rgba(255, 45, 45, 0.5);
}

body.page-recruiters .c3-guesswork .gw-claim-tag::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: background 0.2s;
}

body.page-recruiters .c3-guesswork .gw-claim:hover .gw-claim-tag::before {
  background: #ff2d2d;
}

body.page-recruiters .c3-guesswork .gw-claim-text {
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
  flex: 1;
  margin: 0 0 24px;
  transition: color 0.2s;
}

body.page-recruiters .c3-guesswork .gw-claim:hover .gw-claim-text {
  color: rgba(255, 255, 255, 0.8);
}

body.page-recruiters .c3-guesswork .gw-proof {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: border-color 0.2s;
}

body.page-recruiters .c3-guesswork .gw-claim:hover .gw-proof {
  border-color: rgba(255, 45, 45, 0.2);
}

body.page-recruiters .c3-guesswork .gw-proof-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-faint);
  transition: color 0.2s;
}

body.page-recruiters .c3-guesswork .gw-claim:hover .gw-proof-label {
  color: rgba(255, 45, 45, 0.4);
}

body.page-recruiters .c3-guesswork .gw-proof-value {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-on-dark-soft);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

body.page-recruiters .c3-guesswork .gw-claim:hover .gw-proof-value {
  color: rgba(255, 45, 45, 0.35);
}

body.page-recruiters .c3-guesswork .gw-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.page-recruiters .c3-guesswork .gw-footer-left {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin: 0;
}

body.page-recruiters .c3-guesswork .gw-footer-right {
  font-size: clamp(0.78rem, 1vw, 0.875rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.7;
  align-self: center;
  margin: 0;
}

body.page-recruiters .c3-guesswork .gw-footer-right strong {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

body.page-recruiters .c3-guesswork.is-visible .gw-eyebrow {
  animation: gwFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

body.page-recruiters .c3-guesswork.is-visible .gw-hl:nth-child(1) {
  animation: gwFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

body.page-recruiters .c3-guesswork.is-visible .gw-hl:nth-child(2) {
  animation: gwFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.32s forwards;
}

body.page-recruiters .c3-guesswork.is-visible .gw-hl:nth-child(3) {
  animation: gwFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.44s forwards;
}

body.page-recruiters .c3-guesswork.is-visible .gw-claim:nth-child(1) {
  animation: gwFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.58s forwards;
}

body.page-recruiters .c3-guesswork.is-visible .gw-claim:nth-child(2) {
  animation: gwFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

body.page-recruiters .c3-guesswork.is-visible .gw-claim:nth-child(3) {
  animation: gwFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.82s forwards;
}

body.page-recruiters .c3-guesswork.is-visible .gw-footer {
  animation: gwFadeIn 0.6s ease 1s forwards;
}

@media (prefers-reduced-motion: reduce) {
  body.page-recruiters .c3-guesswork .gw-eyebrow,
  body.page-recruiters .c3-guesswork .gw-hl,
  body.page-recruiters .c3-guesswork .gw-claim,
  body.page-recruiters .c3-guesswork .gw-footer {
    opacity: 1;
    animation: none !important;
  }
}

/* ── Recruiters: R4 Proof Reveal (Solution) ── */
body.page-recruiters .r4-proof-reveal {
  width: 100%;
  height: 100vh;
  min-height: 0;
  background: #000000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* ── BACKGROUND ELEMENTS ── */
body.page-recruiters .r4-ghost-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(110px, 17vw, 220px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

body.page-recruiters .r4-ambient-glow {
  position: absolute;
  bottom: -80px;
  right: 6%;
  width: 520px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(255,45,45,0.055) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* ── TWO-COLUMN GRID (children participate in section grid via display: contents) ── */
body.page-recruiters .r4-grid {
  display: contents;
}

/* ── LEFT PANEL ── */
body.page-recruiters .r4-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 2.5vh, 28px);
  min-height: 0;
  padding: clamp(60px, 9vh, 100px) var(--inset) clamp(60px, 9vh, 100px);
  box-sizing: border-box;
}

body.page-recruiters .r4-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.page-recruiters .r4-headline {
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
}

body.page-recruiters .r4-hl-line {
  display: block;
}

body.page-recruiters .r4-word {
  display: inline-block;
  margin-right: 0.15em;
}

body.page-recruiters .r4-word--ghost { color: var(--text-on-dark-faint); }
body.page-recruiters .r4-word--white { color: #ffffff; }
body.page-recruiters .r4-word--red   { color: #FF2D2D; }

body.page-recruiters .r4-sub {
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255,255,255,0.35);
  max-width: 340px;
  margin: 0;
}

body.page-recruiters .r4-sub strong {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

body.page-recruiters .r4-pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.4vh, 14px);
  padding: 0;
  margin: 0;
}

body.page-recruiters .r4-pillar {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

body.page-recruiters .r4-pillar-tick {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid rgba(255,45,45,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 7px;
  color: #FF2D2D;
  margin-top: 1px;
}

body.page-recruiters .r4-pillar-text {
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.3);
  font-weight: 400;
}

body.page-recruiters .r4-pillar-text em {
  font-style: normal;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

/* ── RIGHT PANEL ── */
body.page-recruiters .r4-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 900px;
  min-height: 0;
  padding: clamp(60px, 9vh, 100px) var(--inset) clamp(60px, 9vh, 100px) clamp(32px, 4vw, 60px);
  box-sizing: border-box;
}

body.page-recruiters .r4-card-wrapper {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── ANNOTATIONS ── */
body.page-recruiters .r4-ann {
  position: absolute;
  display: flex;
  align-items: center;
  pointer-events: none;
  right: calc(100% - 2px);
}

body.page-recruiters .r4-ann-text {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-on-dark-soft);
  white-space: nowrap;
  font-style: italic;
  letter-spacing: 0.02em;
}

body.page-recruiters .r4-ann-line {
  width: 26px;
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-left: 8px;
  flex-shrink: 0;
}

body.page-recruiters .r4-ann--1 { top: 20%; }
body.page-recruiters .r4-ann--2 { top: 48%; }
body.page-recruiters .r4-ann--3 { top: 74%; }

/* ── PROOF CARD ── */
body.page-recruiters .r4-proof-card {
  width: 100%;
  background: linear-gradient(145deg, #111114 0%, #0c0c0e 50%, #0e0c0c 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02),
    0 50px 120px rgba(0,0,0,0.75),
    0 0 80px rgba(255,45,45,0.04);
}

body.page-recruiters .r4-proof-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}

/* ── CARD HEADER ── */
body.page-recruiters .r4-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

body.page-recruiters .r4-candidate {
  display: flex;
  align-items: center;
  gap: 11px;
}

body.page-recruiters .r4-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e1e22, #28282d);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

body.page-recruiters .r4-candidate-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.page-recruiters .r4-cand-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.01em;
}

body.page-recruiters .r4-cand-role {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.26);
}

/* ── PROOFSCORE ── */
body.page-recruiters .r4-ps-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

body.page-recruiters .r4-ps-ring-wrap {
  position: relative;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-recruiters .r4-ps-svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

body.page-recruiters .r4-ring-track {
  fill: none;
  stroke: rgba(255,255,255,0.05);
  stroke-width: 1.5;
}

body.page-recruiters .r4-ring-arc {
  fill: none;
  stroke: #FF2D2D;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 163;
  stroke-dashoffset: 163;
  filter: drop-shadow(0 0 4px rgba(255,45,45,0.65));
}

body.page-recruiters .r4-ps-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

body.page-recruiters .r4-ps-number {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1;
}

body.page-recruiters .r4-ps-word {
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-top: 2px;
  white-space: nowrap;
}

body.page-recruiters .r4-ps-verified {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF2D2D;
  text-align: right;
  margin-top: 3px;
}

/* ── SIGNALS ── */
body.page-recruiters .r4-signals {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

body.page-recruiters .r4-signal {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

body.page-recruiters .r4-scan-overlay {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
}

body.page-recruiters .r4-scan-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,45,45,0.05) 40%,
    rgba(255,45,45,0.1) 50%,
    rgba(255,45,45,0.05) 60%,
    transparent 100%
  );
}

body.page-recruiters .r4-sig-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

body.page-recruiters .r4-sig-body {
  flex: 1;
  min-width: 0;
}

body.page-recruiters .r4-sig-title {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.page-recruiters .r4-sig-sub {
  font-size: 9.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.2);
}

body.page-recruiters .r4-sig-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  flex-shrink: 0;
}

body.page-recruiters .r4-badge {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

body.page-recruiters .r4-badge--verified {
  background: rgba(255,45,45,0.08);
  color: #FF2D2D;
  border: 1px solid rgba(255,45,45,0.16);
}

body.page-recruiters .r4-badge--assessed {
  background: rgba(34,197,94,0.08);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.16);
}

body.page-recruiters .r4-bdot {
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  flex-shrink: 0;
}

body.page-recruiters .r4-badge--verified .r4-bdot { background: #FF2D2D; }
body.page-recruiters .r4-badge--assessed .r4-bdot { background: #22c55e; }

/* ── CARD FOOTER ── */
body.page-recruiters .r4-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

body.page-recruiters .r4-footer-note {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.page-recruiters .r4-fn-label {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

body.page-recruiters .r4-fn-value {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.32);
  font-style: italic;
}

body.page-recruiters .r4-card-btn {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffffff;
  background: #FF2D2D;
  border: none;
  border-radius: 7px;
  padding: 9px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  box-shadow: 0 4px 24px rgba(255,45,45,0.2);
}

/* ── KICKER ── */
body.page-recruiters .r4-kicker {
  position: absolute;
  bottom: clamp(20px, 3vh, 32px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 0 var(--inset);
  box-sizing: border-box;
  text-align: center;
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.01em;
  z-index: 1;
  pointer-events: none;
}

body.page-recruiters .r4-kicker em {
  font-style: normal;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ── Recruiters: R5 How It Works ── */
body.page-recruiters .r5-how-it-works {
  width: 100%;
  min-height: 100vh;
  background: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: var(--section-gap-y);
  padding-inline: var(--inset);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  gap: clamp(28px, 3.8vh, 46px);
}

/* ── HEADER ── */
body.page-recruiters .r5-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

body.page-recruiters .r5-head-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.page-recruiters .r5-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}

body.page-recruiters .r5-hl {
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

body.page-recruiters .r5-hw { color: #ffffff; display: inline; }
body.page-recruiters .r5-hg { color: #FF2D2D; display: inline; }
body.page-recruiters .r5-hr { color: #FF2D2D; display: inline; }

body.page-recruiters .r5-sub {
  max-width: 272px;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.42);
  text-align: right;
  flex-shrink: 0;
  align-self: flex-end;
}

body.page-recruiters .r5-sub strong {
  color: rgba(255,255,255,0.68);
  font-weight: 600;
}

/* ── CARDS GRID ── */
body.page-recruiters .r5-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  position: relative;
}

/* ── CARD BASE ── */
body.page-recruiters .r5-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: clamp(24px, 3vw, 34px) clamp(20px, 2.2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}

/* Ghost step number */
body.page-recruiters .r5-ghost-num {
  position: absolute;
  bottom: -22px;
  right: -8px;
  font-size: clamp(88px, 11vw, 138px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.032);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.4s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

/* Step row */
body.page-recruiters .r5-step-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

body.page-recruiters .r5-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  color: #FF2D2D;
  background: rgba(255, 45, 45, 0.04);
  border: 1px solid rgba(255, 45, 45, 0.28);
  flex-shrink: 0;
}

body.page-recruiters .r5-step-track {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

body.page-recruiters .r5-step-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: #FF2D2D;
  border-radius: 1px;
  box-shadow: 0 0 10px rgba(255,45,45,0.7), 0 0 20px rgba(255,45,45,0.3);
}

/* Card title */
body.page-recruiters .r5-card-title {
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

body.page-recruiters .r5-card-title span {
  color: #FF2D2D;
}

/* Card body */
body.page-recruiters .r5-card-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  flex: 1;
  margin: 0 0 20px 0;
}

body.page-recruiters .r5-card-body strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Card signal */
body.page-recruiters .r5-card-signal {
  padding-top: 0;
  border-top: none;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.018);
}

/* Signal tags — step 1 */
body.page-recruiters .r5-sig-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px;
}

body.page-recruiters .r5-sig-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 5px;
  white-space: nowrap;
}

body.page-recruiters .r5-sig-tag--red {
  background: rgba(255,45,45,0.1);
  color: #FF2D2D;
  border: 1px solid rgba(255,45,45,0.2);
}

body.page-recruiters .r5-sig-tag--dim {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.52);
  border: 1px solid rgba(255,255,255,0.09);
}

/* Ranked list — step 2 */
body.page-recruiters .r5-ranked-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.page-recruiters .r5-ranked-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

body.page-recruiters .r5-ranked-row:last-child {
  border-bottom: none;
}

body.page-recruiters .r5-rank-pos {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-on-dark-soft);
  width: 14px;
  flex-shrink: 0;
  text-align: center;
}

body.page-recruiters .r5-rank-name {
  flex: 1;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.page-recruiters .r5-rank-detail {
  font-size: 9px;
  font-weight: 400;
  color: var(--text-on-dark-dim);
  white-space: nowrap;
}

body.page-recruiters .r5-rank-bar {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #FF2D2D;
  flex-shrink: 0;
  box-shadow: 0 0 5px rgba(255,45,45,0.5);
}

body.page-recruiters .r5-rank-bar--mid { opacity: 0.65; }
body.page-recruiters .r5-rank-bar--low { opacity: 0.4; }

body.page-recruiters .r5-rank-score {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #FF2D2D;
  flex-shrink: 0;
  line-height: 1;
}

/* Offer — step 3 */
body.page-recruiters .r5-offer-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
  padding: 14px;
}

body.page-recruiters .r5-offer-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 7px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.22);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #22c55e;
  white-space: nowrap;
}

body.page-recruiters .r5-offer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

body.page-recruiters .r5-offer-note {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-on-dark-muted);
  font-style: normal;
}

/* Kicker */
body.page-recruiters .r5-kicker {
  font-size: clamp(11px, 0.92vw, 13px);
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  text-align: center;
  letter-spacing: 0.01em;
  pointer-events: none;
}

body.page-recruiters .r5-kicker em {
  font-style: normal;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* Card hover — red glow border inset */
body.page-recruiters .r5-card::before {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,45,45,0);
  transition: box-shadow 0.35s ease;
  pointer-events: none;
  z-index: 2;
}

body.page-recruiters .r5-card:hover::before {
  box-shadow: inset 0 0 0 1px rgba(255,45,45,0.18);
}

/* Card hover — subtle background lift */
body.page-recruiters .r5-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.35s ease;
  pointer-events: none;
}

body.page-recruiters .r5-card:hover::after {
  background: rgba(255,255,255,0.012);
}

/* Ghost number — brightens and lifts on hover */
body.page-recruiters .r5-card:hover .r5-ghost-num {
  color: rgba(255,45,45,0.055);
  transform: scale(1.06) translate(-4px, -6px);
}

/* Ranked row hover */
body.page-recruiters .r5-ranked-row {
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: default;
}

body.page-recruiters .r5-ranked-row:hover {
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* Offer dot pulse */
body.page-recruiters .r5-offer-dot {
  animation: r5PulseDot 2s ease infinite;
}

@keyframes r5PulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

/* Ambient glows breath */
body.page-recruiters .r5-glow-a,
body.page-recruiters .r5-glow-b {
  animation: r5Breathe 7s ease-in-out infinite;
}

body.page-recruiters .r5-glow-b {
  animation-delay: 3.5s;
}

@keyframes r5Breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.94); }
}

/* ── INITIAL HIDDEN STATES ── */
body.page-recruiters .r5-eyebrow,
body.page-recruiters .r5-hw,
body.page-recruiters .r5-hg,
body.page-recruiters .r5-hr,
body.page-recruiters .r5-sub,
body.page-recruiters .r5-card,
body.page-recruiters .r5-card-signal,
body.page-recruiters .r5-offer-chip,
body.page-recruiters .r5-rank-score,
body.page-recruiters .r5-kicker {
  opacity: 0;
}

body.page-recruiters .r5-card {
  transform: translateY(28px) scale(0.98);
}

body.page-recruiters .r5-rank-score {
  transform: scale(0.7);
}

body.page-recruiters .r5-offer-chip {
  transform: scale(0.88);
}

/* ── VISIBLE STATES ── */

body.page-recruiters .r5-how-it-works.is-visible .r5-eyebrow {
  animation: r5FadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}

body.page-recruiters .r5-how-it-works.is-visible .r5-hw {
  animation: r5FadeUp 0.5s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}

body.page-recruiters .r5-how-it-works.is-visible .r5-hg {
  animation: r5FadeUp 0.5s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
}

body.page-recruiters .r5-how-it-works.is-visible .r5-hr {
  animation: r5FadeUp 0.5s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
}

body.page-recruiters .r5-how-it-works.is-visible .r5-sub {
  animation: r5FadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.42s forwards;
}

/* Cards — spring entrance, staggered */
body.page-recruiters .r5-how-it-works.is-visible .r5-card:nth-child(1) {
  animation: r5CardSpring 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.45s forwards;
}

body.page-recruiters .r5-how-it-works.is-visible .r5-card:nth-child(2) {
  animation: r5CardSpring 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.60s forwards;
}

body.page-recruiters .r5-how-it-works.is-visible .r5-card:nth-child(3) {
  animation: r5CardSpring 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.75s forwards;
}

/* Card signals */
body.page-recruiters .r5-how-it-works.is-visible .r5-card:nth-child(1) .r5-card-signal {
  animation: r5FadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 1.15s forwards;
}

body.page-recruiters .r5-how-it-works.is-visible .r5-card:nth-child(2) .r5-card-signal {
  animation: r5FadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 1.35s forwards;
}

body.page-recruiters .r5-how-it-works.is-visible .r5-card:nth-child(3) .r5-card-signal {
  animation: r5FadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 1.55s forwards;
}

/* Score pops — step 2 */
body.page-recruiters .r5-how-it-works.is-visible #r5-score-1 {
  animation: r5ScorePop 0.4s cubic-bezier(0.34,1.56,0.64,1) 1.6s forwards;
}

body.page-recruiters .r5-how-it-works.is-visible #r5-score-2 {
  animation: r5ScorePop 0.4s cubic-bezier(0.34,1.56,0.64,1) 1.8s forwards;
}

body.page-recruiters .r5-how-it-works.is-visible #r5-score-3 {
  animation: r5ScorePop 0.4s cubic-bezier(0.34,1.56,0.64,1) 2.0s forwards;
}

/* Offer chip — step 3 */
body.page-recruiters .r5-how-it-works.is-visible .r5-offer-chip {
  animation: r5ChipPop 0.5s cubic-bezier(0.34,1.56,0.64,1) 1.7s forwards;
}

/* Kicker */
body.page-recruiters .r5-how-it-works.is-visible .r5-kicker {
  animation: r5FadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 2.0s forwards;
}

/* ── KEYFRAMES ── */
@keyframes r5FadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes r5CardSpring {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes r5ScorePop {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes r5ChipPop {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  body.page-recruiters .r5-eyebrow,
  body.page-recruiters .r5-hw,
  body.page-recruiters .r5-hg,
  body.page-recruiters .r5-hr,
  body.page-recruiters .r5-sub,
  body.page-recruiters .r5-card,
  body.page-recruiters .r5-card-signal,
  body.page-recruiters .r5-offer-chip,
  body.page-recruiters .r5-rank-score,
  body.page-recruiters .r5-kicker {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  body.page-recruiters .r5-step-fill {
    width: 100%;
  }
  body.page-recruiters .r5-offer-dot {
    animation: none;
  }
}

/* ════════════════════════════
   R6 — PROVOCATION
════════════════════════════ */

body.page-recruiters .r6-provocation {
  width: 100%;
  /* Grow with content — fixed height + overflow was clipping “BLIND?” */
  min-height: clamp(560px, 72vh, 920px);
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Same vertical rhythm as R5: divider → first line = padding-top 120px */
  justify-content: flex-start;
  padding-top: 120px;
  padding-bottom: var(--section-gap-y);
  position: relative;
  /* Keep glow from spilling sideways; don’t clip headline vertically */
  overflow-x: hidden;
  overflow-y: visible;
  padding-inline: var(--inset);
  box-sizing: border-box;
}

/* Top red accent line */
body.page-recruiters .r6-top-line {
  position: absolute;
  top: 0;
  left: var(--inset);
  right: var(--inset);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,45,45,0.5),
    transparent
  );
  transform-origin: center;
}

/* Red glow — top centre */
body.page-recruiters .r6-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(255,45,45,0.065) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* Headline */
body.page-recruiters .r6-hl {
  text-align: center;
  /* Slightly smaller max + roomier line-height so glyphs aren’t clipped */
  font-size: clamp(3rem, 9vw, 8.25rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  /* Breathing room for ascenders / tight leading */
  padding-block: 0.06em 0.12em;
}

body.page-recruiters .r6-l1 { display: block; color: rgba(255,255,255,0.32); }
body.page-recruiters .r6-l2 { display: block; color: #ffffff; }
body.page-recruiters .r6-l3 {
  display: block;
  color: #FF2D2D;
  text-shadow: 0 0 80px rgba(255,45,45,0.4);
}

/* Sub line */
body.page-recruiters .r6-sub {
  margin-top: 24px;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  text-align: center;
  position: relative;
  z-index: 1;
}

body.page-recruiters .r6-sub strong {
  color: rgba(255,255,255,0.70);
  font-weight: 600;
}

/* Scroll nudge */
body.page-recruiters .r6-nudge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

body.page-recruiters .r6-nudge-bar {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(255,45,45,0.55), transparent);
}

body.page-recruiters .r6-nudge-txt {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}

/* ════════════════════════════
   R7 — FOUNDING PARTNER
════════════════════════════ */

body.page-recruiters .r7-founding-partner {
  width: 100%;
  min-height: 100vh;
  background: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Match R5 entry after divider + page close like R5/R4 vertical rhythm */
  padding-top: 120px;
  padding-bottom: var(--section-gap-y);
  padding-inline: var(--inset);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  gap: clamp(36px, 5vh, 60px);
}

/* Top border */
body.page-recruiters .r7-border {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

/* Bottom-right ambient glow */
body.page-recruiters .r7-glow {
  position: absolute;
  bottom: -80px; right: -40px;
  width: 700px; height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(255,45,45,0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* ── Headline block ── */
body.page-recruiters .r7-headline-block {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

body.page-recruiters .r7-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 14px;
}

body.page-recruiters .r7-hl {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

body.page-recruiters .r7-hw { color: #ffffff; }
body.page-recruiters .r7-hr { color: #FF2D2D; }

body.page-recruiters .r7-hook {
  max-width: 320px;
  align-self: flex-end;
  text-align: right;
}

body.page-recruiters .r7-hook-main {
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

body.page-recruiters .r7-hook-sub {
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

body.page-recruiters .r7-hook-sub strong {
  color: rgba(255,255,255,0.62);
  font-weight: 600;
}

/* ── Benefits grid ── */
body.page-recruiters .r7-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

body.page-recruiters .r7-benefit {
  background: #000000;
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Ghost number */
body.page-recruiters .r7-benefit-ghost {
  position: absolute;
  bottom: -16px; right: -6px;
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.028);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.4s ease,
              transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

body.page-recruiters .r7-benefit-num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #FF2D2D;
}

body.page-recruiters .r7-benefit-phrase {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  text-transform: uppercase;
  color: #ffffff;
}

body.page-recruiters .r7-benefit-phrase span {
  color: #FF2D2D;
}

body.page-recruiters .r7-benefit-whisper {
  font-size: clamp(11.5px, 0.95vw, 13px);
  font-weight: 400;
  line-height: 1.62;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
}

body.page-recruiters .r7-benefit-whisper strong {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* ── CTA block ── */
body.page-recruiters .r7-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Spots indicator */
body.page-recruiters .r7-spots {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

body.page-recruiters .r7-spots-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FF2D2D;
  box-shadow: 0 0 6px rgba(255,45,45,0.5);
}

/* CTA button */
body.page-recruiters .r7-cta-btn {
  background: #FF2D2D;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 18px 48px;
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(255,45,45,0.3);
}

body.page-recruiters .r7-btn-arrow {
  font-size: 16px;
  display: inline-block;
}

/* Sub line under button */
body.page-recruiters .r7-btn-sub {
  font-size: 10.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.20);
  letter-spacing: 0.02em;
  margin-top: -8px;
}

/* Trust strip — horizontal */
body.page-recruiters .r7-trust-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

body.page-recruiters .r7-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.32);
  padding: 0 16px;
  white-space: nowrap;
}

body.page-recruiters .r7-trust-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.1);
}

body.page-recruiters .r7-t-check {
  color: #22c55e;
  font-size: 10px;
  font-weight: 700;
}

/* ── R6 / R7 — hover & motion (recruiters) ── */

/* ── R6 glow breath ── */
body.page-recruiters .r6-glow {
  animation: r6GlowBreathe 5s ease-in-out infinite;
}

body.page-recruiters .r6-nudge-bar {
  animation: r6BarPulse 1.8s ease-in-out infinite;
}

/* ── R7 glow breath ── */
body.page-recruiters .r7-glow {
  animation: r7GlowBreathe 6s ease-in-out 3s infinite;
}

/* ── Spots dot pulse ── */
body.page-recruiters .r7-spots-dot {
  animation: r7DotPulse 1.5s ease infinite;
}

/* ── Benefit card hover ── */
body.page-recruiters .r7-benefit {
  transition: background 0.3s ease;
}

body.page-recruiters .r7-benefit:hover {
  background: #070707;
}

/* Red accent line sweeps in from left on hover */
body.page-recruiters .r7-benefit::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF2D2D, transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

body.page-recruiters .r7-benefit:hover::after {
  transform: scaleX(1);
}

/* Ghost number lifts and reddens on hover */
body.page-recruiters .r7-benefit:hover .r7-benefit-ghost {
  color: rgba(255,45,45,0.055);
  transform: scale(1.05) translateY(-4px);
}

/* ── CTA button hover ── */
body.page-recruiters .r7-cta-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.page-recruiters .r7-cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -80%; width: 60%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  transition: left 0.55s ease;
}

body.page-recruiters .r7-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(255,45,45,0.42);
}

body.page-recruiters .r7-cta-btn:hover::before {
  left: 150%;
}

body.page-recruiters .r7-cta-btn:active {
  transform: translateY(0);
}

body.page-recruiters .r7-btn-arrow {
  transition: transform 0.2s ease;
}

body.page-recruiters .r7-cta-btn:hover .r7-btn-arrow {
  transform: translateX(5px);
}

/* ── Keyframes (R6 / R7 recruiters) ── */
@keyframes r6GlowBreathe {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

@keyframes r6BarPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.6); }
}

@keyframes r7GlowBreathe {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

@keyframes r7DotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.6); }
}

/* ════════════════════════════
   R6 / R7 — entrance (recruiters)
════════════════════════════ */

/* ════════════════════════════
   R6 — INITIAL STATES
════════════════════════════ */
body.page-recruiters .r6-top-line {
  transform: scaleX(0);
  opacity: 0;
}

body.page-recruiters .r6-l1,
body.page-recruiters .r6-l2,
body.page-recruiters .r6-l3,
body.page-recruiters .r6-sub,
body.page-recruiters .r6-nudge {
  opacity: 0;
}

body.page-recruiters .r6-l1,
body.page-recruiters .r6-l2,
body.page-recruiters .r6-l3 {
  transform: translateY(22px) skewY(1.5deg);
}

body.page-recruiters .r6-sub,
body.page-recruiters .r6-nudge {
  transform: translateY(12px);
}

/* ── R6 VISIBLE STATES ── */
body.page-recruiters .r6-provocation.is-visible .r6-top-line {
  animation: r6LineReveal 1s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}

body.page-recruiters .r6-provocation.is-visible .r6-l1 {
  animation: r6WordDrop 0.65s cubic-bezier(0.16,1,0.3,1) 0.25s forwards;
}

body.page-recruiters .r6-provocation.is-visible .r6-l2 {
  animation: r6WordDrop 0.65s cubic-bezier(0.16,1,0.3,1) 0.42s forwards;
}

body.page-recruiters .r6-provocation.is-visible .r6-l3 {
  animation: r6WordDrop 0.65s cubic-bezier(0.16,1,0.3,1) 0.58s forwards;
}

body.page-recruiters .r6-provocation.is-visible .r6-sub {
  animation: r6FadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.9s forwards;
}

body.page-recruiters .r6-provocation.is-visible .r6-nudge {
  animation: r6FadeUp 0.5s ease 1.3s forwards;
}

/* ════════════════════════════
   R7 — INITIAL STATES
════════════════════════════ */
body.page-recruiters .r7-eyebrow,
body.page-recruiters .r7-hl,
body.page-recruiters .r7-hook,
body.page-recruiters .r7-benefit,
body.page-recruiters .r7-cta-block {
  opacity: 0;
}

body.page-recruiters .r7-eyebrow,
body.page-recruiters .r7-hl,
body.page-recruiters .r7-hook {
  transform: translateY(16px);
}

body.page-recruiters .r7-benefit {
  transform: translateY(24px) scale(0.98);
}

body.page-recruiters .r7-cta-block {
  transform: translateY(16px);
}

/* ── R7 VISIBLE STATES ── */
body.page-recruiters .r7-founding-partner.is-visible .r7-eyebrow {
  animation: r7FadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}

body.page-recruiters .r7-founding-partner.is-visible .r7-hl {
  animation: r7FadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}

body.page-recruiters .r7-founding-partner.is-visible .r7-hook {
  animation: r7FadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.32s forwards;
}

/* Benefit cards — spring stagger */
body.page-recruiters .r7-founding-partner.is-visible .r7-benefit:nth-child(1) {
  animation: r7CardSpring 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.5s forwards;
}

body.page-recruiters .r7-founding-partner.is-visible .r7-benefit:nth-child(2) {
  animation: r7CardSpring 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.65s forwards;
}

body.page-recruiters .r7-founding-partner.is-visible .r7-benefit:nth-child(3) {
  animation: r7CardSpring 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.8s forwards;
}

/* CTA block */
body.page-recruiters .r7-founding-partner.is-visible .r7-cta-block {
  animation: r7FadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 1.1s forwards;
}

/* ── KEYFRAMES (R6 / R7 entrance) ── */
@keyframes r6LineReveal {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

@keyframes r6WordDrop {
  from { opacity: 0; transform: translateY(22px) skewY(1.5deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0deg); }
}

@keyframes r6FadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes r7FadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes r7CardSpring {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── REDUCED MOTION (R6 / R7 entrance) ── */
@media (prefers-reduced-motion: reduce) {
  body.page-recruiters .r6-top-line,
  body.page-recruiters .r6-l1,
  body.page-recruiters .r6-l2,
  body.page-recruiters .r6-l3,
  body.page-recruiters .r6-sub,
  body.page-recruiters .r6-nudge,
  body.page-recruiters .r7-eyebrow,
  body.page-recruiters .r7-hl,
  body.page-recruiters .r7-hook,
  body.page-recruiters .r7-benefit,
  body.page-recruiters .r7-cta-block {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  body.page-recruiters .r7-spots-dot,
  body.page-recruiters .r6-nudge-bar {
    animation: none !important;
  }
}

/* ── R4 Hover / Entrance Polish ── */
body.page-recruiters .r4-signal {
  transition: background 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

body.page-recruiters .r4-signal:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.09);
}

body.page-recruiters .r4-card-btn {
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
}

body.page-recruiters .r4-card-btn:hover {
  background: #e02020;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(255,45,45,0.32);
}

body.page-recruiters .r4-btn-arr {
  display: inline-block;
  transition: transform 0.18s ease;
}

body.page-recruiters .r4-card-btn:hover .r4-btn-arr {
  transform: translateX(3px);
}

body.page-recruiters .r4-bdot {
  animation: r4PulseDot 2s ease infinite;
}

body.page-recruiters .r4-ambient-glow {
  animation: r4GlowBreath 5s ease-in-out infinite;
}

@keyframes r4PulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes r4GlowBreath {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.96); }
}

/* ── R4 Annotation Highlight (subtle, premium) ── */
body.page-recruiters .r4-proof-reveal.is-visible .r4-ann-text {
  display: inline-block;
  position: relative;
}

body.page-recruiters .r4-proof-reveal.is-visible .r4-ann--1 .r4-ann-text,
body.page-recruiters .r4-proof-reveal.is-visible .r4-ann--2 .r4-ann-text,
body.page-recruiters .r4-proof-reveal.is-visible .r4-ann--3 .r4-ann-text {
  animation: r4AnnHighlight 2.8s ease-in-out infinite;
}

body.page-recruiters .r4-proof-reveal.is-visible .r4-ann--1 .r4-ann-text { animation-delay: 1.6s; }
body.page-recruiters .r4-proof-reveal.is-visible .r4-ann--2 .r4-ann-text { animation-delay: 2.0s; }
body.page-recruiters .r4-proof-reveal.is-visible .r4-ann--3 .r4-ann-text { animation-delay: 2.4s; }

@keyframes r4AnnHighlight {
  0%, 100% {
    text-shadow: 0 0 0 rgba(255, 45, 45, 0);
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 18px rgba(255, 45, 45, 0.12);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-recruiters .r4-proof-reveal.is-visible .r4-ann-text {
    animation: none !important;
    text-shadow: none !important;
  }
}

/* ── INITIAL HIDDEN STATES ── */
body.page-recruiters .r4-ghost-word,
body.page-recruiters .r4-eyebrow,
body.page-recruiters .r4-word,
body.page-recruiters .r4-sub,
body.page-recruiters .r4-pillars,
body.page-recruiters .r4-card-wrapper,
body.page-recruiters .r4-ann,
body.page-recruiters .r4-signal,
body.page-recruiters .r4-sig-badges,
body.page-recruiters .r4-card-footer,
body.page-recruiters .r4-kicker {
  opacity: 0;
}

body.page-recruiters .r4-word {
  transform: translateY(20px);
}

body.page-recruiters .r4-card-wrapper {
  transform: translateX(40px) scale(0.96);
}

body.page-recruiters .r4-signal {
  transform: none;
}

body.page-recruiters .r4-sig-badges {
  transform: translateX(6px);
}

body.page-recruiters .r4-ann {
  transform: translateX(-10px);
}

/* ── VISIBLE STATES (triggered by .is-visible on section) ── */

/* Ghost word */
body.page-recruiters .r4-proof-reveal.is-visible .r4-ghost-word {
  animation: r4FadeIn 1.2s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}

/* Eyebrow */
body.page-recruiters .r4-proof-reveal.is-visible .r4-eyebrow {
  animation: r4FadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.15s forwards;
}

/* Words — staggered individually via nth-child */
body.page-recruiters .r4-proof-reveal.is-visible .r4-word:nth-child(1) {
  animation: r4WordIn 0.45s cubic-bezier(0.16,1,0.3,1) 0.28s forwards;
}
body.page-recruiters .r4-proof-reveal.is-visible .r4-hl-line:nth-child(1) .r4-word:nth-child(1) {
  animation: r4WordIn 0.45s cubic-bezier(0.16,1,0.3,1) 0.28s forwards;
}
body.page-recruiters .r4-proof-reveal.is-visible .r4-hl-line:nth-child(1) .r4-word:nth-child(2) {
  animation: r4WordIn 0.45s cubic-bezier(0.16,1,0.3,1) 0.38s forwards;
}
body.page-recruiters .r4-proof-reveal.is-visible .r4-hl-line:nth-child(1) .r4-word:nth-child(3) {
  animation: r4WordIn 0.45s cubic-bezier(0.16,1,0.3,1) 0.48s forwards;
}
body.page-recruiters .r4-proof-reveal.is-visible .r4-hl-line:nth-child(2) .r4-word:nth-child(1) {
  animation: r4WordIn 0.45s cubic-bezier(0.16,1,0.3,1) 0.60s forwards;
}
body.page-recruiters .r4-proof-reveal.is-visible .r4-hl-line:nth-child(3) .r4-word:nth-child(1) {
  animation: r4WordIn 0.45s cubic-bezier(0.16,1,0.3,1) 0.72s forwards;
}
body.page-recruiters .r4-proof-reveal.is-visible .r4-hl-line:nth-child(3) .r4-word:nth-child(2) {
  animation: r4WordIn 0.45s cubic-bezier(0.16,1,0.3,1) 0.82s forwards;
}

/* Sub copy */
body.page-recruiters .r4-proof-reveal.is-visible .r4-sub {
  animation: r4FadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 1.1s forwards;
}

/* Pillars */
body.page-recruiters .r4-proof-reveal.is-visible .r4-pillars {
  animation: r4FadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 1.25s forwards;
}

/* Card wrapper */
body.page-recruiters .r4-proof-reveal.is-visible .r4-card-wrapper {
  animation: r4CardEntry 1s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}

/* Signals (inside proof card) */
body.page-recruiters .r4-proof-reveal.is-visible .r4-signal:nth-child(1) {
  animation: r4FadeUp 0.5s cubic-bezier(0.16,1,0.3,1) 1.7s forwards;
}
body.page-recruiters .r4-proof-reveal.is-visible .r4-signal:nth-child(2) {
  animation: r4FadeUp 0.5s cubic-bezier(0.16,1,0.3,1) 1.86s forwards;
}
body.page-recruiters .r4-proof-reveal.is-visible .r4-signal:nth-child(3) {
  animation: r4FadeUp 0.5s cubic-bezier(0.16,1,0.3,1) 2.02s forwards;
}

body.page-recruiters .r4-proof-reveal.is-visible .r4-signal:nth-child(1) .r4-sig-badges {
  animation: r4FadeUp 0.35s cubic-bezier(0.16,1,0.3,1) 1.92s forwards;
}
body.page-recruiters .r4-proof-reveal.is-visible .r4-signal:nth-child(2) .r4-sig-badges {
  animation: r4FadeUp 0.35s cubic-bezier(0.16,1,0.3,1) 2.08s forwards;
}
body.page-recruiters .r4-proof-reveal.is-visible .r4-signal:nth-child(3) .r4-sig-badges {
  animation: r4FadeUp 0.35s cubic-bezier(0.16,1,0.3,1) 2.24s forwards;
}

/* Annotations */
body.page-recruiters .r4-proof-reveal.is-visible .r4-ann--1 {
  animation: r4AnnIn 0.5s cubic-bezier(0.16,1,0.3,1) 2.0s forwards;
}
body.page-recruiters .r4-proof-reveal.is-visible .r4-ann--2 {
  animation: r4AnnIn 0.5s cubic-bezier(0.16,1,0.3,1) 2.2s forwards;
}
body.page-recruiters .r4-proof-reveal.is-visible .r4-ann--3 {
  animation: r4AnnIn 0.5s cubic-bezier(0.16,1,0.3,1) 2.4s forwards;
}

/* Card footer */
body.page-recruiters .r4-proof-reveal.is-visible .r4-card-footer {
  animation: r4FadeUp 0.5s cubic-bezier(0.16,1,0.3,1) 2.8s forwards;
}

/* Kicker */
body.page-recruiters .r4-proof-reveal.is-visible .r4-kicker {
  animation: r4FadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 3.0s forwards;
}

/* ── KEYFRAMES ── */
@keyframes r4FadeIn {
  to { opacity: 1; }
}

@keyframes r4FadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes r4WordIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes r4CardEntry {
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes r4AnnIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  body.page-recruiters .r4-ghost-word,
  body.page-recruiters .r4-eyebrow,
  body.page-recruiters .r4-word,
  body.page-recruiters .r4-sub,
  body.page-recruiters .r4-pillars,
  body.page-recruiters .r4-card-wrapper,
  body.page-recruiters .r4-ann,
  body.page-recruiters .r4-signal,
  body.page-recruiters .r4-sig-badges,
  body.page-recruiters .r4-card-footer,
  body.page-recruiters .r4-kicker {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  body.page-recruiters .r4-ring-arc {
    stroke-dashoffset: 20;
  }
  body.page-recruiters .r4-bdot {
    animation: none;
  }
}

/* ----- Signals section (full bleed) ----- */
.signals-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  padding: var(--section-gap-y) calc(8vw + clamp(16px, 1.5vw, 28px));
  position: relative;
  overflow: hidden;
}
.signals-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 45, 45, 0.04), transparent 65%);
  pointer-events: none;
}
.signals-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 45, 45, 0.4);
  margin: 0 0 56px 0;
}
.signals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.signal-card {
  padding: 0 48px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  margin-right: 48px;
  display: flex;
  flex-direction: column;
}
.signal-card:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.signal-num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 45, 45, 0.35);
  margin-bottom: 20px;
}
.signal-name {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 16px 0;
}
.signal-indict {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 13px;
  color: var(--text-on-dark-dim);
  line-height: 1.7;
  margin: 0 0 28px 0;
}
.signal-indict em {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  font-style: normal;
}
.broken-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 45, 45, 0.4);
  border: 1px solid rgba(255, 45, 45, 0.12);
  padding: 3px 9px;
  border-radius: 3px;
  background: rgba(255, 45, 45, 0.03);
}
.broken-tag__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 45, 45, 0.5);
}

/* ----- Revolt Section ----- */
.revolt {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: 0;
  margin-bottom: 0;
  padding: var(--section-gap-y) calc(8vw + clamp(16px, 1.5vw, 28px)) var(--section-gap-y);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.revolt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(to bottom, transparent, transparent 59px, rgba(255, 255, 255, 0.018) 60px),
    repeating-linear-gradient(to right, transparent, transparent 119px, rgba(255, 255, 255, 0.012) 120px);
  pointer-events: none;
}
.revolt::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255, 45, 45, 0.07) 0%, transparent 60%);
  pointer-events: none;
}
.revolt-inner {
  position: relative;
  z-index: 1;
}
/* Matches C3 guesswork eyebrow: pip + grey label */
.revolt-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 48px 0;
}

.revolt-eyebrow-text {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.revolt-cry {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin: 0 0 52px 0;
}
.revolt-cry .line-dim {
  display: block;
  color: var(--text-on-dark-faint);
}
.revolt-cry .line-bold {
  display: block;
  color: rgba(255, 255, 255, 0.95);
}
.revolt-cry .line-red {
  display: block;
  color: #FF2D2D;
}
.revolt-conviction {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 48px;
}
.revolt-conviction em {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-style: normal;
}
.revolt-quote {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.revolt-quote em {
  color: #fff;
  font-weight: 600;
  font-style: normal;
}

/* ----- Recruiters / Companies: Section C4 (What Changes) ----- */
.c4 {
  padding: var(--section-gap-y) calc(8vw + clamp(16px, 1.5vw, 28px));
  position: relative;
  overflow: hidden;
  background: var(--bg-1);
}
.c4__grain {
  position: absolute;
  inset: 0;
  z-index: 999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.c4::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.c4__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin: 0 0 64px 0;
}
.c4-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 100px;
}
.c4-headline {
  flex: 1;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(52px, 6.5vw, 90px);
  text-transform: uppercase;
  line-height: 0.91;
  letter-spacing: -0.02em;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}
.c4-top-right {
  max-width: 320px;
  flex-shrink: 0;
}
.c4-top-right p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin: 0;
}
.c4-top-right em {
  color: #fff;
  font-weight: 500;
  font-style: normal;
}

/* ----- Outcomes grid ----- */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 80px;
}
.outcome {
  padding: 48px 40px 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.outcome:last-child {
  border-right: none;
}
.outcome-1::before,
.outcome-2::before,
.outcome-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.outcome-1::before {
  background: linear-gradient(to right, #FF2D2D, transparent);
}
.outcome-2::before {
  background: linear-gradient(to right, rgba(255, 200, 50, 0.6), transparent);
}
.outcome-3::before {
  background: linear-gradient(to right, rgba(80, 180, 255, 0.6), transparent);
}
.outcome-num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  margin-bottom: 32px;
}
.outcome-title {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(28px, 2.8vw, 40px);
  text-transform: uppercase;
  line-height: 0.93;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 20px 0;
}
.outcome-proof {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin: 0 0 36px 0;
  flex: 1;
}
.outcome-proof em {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-style: normal;
}

/* ----- C3 staggered fade-up animation ----- */
@keyframes c4-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .c4-anim {
    opacity: 0;
    animation: c4-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .c4-anim[data-c4-delay="0"] { animation-delay: 0.05s; }
  .c4-anim[data-c4-delay="1"] { animation-delay: 0.15s; }
  .c4-anim[data-c4-delay="2"] { animation-delay: 0.28s; }
  .c4-anim[data-c4-delay="3"] { animation-delay: 0.44s; }
}
@media (prefers-reduced-motion: reduce) {
  .c4-anim {
    opacity: 1;
    animation: none;
  }
}

/* ----- C4 1280px: outcomes-grid layout ----- */
@media (min-width: 1280px) {
  .outcome {
    min-width: 0;
    padding: 36px 28px 32px;
  }
}

/* ----- Section C5 (How It Works) ----- */
.c5 {
  padding: var(--section-gap-y) calc(8vw + clamp(16px, 1.5vw, 28px));
  position: relative;
  overflow: hidden;
}
.c5__grain {
  position: absolute;
  inset: 0;
  z-index: 999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.c5::before {
  content: "";
  position: absolute;
  left: calc(8vw + clamp(16px, 1.5vw, 28px));
  right: calc(8vw + clamp(16px, 1.5vw, 28px));
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.c5__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin: 0 0 64px 0;
}
.c5-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 100px;
}
.c5-headline {
  flex: 1;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(52px, 6.5vw, 90px);
  text-transform: uppercase;
  line-height: 0.91;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}
.c5-headline .c2__dim {
  color: var(--text-on-dark-dim);
}
.c5-top-right {
  max-width: 300px;
  flex-shrink: 0;
}
.c5-top-right p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin: 0;
}

/* ----- Steps flow ----- */
.steps-flow {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  align-items: start;
  margin-bottom: 80px;
  position: relative;
}
.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
  gap: 6px;
}
.connector-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 45, 45, 0.3), rgba(255, 45, 45, 0.6), rgba(255, 45, 45, 0.3));
  position: relative;
  overflow: hidden;
}
.connector-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: signalTravel 2s ease infinite;
}
.step-connector:nth-of-type(2) .connector-line::after {
  animation-delay: 0.6s;
}
@keyframes signalTravel {
  0% { left: -40%; }
  100% { left: 140%; }
}
.connector-arrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  color: rgba(255, 45, 45, 0.4);
  margin-top: 4px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.step-num-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-1 .step-num-circle {
  border: 1px solid rgba(255, 45, 45, 0.3);
  color: #FF2D2D;
  background: rgba(255, 45, 45, 0.04);
}
.step-2 .step-num-circle {
  border: 1px solid rgba(255, 45, 45, 0.2);
  color: rgba(255, 45, 45, 0.6);
  background: rgba(255, 45, 45, 0.02);
}
.step-3 .step-num-circle {
  border: 1px solid rgba(80, 210, 120, 0.3);
  color: rgba(80, 210, 120, 0.7);
  background: rgba(80, 210, 120, 0.03);
}
.step-title {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.step-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin: 0 0 28px 0;
}
.step-desc em {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-style: normal;
}
.step-widget {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.018);
}
.step-widget .widget-bar {
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.step-widget .widget-bar span:first-child {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
}
.widget-status {
  display: flex;
  align-items: center;
  gap: 5px;
}
.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  animation: blink 1.6s ease infinite;
}
.dot-red {
  background: #FF2D2D;
}
.dot-amber {
  background: rgba(255, 200, 50, 0.7);
  animation-delay: 0.4s;
}
.dot-green {
  background: rgba(80, 210, 120, 0.8);
  animation-delay: 0.8s;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.widget-status--red { color: #FF2D2D; }
.widget-status--amber { color: rgba(255, 200, 50, 0.7); }
.widget-status--green { color: rgba(80, 210, 120, 0.8); }

/* ----- Widget 1: Role brief ----- */
.role-brief {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.role-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.role-name {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}
.role-tag {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 9px;
  background: rgba(255, 45, 45, 0.08);
  color: rgba(255, 45, 45, 0.6);
  border: 1px solid rgba(255, 45, 45, 0.12);
  padding: 3px 8px;
  border-radius: 3px;
}
.proof-requirements {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.proof-req-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 9px;
  color: var(--text-on-dark-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.proof-req-item {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}
.proof-req-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 45, 45, 0.4);
  flex-shrink: 0;
}
.proof-diff {
  padding: 8px 10px;
  background: rgba(255, 45, 45, 0.03);
  border: 1px solid rgba(255, 45, 45, 0.08);
  border-radius: 4px;
  font-size: 10px;
  color: rgba(255, 45, 45, 0.45);
  font-style: italic;
  margin: 0;
  font-family: var(--font-sans);
}

/* ----- Widget 2: Ranked shortlist ----- */
.ranked-list {
  display: flex;
  flex-direction: column;
}
.ranked-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.ranked-item:last-child {
  border-bottom: none;
}
.rank-pos {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  color: var(--text-on-dark-soft);
  width: 14px;
  flex-shrink: 0;
}
.rank-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rank-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.rank-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}
.rank-college {
  font-size: 9px;
  color: var(--text-on-dark-dim);
}
.proof-bar-track {
  width: 48px;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
.proof-bar-fill {
  display: block;
  height: 100%;
  background: #FF2D2D;
  border-radius: 2px;
}
.rank-score {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 14px;
  color: #FF2D2D;
  flex-shrink: 0;
}

/* ----- Widget 3: Hire confirm ----- */
.hire-confirm {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hire-candidate-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(80, 210, 120, 0.04);
  border: 1px solid rgba(80, 210, 120, 0.1);
}
.hire-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(80, 210, 120, 0.08);
  color: rgba(80, 210, 120, 0.6);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hire-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hire-name {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}
.hire-meta {
  font-size: 10px;
  color: var(--text-on-dark-muted);
}
.hire-score {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 22px;
  color: rgba(80, 210, 120, 0.8);
  flex-shrink: 0;
}
.proof-summary {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.proof-sum-item {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 10px;
  color: rgba(180, 240, 200, 0.6);
  font-family: var(--font-sans);
}
.proof-sum-check {
  color: rgba(80, 210, 120, 0.8);
  flex-shrink: 0;
}
.decision-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 5px;
  background: rgba(80, 210, 120, 0.06);
  border: 1px solid rgba(80, 210, 120, 0.14);
}
.decision-label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(80, 210, 120, 0.7);
}
.decision-note {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 9px;
  color: var(--text-on-dark-dim);
}

/* ----- C5 close ----- */
.c5-close {
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.c5-close .close-left {
  flex: 1;
}
.time-stats {
  display: flex;
  gap: 0;
}
.time-stat {
  padding: 20px 32px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  margin-right: 32px;
}
.time-stat:last-child {
  border-right: none;
  margin-right: 0;
}
.time-num {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 5px;
}
.time-num span {
  font-size: 22px;
  color: #FF2D2D;
}
.time-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
}
.c5-close .close-right {
  max-width: 320px;
  flex-shrink: 0;
}
.c5-close .close-right p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  margin: 0;
}
.c5-close .close-right em {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-style: normal;
}

/* ----- Section C6 (Proof Economy) ----- */
.c6 {
  padding: var(--section-gap-y) calc(8vw + clamp(16px, 1.5vw, 28px)) var(--section-gap-y);
  position: relative;
  overflow: hidden;
}
.c6__grain {
  position: absolute;
  inset: 0;
  z-index: 999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.c6::before {
  content: "";
  position: absolute;
  left: calc(8vw + clamp(16px, 1.5vw, 28px));
  right: calc(8vw + clamp(16px, 1.5vw, 28px));
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.c6__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin: 0 0 80px 0;
}
.laws-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 100px;
}
.law-row {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 52px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.law-row:last-child {
  border-bottom: none;
}
.law-left {
  flex: 1;
  max-width: 560px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.law-num {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 18px;
  color: rgba(255, 45, 45, 0.35);
  letter-spacing: 0.04em;
  padding-top: 6px;
  flex-shrink: 0;
  width: 32px;
}
.law-text {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  text-transform: uppercase;
  line-height: 0.91;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}
.law-text .law-red {
  color: #FF2D2D;
}
.law-desc {
  flex: 1;
  max-width: 400px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  padding-top: 8px;
}

/* ----- C6 / category / founding staggered fade-up ----- */
@keyframes c6-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes category-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: no-preference) {
  .c6-anim {
    opacity: 0;
    animation: c6-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .c6-anim[data-c6-delay="0"] { animation-delay: 0.05s; }
  .c6-anim[data-c6-delay="1"] { animation-delay: 0.18s; }
  .category-anim {
    opacity: 0;
    animation: category-fade-in 1.2s ease forwards;
    animation-delay: 0.32s;
  }
  .founding-anim {
    opacity: 0;
    animation: c6-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.48s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .c6-anim,
  .category-anim,
  .founding-anim {
    opacity: 1;
    animation: none;
  }
}

/* ----- C6 / category / founding at 1280px ----- */
@media (max-width: 1280px) {
  .law-row {
    gap: 60px;
  }
}
@media (min-width: 1280px) {
  .category-inner {
    flex-wrap: nowrap;
  }
  .category-left,
  .category-right {
    min-width: 0;
  }
  .founding-inner {
    flex-wrap: nowrap;
  }
  .founding-left {
    min-width: 0;
  }
  .founding-right {
    width: 420px;
    flex-shrink: 0;
  }
}

/* ----- Category block (full bleed) ----- */
.category-block {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: var(--section-gap-y) calc(8vw + clamp(16px, 1.5vw, 28px));
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.01);
}
.category-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(to right, transparent, transparent 119px, rgba(255, 255, 255, 0.018) 120px);
  pointer-events: none;
}
.category-block::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 45, 45, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.category-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.category-left {
  flex: 1;
}
.category-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 45, 45, 0.45);
  margin: 0 0 28px 0;
}
.category-name {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(60px, 8vw, 116px);
  line-height: 0.87;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin: 0;
}
.category-name .line-1,
.category-name .line-2 {
  display: block;
  color: rgba(255, 255, 255, 0.95);
}
.category-name .line-3 {
  display: block;
  color: #FF2D2D;
}
.category-right {
  max-width: 360px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.category-def {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin: 0;
}
.category-def em {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-style: normal;
}
.shift-stat {
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}
.shift-stat-num {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}
.shift-stat-num span {
  color: #FF2D2D;
}
.shift-stat-label {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 12px;
  color: var(--text-on-dark-dim);
  line-height: 1.6;
  margin: 0;
}
.shift-stat-label em {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  font-style: normal;
}

/* ----- Founding block ----- */
.founding-block {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 100px calc(8vw + clamp(16px, 1.5vw, 28px)) 140px;
  position: relative;
  overflow: hidden;
}
.founding-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}
.founding-left {
  flex: 1;
  max-width: 560px;
  min-width: 0;
}
.founding-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.founding-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 45, 45, 0.6);
  flex-shrink: 0;
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.founding-label span:last-child {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 45, 45, 0.4);
}
.founding-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  text-transform: uppercase;
  line-height: 0.91;
  letter-spacing: -0.02em;
  margin: 0 0 28px 0;
  color: #fff;
}
.founding-headline .c2__red {
  color: #FF2D2D;
}
.founding-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  max-width: 480px;
}
.founding-desc p {
  margin: 0 0 1em 0;
}
.founding-desc p:last-child {
  margin-bottom: 0;
}
.founding-desc em {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-style: normal;
}
.founding-right {
  width: 420px;
  max-width: 100%;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .founding-inner {
    flex-direction: column;
    gap: 48px;
  }
  .founding-left {
    max-width: none;
  }
  .founding-right {
    width: 100%;
    max-width: 420px;
  }
}
.value-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.value-block {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  transition: background 0.3s ease;
}
.value-block:hover {
  background: rgba(255, 255, 255, 0.025);
}
.value-block:last-child {
  border-bottom: none;
}
.value-block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.value-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 45, 45, 0.15);
  background: rgba(255, 45, 45, 0.03);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  color: rgba(255, 45, 45, 0.5);
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
  margin: 0;
}
.value-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
  padding-left: 42px;
  margin: 0;
}
.founding-cta-hint {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 45, 45, 0.1);
  border-radius: 7px;
  background: rgba(255, 45, 45, 0.025);
}
.founding-cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 45, 45, 0.6);
  flex-shrink: 0;
  margin-top: 5px;
  animation: pulse 1.8s ease infinite;
}
.founding-cta-text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 12px;
  color: var(--text-on-dark-dim);
  line-height: 1.7;
  margin: 0;
}
.founding-cta-text em {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-style: normal;
}
.founding-access-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 7px;
  border: 1px solid rgba(255, 45, 45, 0.12);
  background: rgba(255, 45, 45, 0.025);
}
.founding-access-note .access-note-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 6px 0;
}
.founding-access-note .access-note-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.65;
  margin: 0;
}
.founding-access-note .access-note-desc em {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-style: normal;
}
.founding-access-note .trust-signals {
  margin-top: 12px;
}

/* ----- Section C7 (final CTA) ----- */
.c7 {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.c7__grain {
  position: absolute;
  inset: 0;
  z-index: 999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.c7-top {
  padding: var(--section-gap-y) calc(8vw + clamp(16px, 1.5vw, 28px)) var(--section-gap-y);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.c7-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(to bottom, transparent, transparent 59px, rgba(255, 255, 255, 0.014) 60px),
    repeating-linear-gradient(to right, transparent, transparent 119px, rgba(255, 255, 255, 0.01) 120px);
  pointer-events: none;
}
.c7-top::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at bottom, rgba(255, 45, 45, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.c7-top-inner {
  position: relative;
  z-index: 1;
}
.c7-question {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin: 0 0 40px 0;
}
.c7-question .line-ghost {
  display: block;
  color: var(--text-on-dark-faint);
}
.c7-question .line-white {
  display: block;
  color: rgba(255, 255, 255, 0.92);
}
.c7-question .line-red {
  display: block;
  color: #FF2D2D;
}
.c7-answer {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 56px;
}
.c7-answer em {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-style: normal;
}
.c7-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #FF2D2D;
  color: #fff;
  border: none;
  padding: 18px 40px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.c7-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.c7-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 45, 45, 0.35);
}
.c7-cta-btn:hover .c7-cta-arrow {
  transform: translateX(4px);
}
.c7-cta-arrow {
  font-size: 18px;
  display: inline-block;
  transition: transform 0.2s ease;
}
.c7-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c7-cta-note {
  margin-top: 16px;
  font-size: 11px;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-on-dark-dim);
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

/* ----- C7 staggered fade-up ----- */
@keyframes c7-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .c7-anim {
    opacity: 0;
    animation: c7-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .c7-anim[data-c7-delay="0"] { animation-delay: 0.05s; }
  .c7-anim[data-c7-delay="1"] { animation-delay: 0.2s; }
  .c7-anim[data-c7-delay="2"] { animation-delay: 0.35s; }
  .c7-anim[data-c7-delay="3"] { animation-delay: 0.5s; }
  .c7-anim[data-c7-delay="4"] { animation-delay: 0.65s; }
}
@media (prefers-reduced-motion: reduce) {
  .c7-anim {
    opacity: 1;
    animation: none;
  }
}

/* ----- C7 bottom ----- */
.c7-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.008);
  padding-bottom: 80px;
}
.c7-bottom::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 45, 45, 0.04), transparent 65%);
  pointer-events: none;
}

/* Row 1: fp-header-row */
.fp-header-row {
  margin: 0;
  padding: 64px calc(8vw + clamp(16px, 1.5vw, 28px)) 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.fp-header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fp-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 45, 45, 0.45);
}
.fp-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 45, 45, 0.6);
  flex-shrink: 0;
  animation: pulse 1.8s ease infinite;
}
.fp-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(44px, 5vw, 72px);
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.fp-headline .red {
  color: #FF2D2D;
}
.fp-header-right {
  max-width: 420px;
  flex-shrink: 0;
}
.fp-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  margin: 0;
}
.fp-desc em {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-style: normal;
}

/* Row 2: fp-benefits-row */
.fp-benefits-row {
  margin: 0;
  padding: 0 calc(8vw + clamp(16px, 1.5vw, 28px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.fp-benefit {
  padding: 36px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.fp-benefit:last-child {
  border-right: none;
}
.fp-benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}
.fp-benefit-1::before {
  background: linear-gradient(to right, rgba(255, 45, 45, 0.5), transparent);
}
.fp-benefit-2::before {
  background: linear-gradient(to right, rgba(255, 45, 45, 0.35), transparent);
}
.fp-benefit-3::before {
  background: linear-gradient(to right, rgba(255, 45, 45, 0.2), transparent);
}
.fp-benefit-num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 45, 45, 0.35);
  margin-bottom: 16px;
  display: block;
}
.fp-benefit-title {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 12px 0;
}
.fp-benefit-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 12px;
  color: var(--text-on-dark-dim);
  line-height: 1.7;
  margin: 0;
}

/* Row 3: fp-access-row */
.fp-access-row {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.fp-access-left {
  padding: 32px 40px 36px calc(8vw + clamp(16px, 1.5vw, 28px));
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 16px;
}
.fp-access-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 45, 45, 0.08);
  border: 1px solid rgba(255, 45, 45, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 45, 45, 0.6);
  flex-shrink: 0;
}
.fp-access-text {
  flex: 1;
}
.fp-access-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 5px 0;
}
.fp-access-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.65;
  margin: 0;
}
.fp-access-desc em {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  font-style: normal;
}
.fp-access-right {
  padding: 32px calc(8vw + clamp(16px, 1.5vw, 28px)) 36px 40px;
  display: flex;
  align-items: center;
}
.fp-access-right .trust-signals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  width: 100%;
}
.fp-access-right .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 11px;
  color: var(--text-on-dark-muted);
}
.fp-access-right .trust-check {
  font-size: 10px;
  color: var(--text-on-dark-dim);
  flex-shrink: 0;
}

.c7-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px calc(8vw + clamp(16px, 1.5vw, 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #FF2D2D;
}
.footer-tagline {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 11px;
  color: var(--text-on-dark-soft);
  letter-spacing: 0.06em;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-link {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  color: var(--text-on-dark-soft);
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ----- C5 staggered fade-up ----- */
@keyframes c5-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .c5-anim {
    opacity: 0;
    animation: c5-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .c5-anim[data-c5-delay="0"] { animation-delay: 0.05s; }
  .c5-anim[data-c5-delay="1"] { animation-delay: 0.18s; }
  .c5-anim[data-c5-delay="2"] { animation-delay: 0.32s; }
  .c5-anim[data-c5-delay="3"] { animation-delay: 0.46s; }
}
@media (prefers-reduced-motion: reduce) {
  .c5-anim {
    opacity: 1;
    animation: none;
  }
}

/* ----- C5 at 1280px: step widgets ----- */
@media (min-width: 1280px) {
  .steps-flow {
    grid-template-columns: 1fr 80px 1fr 80px 1fr;
  }
  .role-brief,
  .hire-confirm {
    padding: 12px;
  }
}

/* ----- Outcome widgets ----- */
.widget {
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.widget-header {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.widget-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FF2D2D;
}
.widget-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FF2D2D;
  animation: widget-blink 1.6s ease infinite;
}
@keyframes widget-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@media (prefers-reduced-motion: reduce) {
  .widget-live-dot {
    animation: none;
  }
}

/* Widget 1: Candidate rows */
.cand-row {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.cand-row:last-child {
  border-bottom: none;
}
.cand-row__avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
.cand-row__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.cand-row__name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}
.cand-row__meta {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 10px;
  color: var(--text-on-dark-muted);
}
.cand-row__score {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 14px;
  color: #FF2D2D;
  flex-shrink: 0;
}
.cand-row__score--dim {
  color: var(--text-on-dark-dim);
}

/* Widget 2: Before vs after rows */
.conf-row {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.conf-row:last-child {
  border-bottom: none;
}
.conf-row__icon {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.conf-row__icon--proof {
  background: rgba(80, 210, 120, 0.08);
  color: rgba(80, 210, 120, 0.9);
}
.conf-row__label {
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}
.conf-row--guess .conf-row__label {
  color: var(--text-on-dark-muted);
  text-decoration: line-through;
}
.conf-row__label--proof {
  color: rgba(180, 240, 200, 0.8);
  text-decoration: none;
}
.conf-row__chip {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 9px;
  padding: 4px 8px;
  border-radius: 3px;
  flex-shrink: 0;
}
.conf-row__chip--guess {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-on-dark-dim);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.conf-row__chip--proof {
  background: rgba(80, 210, 120, 0.07);
  color: rgba(80, 210, 120, 0.8);
  border: 1px solid rgba(80, 210, 120, 0.14);
}

/* Widget 3: Access rows */
.access-row {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.access-row:last-child {
  border-bottom: none;
}
.access-row__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(80, 180, 255, 0.6);
  flex-shrink: 0;
}
.access-row__dot--dim {
  background: rgba(255, 255, 255, 0.1);
}
.access-row__label {
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(80, 180, 255, 0.7);
}
.access-row__label--dim {
  color: var(--text-on-dark-dim);
  font-style: italic;
}
.access-row--dim {
  opacity: 0.5;
}
.access-row__tag {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 9px;
  padding: 4px 8px;
  border-radius: 3px;
  flex-shrink: 0;
}
.access-row__tag--see {
  background: rgba(80, 180, 255, 0.08);
  color: rgba(80, 180, 255, 0.7);
  border: 1px solid rgba(80, 180, 255, 0.14);
}
.access-row__tag--cant {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-on-dark-dim);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ----- C4 bottom ----- */
.c4-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.bottom-headline {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  text-transform: uppercase;
  line-height: 0.93;
  letter-spacing: -0.01em;
  margin: 0;
}
.bottom-right {
  max-width: 300px;
  flex-shrink: 0;
}
.bottom-right p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin: 0;
}
.bottom-right p em {
  color: #fff;
  font-weight: 500;
  font-style: normal;
}
.cta-row {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}
.btn-c4-primary {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #FF2D2D;
  color: #fff;
  border: none;
  padding: 13px 26px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-c4-primary:hover {
  background: #e02020;
}
@media (prefers-reduced-motion: no-preference) {
  .btn-c4-primary:hover {
    transform: translateY(-1px);
  }
}
.btn-c4-ghost {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.btn-c4-ghost:hover {
  color: #fff;
}
.btn-c4-ghost::after {
  content: " →";
}

/* Hero “PROOF” background — lock color/visibility to tokens (same as home .h-watermark + .hero-bg-watermark) */
body.page-students .st-ghost-watermark.hero-bg-watermark,
body.page-institutions .inst-ghost-word.hero-bg-watermark,
body.page-recruiters .lp-hero-inner .hero-ghost.hero-bg-watermark {
  color: var(--hero-watermark-color);
  text-shadow: var(--hero-watermark-shadow);
  font-size: var(--hero-watermark-size);
}

/* Recruiters hero: defer watermark fade until loader clears (global .hero-bg-watermark runs too early) */
body.page-recruiters:not(.lp-body-loaded) .lp-hero-inner .hero-ghost.hero-bg-watermark {
  animation: none !important;
  opacity: 0;
}

body.page-recruiters.lp-body-loaded .lp-hero-inner .hero-ghost.hero-bg-watermark {
  animation: hero-watermark-in 1.1s ease 0.18s forwards;
}

/* ── Recruiters responsive: tablet + mobile ─────────────────────────────── */
@media (max-width: 1024px) {
  body.page-recruiters .c3-indict,
  body.page-recruiters .c3-guesswork,
  body.page-recruiters .revolt,
  body.page-recruiters .r4-proof-reveal,
  body.page-recruiters .r5-how-it-works,
  body.page-recruiters .r6-provocation,
  body.page-recruiters .r7-founding-partner {
    height: auto;
    min-height: unset;
    overflow: visible;
  }

  body.page-recruiters .c3-indict {
    padding-top: 68px;
    padding-bottom: 64px;
  }

  body.page-recruiters .c3-indict .obsolete-strip {
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 10px;
  }

  body.page-recruiters .c3-indict .obsolete-strip > .card {
    min-width: 185px;
  }

  body.page-recruiters .c3-guesswork .gw-claims {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.page-recruiters .c3-guesswork .gw-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  body.page-recruiters .revolt {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  body.page-recruiters .revolt-cry {
    font-size: clamp(2.6rem, 11vw, 5rem);
    line-height: 0.92;
  }

  body.page-recruiters .revolt-conviction {
    max-width: 100%;
  }

  body.page-recruiters .r4-proof-reveal {
    padding-top: 68px;
    padding-bottom: 64px;
  }

  body.page-recruiters .r4-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body.page-recruiters .r4-right,
  body.page-recruiters .r4-card-wrapper {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

  body.page-recruiters .r4-ann {
    display: none;
  }

  body.page-recruiters .r5-how-it-works {
    padding-top: 68px;
    padding-bottom: 64px;
  }

  body.page-recruiters .r5-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  body.page-recruiters .r5-sub {
    max-width: 100%;
    text-align: left;
  }

  body.page-recruiters .r5-cards {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 10px;
  }

  body.page-recruiters .r5-card {
    width: 280px;
    min-width: 280px;
  }

  body.page-recruiters .r6-provocation {
    padding-top: 68px;
    padding-bottom: 78px;
  }

  body.page-recruiters .r6-sub {
    max-width: 100%;
  }

  body.page-recruiters .r7-founding-partner {
    padding-top: 68px;
    padding-bottom: 64px;
  }

  body.page-recruiters .r7-headline-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  body.page-recruiters .r7-hook {
    max-width: 100%;
    align-self: flex-start;
    text-align: left;
  }

  body.page-recruiters .r7-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-recruiters .r7-trust-strip {
    justify-content: flex-start;
    gap: 12px;
  }

  body.page-recruiters .r7-trust-item {
    white-space: normal;
    padding: 0;
  }

  body.page-recruiters .r7-trust-item:not(:last-child) {
    border-right: none;
  }
}

@media (max-width: 767px) {
  body.page-recruiters .c3-indict,
  body.page-recruiters .c3-guesswork,
  body.page-recruiters .revolt,
  body.page-recruiters .r4-proof-reveal,
  body.page-recruiters .r5-how-it-works,
  body.page-recruiters .r6-provocation,
  body.page-recruiters .r7-founding-partner {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  body.page-recruiters .c3-indict .indict-headline,
  body.page-recruiters .c3-guesswork .gw-headline,
  body.page-recruiters .revolt-cry,
  body.page-recruiters .r4-headline,
  body.page-recruiters .r5-hl,
  body.page-recruiters .r6-hl,
  body.page-recruiters .r7-hl {
    font-size: clamp(2rem, 13vw, 3.25rem);
    line-height: 0.9;
  }

  body.page-recruiters .obsolete-caption,
  body.page-recruiters .c3-guesswork .gw-claim-text,
  body.page-recruiters .c3-guesswork .gw-footer-left,
  body.page-recruiters .c3-guesswork .gw-footer-right,
  body.page-recruiters .revolt-conviction,
  body.page-recruiters .r4-sub,
  body.page-recruiters .r5-sub,
  body.page-recruiters .r6-sub,
  body.page-recruiters .r7-hook-sub {
    font-size: 13px;
    line-height: 1.6;
  }

  body.page-recruiters .c3-indict .obsolete-strip > .card {
    min-width: 165px;
  }

  body.page-recruiters .c3-guesswork .gw-claim {
    padding: 14px;
  }

  body.page-recruiters .revolt-quote {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  body.page-recruiters .r4-headline {
    line-height: 0.92;
  }

  body.page-recruiters .r4-word {
    font-size: clamp(2rem, 11.8vw, 3rem);
  }

  body.page-recruiters .r4-card-header {
    gap: 10px;
  }

  body.page-recruiters .r4-signal {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
  }

  body.page-recruiters .r4-sig-badges {
    width: 100%;
    justify-content: flex-start;
  }

  body.page-recruiters .r4-card-btn {
    width: 100%;
    justify-content: center;
  }

  body.page-recruiters .r5-cards {
    flex-direction: column;
    overflow: visible;
    padding-bottom: 0;
  }

  body.page-recruiters .r5-card {
    width: 100%;
    min-width: 0;
  }

  body.page-recruiters .r5-card-title {
    font-size: clamp(1.8rem, 9.5vw, 2.4rem);
    line-height: 0.94;
  }

  body.page-recruiters .r5-sig-tags {
    flex-wrap: wrap;
  }

  body.page-recruiters .r6-nudge {
    margin-top: 20px;
    bottom: 16px;
  }

  body.page-recruiters .r7-benefits {
    grid-template-columns: 1fr;
  }

  body.page-recruiters .r7-cta-btn {
    width: 100%;
    justify-content: center;
  }

  body.page-recruiters .r7-btn-sub {
    white-space: normal;
    text-align: center;
  }
}

/* Recruiters R4 overflow fix (mobile/tablet) */
@media (max-width: 1024px) {
  body.page-recruiters .r4-proof-reveal {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    overflow-x: hidden;
  }

  body.page-recruiters .r4-right {
    padding: 0 var(--inset) 24px;
  }

  body.page-recruiters .r4-card-wrapper,
  body.page-recruiters .r4-proof-card {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  body.page-recruiters .r4-proof-card {
    padding: 14px;
  }

  body.page-recruiters .r4-card-header {
    align-items: flex-start;
  }

  body.page-recruiters .r4-candidate-text {
    min-width: 0;
  }

  body.page-recruiters .r4-cand-role {
    white-space: normal;
    word-break: break-word;
  }

  body.page-recruiters .r4-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
