/**
 * Refined Editorial Component Styles for JobFair Theme
 * High-Prestige Tech Campaign × Gen-Z Campus Movement × Industry Talent Platform
 * All colors strictly use CSS custom properties from tokens.css
 */

/* ==========================================================================
   Base & Reset
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: var(--offwhite);
  background-color: var(--deep);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--deep);
  color: var(--offwhite);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

::selection {
  background: var(--orange);
  color: var(--dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img, svg {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--border-focus);
  outline-offset: 3px;
}

/* ---------- Subtle Grain Texture ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Accessibility Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1.5rem;
  background: var(--orange);
  color: var(--dark);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 99999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 1.5rem;
}

/* ==========================================================================
   Layout Containers & Shared Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.025em;
  color: var(--offwhite);
}

h1, h2 {
  font-weight: 700;
}

h3 {
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

section {
  position: relative;
  padding: 52px 0;
  width: 100%;
}

@media (max-width: 900px) {
  section {
    padding: 38px 0;
  }
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 36px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 12px;
}

.section-subtext {
  font-size: 16px;
  color: var(--grey-subtle);
  margin-top: 14px;
  line-height: 1.6;
}

.accent {
  color: var(--orange);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--orange);
}

.eyebrow.centered {
  justify-content: center;
}

.eyebrow.centered::after {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--orange);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Refined Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 16px 30px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--dark);
  box-shadow: 0 0 0 0 var(--orange-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 32px 6px var(--orange-glow);
  transform: translateY(-2px);
  color: var(--dark);
}

.btn-ghost {
  background: transparent;
  color: var(--offwhite);
  border: 1px solid var(--border-card);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 36px;
  font-size: 15px;
}

/* ==========================================================================
   Header: Top Brand Collaboration Lockup (UnsaidTalks × IIIT Delhi)
   ========================================================================== */
.site-header-brand {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 28px 0;
}

.header-brand-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.collab-lockup {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--offwhite);
  text-decoration: none;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.brand-logo-img {
  height: 38px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--offwhite);
  line-height: 1.1;
}

.brand-accent {
  color: var(--orange);
}

.brand-text-col {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  justify-content: center;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
}

.collab-cross {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--orange);
  opacity: 0.85;
  line-height: 1;
}

.collab-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 254, 247, 0.03);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 254, 247, 0.6);
}

.collab-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

@media (max-width: 640px) {
  .site-header-brand {
    padding: 18px 0;
  }
  .collab-badge {
    display: none;
  }
  .brand-name {
    font-size: 14px;
  }
}

/* ==========================================================================
   1. HERO (Cinematic Asymmetric Editorial & Career Signal Telemetry HUD)
   ========================================================================== */
.hero {
  min-height: 88vh;
  padding-top: 140px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 254, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 254, 247, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 85%);
}

.hero-glow-orb {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 140, 16, 0.15) 0%, rgba(230, 140, 16, 0.03) 50%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.hero-watermark-num {
  position: absolute;
  right: -2%;
  bottom: -8%;
  font-family: var(--font-mono);
  font-size: clamp(240px, 28vw, 400px);
  font-weight: 900;
  line-height: 0.75;
  color: rgba(255, 254, 247, 0.018);
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

/* Left Editorial Typography */
.hero-left {
  text-align: left;
}

.hero-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.live-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px 2px var(--orange-glow);
  animation: radarPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes radarPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.8vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--offwhite);
  margin-bottom: 22px;
}

.headline-row {
  display: block;
}

.headline-row.highlight-row {
  color: var(--offwhite);
}

.accent-glow {
  color: var(--orange);
  text-shadow: 0 0 40px var(--orange-glow-sm);
}

.hero-lead {
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-subtle);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-actions-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.btn-hero-cta {
  padding: 17px 34px;
  font-size: 14px;
  box-shadow: 0 0 28px var(--orange-glow-sm);
}

.hero-cohort-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 254, 247, 0.5);
  letter-spacing: 0.04em;
}

.dot-online {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}

/* Right Column: The Career Signal Telemetry HUD */
.hero-right {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.career-signal-hud {
  width: 100%;
  max-width: 440px;
  background: rgba(18, 23, 31, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 254, 247, 0.12);
  border-radius: var(--radius-2xl);
  padding: 28px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), border-color var(--transition-normal);
  position: relative;
}

.career-signal-hud:hover {
  border-color: rgba(230, 140, 16, 0.4);
}

.hud-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.hud-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
}

.radar-ping {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: radarPulse 1.8s infinite;
}

.hud-channel {
  color: var(--grey-faint);
  text-transform: uppercase;
}

/* Readiness Block */
.hud-readiness-block {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.hud-metric-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.hud-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--grey-faint);
  text-transform: uppercase;
}

.hud-metric-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--offwhite);
  margin-top: 2px;
}

.hud-percentage {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 900;
  color: var(--orange);
  text-shadow: 0 0 16px var(--orange-glow);
}

.hud-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 254, 247, 0.08);
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.hud-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: var(--radius-xs);
  width: 0%;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px var(--orange-glow);
}

/* Circuit Pipeline */
.hud-pipeline {
  position: relative;
  padding: 16px 0 12px;
}

.circuit-line-svg-wrap {
  position: absolute;
  left: 6px;
  top: 18px;
  bottom: 18px;
  width: 20px;
  pointer-events: none;
}

.circuit-energy-pulse {
  stroke-dasharray: 40 100;
  animation: circuitFlow 3s linear infinite;
}

@keyframes circuitFlow {
  0% { stroke-dashoffset: 140; }
  100% { stroke-dashoffset: 0; }
}

.signal-nodes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.signal-node-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.signal-node-item:hover {
  background: rgba(255, 254, 247, 0.03);
}

.node-bullet {
  width: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 254, 247, 0.3);
  transition: all var(--transition-fast);
}

.signal-node-item.verified .bullet-dot {
  background: var(--success);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.signal-node-item.complete .bullet-dot {
  background: var(--orange-light);
}

.signal-node-item.active-pulse .bullet-dot.glowing {
  background: var(--orange);
  box-shadow: 0 0 12px 2px var(--orange-glow);
  transform: scale(1.3);
  animation: radarPulse 1.6s infinite;
}

.bullet-target {
  font-size: 12px;
  color: var(--orange);
}

.node-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 11px;
}

.node-name {
  font-weight: 600;
  color: rgba(255, 254, 247, 0.85);
  letter-spacing: 0.05em;
}

.node-status {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  background: rgba(255, 254, 247, 0.04);
}

.node-status.verified {
  color: var(--success);
  background: var(--success-bg);
}

.node-status.complete {
  color: var(--orange-light);
}

.node-status.in-progress {
  color: var(--orange);
  background: var(--orange-soft-bg);
  border: 1px solid rgba(230, 140, 16, 0.3);
}

.node-status.pending {
  color: var(--grey-faint);
}

.node-status.dest-date {
  color: var(--orange);
  font-weight: 700;
}

/* HUD Footer */
.hud-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.hud-foot-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.foot-label {
  color: var(--grey-faint);
  text-transform: uppercase;
}

.foot-val {
  color: var(--offwhite);
  font-weight: 700;
  text-transform: uppercase;
}

.hud-foot-sep {
  width: 1px;
  height: 18px;
  background: var(--border-subtle);
}

/* Staggered Hero Entrance Animations */
.reveal-hero-1,
.reveal-hero-2,
.reveal-hero-3,
.reveal-hero-4,
.reveal-hero-5,
.reveal-hero-hud {
  opacity: 0;
  transform: translateY(20px);
  animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-hero-1 { animation-delay: 0.1s; }
.reveal-hero-2 { animation-delay: 0.2s; }
.reveal-hero-3 { animation-delay: 0.35s; }
.reveal-hero-4 { animation-delay: 0.5s; }
.reveal-hero-5 { animation-delay: 0.65s; }
.reveal-hero-hud { animation-delay: 0.3s; }

@keyframes heroEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   2. PROBLEM (Editorial Hook)
   ========================================================================== */
.hook-section {
  padding: 104px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 254, 247, 0.01);
}

.hook-inner {
  max-width: 860px;
  margin: 0 auto;
}.hook-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 18px 0 32px;
}

.hook-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .hook-section {
    padding: 72px 0;
  }
  .hook-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.hook-desc {
  font-size: 16px;
  color: rgba(255, 254, 247, 0.6);
  line-height: 1.65;
}

.hook-impact {
  font-size: 18px;
  font-weight: 600;
  color: var(--offwhite);
  line-height: 1.5;
  border-left: 2px solid var(--orange);
  padding-left: 20px;
}

.hook-tagline {
  margin-top: 36px;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   3. PATHWAY (5 Levels. 1 Destination. Connected Vertical Spine)
   ========================================================================== */
.pathway-spine {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.pathway-node {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  position: relative;
  padding-bottom: 26px;
}

.pathway-node:last-child {
  padding-bottom: 0;
}

.node-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.node-num {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--navy);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--grey-faint);
  z-index: 2;
  transition: all var(--transition-normal);
}

.node-num.active,
.node-num.target {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(230, 140, 16, 0.12);
  box-shadow: 0 0 16px var(--orange-glow-sm);
}

.node-line {
  position: absolute;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(to bottom, rgba(255, 254, 247, 0.2) 0 4px, transparent 4px 8px);
}

.node-content {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  transition: all var(--transition-normal);
}

.node-content:hover {
  border-color: var(--border-card-hover);
  background: var(--surface-card-hover);
  transform: translateY(-2px);
}

.node-content.featured {
  border-color: rgba(230, 140, 16, 0.35);
  background: linear-gradient(160deg, rgba(230, 140, 16, 0.08), rgba(255, 254, 247, 0.02));
}

.node-content.target {
  border-color: var(--orange);
  background: linear-gradient(160deg, rgba(230, 140, 16, 0.12), rgba(255, 254, 247, 0.03));
}

.node-header {
  margin-bottom: 8px;
}

.node-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-faint);
}

.node-tag.accent {
  color: var(--orange);
}

.node-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 4px;
  color: var(--offwhite);
}

.node-desc {
  font-size: 14px;
  color: rgba(255, 254, 247, 0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}

.node-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 254, 247, 0.04);
  border: 1px solid var(--border-subtle);
  color: rgba(255, 254, 247, 0.7);
}

.meta-pill.accent-pill {
  border-color: rgba(230, 140, 16, 0.4);
  color: var(--orange);
  background: var(--orange-soft-bg);
}

@media (max-width: 640px) {
  .pathway-node {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
  .node-num {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }
  .node-line {
    top: 36px;
  }
  .node-content {
    padding: 20px;
  }
}

/* ==========================================================================
   4. UMP PRICING (4 Weeks. Real Exposure. ₹999.)
   ========================================================================== */
.pricing-card-wrap {
  background: var(--dark);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 900px) {
  .pricing-card-wrap {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 28px;
  }
}

.pricing-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 14px 0 18px;
}

.pricing-subtext {
  font-size: 15px;
  color: rgba(255, 254, 247, 0.65);
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing-guarantee-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 254, 247, 0.5);
  margin-top: 12px;
  font-family: var(--font-mono);
}

.pricing-features {
  background: rgba(255, 254, 247, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.features-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.clean-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.clean-checklist li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding-left: 24px;
}

.clean-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
}

.clean-checklist strong {
  font-size: 15px;
  color: var(--offwhite);
}

.clean-checklist span {
  font-size: 13px;
  color: rgba(255, 254, 247, 0.55);
}

/* ==========================================================================
   5. EXPERIENCE (Learn → Build → Break → Fix → Prove)
   ========================================================================== */
.experience-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 900px) {
  .experience-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .experience-flow-grid {
    grid-template-columns: 1fr;
  }
}

.flow-card {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: all var(--transition-normal);
}

.flow-card:hover {
  border-color: var(--border-card-hover);
  background: var(--surface-card-hover);
  transform: translateY(-4px);
}

.flow-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.flow-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--offwhite);
}

.flow-desc {
  font-size: 13px;
  color: rgba(255, 254, 247, 0.55);
  line-height: 1.6;
}

/* ==========================================================================
   6. ASSESSMENT / SIGNAL (The One Signature Profile UI)
   ========================================================================== */
.assessment-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .assessment-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.assessment-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 14px 0 18px;
}

.assessment-desc {
  font-size: 15px;
  color: rgba(255, 254, 247, 0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}

.signal-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.signal-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255, 254, 247, 0.8);
}

.point-icon {
  color: var(--orange);
  font-weight: 700;
}

/* Telemetry Dashboard */
.dash {
  background: var(--dark);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl);
  padding: 36px;
  font-family: var(--font-mono);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.dash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
}

.dash-profile-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avatar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange-glow);
}

.dash-head .label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--offwhite);
  text-transform: uppercase;
}

.dash-head .live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dash-row {
  cursor: pointer;
}

.dash-row .rlabel {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 8px;
  color: rgba(255, 254, 247, 0.75);
}

.dash-bar {
  height: 7px;
  background: rgba(255, 254, 247, 0.07);
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.dash-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: var(--radius-xs);
  width: 0%;
  transition: width var(--transition-slow);
}

.dash-readiness {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px dashed rgba(255, 254, 247, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-readiness .lv {
  font-size: 13px;
  font-weight: 600;
  color: var(--offwhite);
}

.dash-readiness .readiness-sub {
  font-size: 11px;
  color: var(--grey-faint);
  margin-top: 2px;
}

.dash-readiness .hv {
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
  text-shadow: 0 0 20px var(--orange-glow);
}

.dash-footer {
  margin-top: 22px;
  font-size: 11px;
  color: var(--grey-faint);
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   7. JOB FAIR (Editorial Poster)
   ========================================================================== */
.jobfair-poster {
  background: linear-gradient(180deg, var(--navy) 0%, var(--dark) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl);
  padding: 44px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.poster-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 12px 0 14px;
}

.poster-subtext {
  font-size: 15px;
  color: rgba(255, 254, 247, 0.65);
  max-width: 580px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.poster-date-box {
  margin: 20px auto 24px;
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  background: rgba(230, 140, 16, 0.08);
  border: 1px solid rgba(230, 140, 16, 0.35);
}

.poster-month {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.poster-venue {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 254, 247, 0.7);
  text-transform: uppercase;
  margin-top: 4px;
}

.poster-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 680px;
  margin: 0 auto;
}

.p-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 254, 247, 0.04);
  border: 1px solid var(--border-subtle);
  color: rgba(255, 254, 247, 0.6);
}

/* ==========================================================================
   8. L3 STRIP (Minimalist)
   ========================================================================== */
.l3-strip {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 768px) {
  .l3-strip {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 18px;
  }
}

.l3-heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 6px 0 8px;
}

.l3-optional-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--grey-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.l3-info p {
  font-size: 14px;
  color: rgba(255, 254, 247, 0.65);
  line-height: 1.6;
}

/* ==========================================================================
   9. ELIGIBILITY WIDGET (Interactive)
   ========================================================================== */
.eligibility-widget {
  background: var(--dark);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl);
  padding: 44px;
  max-width: 780px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .eligibility-widget {
    padding: 28px 20px;
  }
}

.eligibility-step {
  display: none;
}

.eligibility-step.active {
  display: block;
}

.q-step {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.q-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.q-desc {
  font-size: 14px;
  color: rgba(255, 254, 247, 0.6);
  margin-bottom: 24px;
}

.q-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.success-box {
  text-align: center;
  padding: 12px 0;
}

.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--success-bg);
  color: var(--success);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.success-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.success-desc {
  font-size: 14px;
  color: rgba(255, 254, 247, 0.65);
  max-width: 520px;
  margin: 0 auto 24px;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   10. FAQ (Minimalist Accordion)
   ========================================================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  border-top: 1px solid var(--border-card);
}

.faq-item {
  border-bottom: 1px solid var(--border-card);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  gap: 20px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--offwhite);
  transition: color var(--transition-fast);
}

.faq-q:hover {
  color: var(--orange);
}

.faq-q .plus {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--orange);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
  color: rgba(255, 254, 247, 0.6);
  font-size: 14px;
  line-height: 1.65;
  padding: 0;
}

.faq-item.open .faq-a {
  max-height: 240px;
  padding-bottom: 24px;
}

/* ==========================================================================
   11. FINAL CTA (High Urgency)
   ========================================================================== */
.final-cta-inner {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 16px 0;
}

.final-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 14px 0 16px;
}

.final-title span {
  display: block;
}

.final-title .sub-accent {
  color: var(--orange);
}

.final-title .prove-line {
  margin-top: 4px;
}

.final-desc {
  font-size: 15px;
  color: rgba(255, 254, 247, 0.6);
  margin: 0 auto 28px;
  max-width: 500px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--grey-faint);
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

/* ==========================================================================
   Lead Modal & Sticky Bar
   ========================================================================== */
.lead-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 1, 1, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.lead-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.lead-modal-card {
  background: var(--navy);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl);
  width: 100%;
  max-width: 500px;
  padding: 36px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition-smooth);
}

.lead-modal-backdrop.is-open .lead-modal-card {
  transform: translateY(0) scale(1);
}

.lead-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--grey-faint);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.lead-modal-close:hover {
  color: var(--offwhite);
}

.modal-step {
  display: none;
}

.modal-step.active {
  display: block;
}

.modal-header {
  margin-bottom: 22px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 6px;
}

.modal-subtitle {
  font-size: 13px;
  color: rgba(255, 254, 247, 0.6);
  margin-top: 4px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: -0.01em;
  color: rgba(255, 254, 247, 0.9);
  margin-bottom: 7px;
  line-height: 1.35;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface-input);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--offwhite);
  font-size: 14px;
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--border-focus);
}

.form-error {
  color: var(--danger);
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

/* Sticky Mobile Bar */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: rgba(18, 23, 31, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.sticky-mobile-bar.is-visible {
  transform: translateY(0);
}

.mobile-bar-price {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 800;
  color: var(--orange);
}

.mobile-bar-price span {
  font-size: 12px;
  text-decoration: line-through;
  color: var(--grey-faint);
  margin-left: 6px;
}

@media (min-width: 901px) {
  .sticky-mobile-bar {
    display: none !important;
  }
}

/* ==========================================================================
   14. THANK YOU / CONFIRMATION PAGE
   ========================================================================== */
.thankyou-section {
  padding: 80px 0 100px;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.thankyou-container {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.thankyou-header {
  text-align: center;
  margin-bottom: 40px;
}

.thankyou-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  color: var(--success);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.thankyou-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.thankyou-subtitle {
  font-size: 16px;
  color: rgba(255, 254, 247, 0.7);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

.thankyou-receipt-card {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
  box-shadow: var(--shadow-card);
}

.thankyou-receipt-item .label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 254, 247, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.thankyou-receipt-item .val {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--offwhite);
}

.thankyou-receipt-item .val.highlight {
  color: var(--orange);
}

.thankyou-steps-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-align: left;
}

.thankyou-step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.thankyou-step-card {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.thankyou-step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.thankyou-step-card.featured {
  background: linear-gradient(135deg, rgba(230, 140, 16, 0.12) 0%, rgba(18, 23, 31, 0.9) 100%);
  border-color: rgba(230, 140, 16, 0.4);
}

.thankyou-step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  background: rgba(230, 140, 16, 0.15);
  border: 1px solid rgba(230, 140, 16, 0.3);
  border-radius: var(--radius-md);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.thankyou-step-content {
  flex: 1;
}

.thankyou-step-content h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--offwhite);
}

.thankyou-step-content p {
  font-size: 14px;
  color: rgba(255, 254, 247, 0.7);
  line-height: 1.55;
  margin-bottom: 12px;
}

.thankyou-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-card);
}

@media (max-width: 640px) {
  .thankyou-receipt-card {
    grid-template-columns: 1fr 1fr;
    padding: 20px;
    gap: 16px;
  }
  .thankyou-step-card {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }
  .thankyou-footer-actions {
    flex-direction: column;
    text-align: center;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
