/*
Theme Name:   Hiup
Theme URI:    https://hiupapp.com
Author:       Olive Group
Author URI:   https://olivegroup.io
Description:  Bespoke premium theme for Hiup — AI-powered recruitment and upskilling platform. Built with Three.js, GSAP, and Vanilla Tilt.
Version:      1.1.0
Requires at least: 6.4
Tested up to: 6.5
Requires PHP: 8.2
License:      Proprietary
Text Domain:  hiup
*/

/* ─── Design Tokens — Hiup Design System ────────────────────────────────────── */
:root {
  /* ── Yellow / Primary accent ── */
  --sun-50:   #FEF9E7;
  --sun-100:  #FCEFBE;
  --sun-200:  #F9E394;
  --sun-300:  #F7D66A;
  --sun-400:  #F5C842;   /* Primary CTA, highlights */
  --sun-500:  #E5B528;
  --sun-600:  #C8991A;
  --sun-700:  #A07910;
  --sun-800:  #705509;

  /* ── AI / Accent ── */
  --magenta:  #C42A6B;
  --coral:    #F0633A;
  --plum:     #7B1F4F;
  --rose:     #E94B7A;

  /* ── Neutrals ── */
  --ink-0:    #FFFFFF;
  --bone:     #FAF7F0;
  --bone-2:   #F2EEE4;
  --paper:    #FBFBF9;
  --line:     #E7E3D8;
  --line-2:   #D7D2C4;
  --mute:     #8B8676;
  --slate-300:#B6B4AB;
  --slate-500:#5C5A52;
  --slate-700:#2E2D29;
  --ink-2:    #1A2236;
  --ink-3:    #2A334B;
  --ink:      #0E1424;

  /* ── Semantic / Status ── */
  --success:     #118A5B;
  --success-bg:  #E4F4EB;
  --warning:     #B5701A;
  --warning-bg:  #FBEFD7;
  --danger:      #B4321C;
  --danger-bg:   #FBE3DC;
  --info:        #1E5FB8;
  --info-bg:     #E2ECFB;

  /* ── Brand accent strip (unchanged) ── */
  --hiup-teal:  #3ABCB1;
  --hiup-navy:  #1E3A8A;

  /* ── Gradients ── */
  --grad-ai:    linear-gradient(135deg, #F5C842 0%, #F0633A 55%, #C42A6B 100%);
  --grad-dark:  linear-gradient(135deg, #0E1424 0%, #1A2236 100%);
  --grad-hero:  linear-gradient(135deg, #0E1424 0%, #1A2236 60%, #0E1424 100%);

  /* ── Typography ── */
  --f-sans: 'Geist', system-ui, -apple-system, sans-serif;
  --f-mono: 'Geist Mono', ui-monospace, monospace;

  /* ── Backward-compat aliases (referenced in PHP templates) ── */
  --hiup-yellow:       var(--sun-400);
  --hiup-yellow-dark:  var(--sun-500);
  --hiup-yellow-light: var(--sun-100);
  --hiup-charcoal:     var(--ink);
  --hiup-charcoal-mid: var(--ink-3);
  --hiup-white:        var(--ink-0);
  --hiup-off-white:    var(--bone);
  --hiup-coral:        var(--coral);
  --hiup-navy-deep:    var(--ink);
  --hiup-gray-text:    var(--slate-500);
  --hiup-border:       var(--line);
  --font-heading:      var(--f-sans);
  --font-body:         var(--f-sans);

  /* ── Border Radius ── */
  --r-xs:   4px;
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   14px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-full: 999px;

  /* ── Keep old aliases ── */
  --card-radius: var(--r-xl);
  --btn-radius:  var(--r-lg);

  /* ── Shadows ── */
  --sh-1: 0 1px 0 rgba(14,20,36,.04), 0 1px 2px rgba(14,20,36,.05);
  --sh-2: 0 2px 4px rgba(14,20,36,.04), 0 4px 12px rgba(14,20,36,.06);
  --sh-3: 0 6px 16px rgba(14,20,36,.08), 0 2px 4px rgba(14,20,36,.05);
  --sh-4: 0 18px 40px -8px rgba(14,20,36,.18), 0 4px 10px rgba(14,20,36,.06);

  /* ── Keep old shadow aliases ── */
  --shadow-card:       var(--sh-3);
  --shadow-card-hover: var(--sh-4);
  --shadow-yellow:     0 4px 16px rgba(245,200,66,.35);
  --shadow-yellow-lg:  0 8px 28px rgba(245,200,66,.45);

  /* ── Card / Section spacing ── */
  --card-padding: 32px;
  --section-xl:   140px 0;
  --section-lg:   100px 0;
  --section-md:   70px 0;
  --section-sm:   40px 0;

  /* ── Transitions ── */
  --transition:      all 0.15s ease;
  --transition-slow: all 0.3s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--bone);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography ─────────────────────────────────────────────────────────────  */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-sans);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(36px, 5vw, 68px); font-weight: 600; }
h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 600; letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 2vw, 28px); font-weight: 600; }
h4 { font-size: clamp(17px, 1.5vw, 22px); font-weight: 600; }
h5 { font-size: 18px; font-weight: 600; }
h6 { font-size: 15px; font-weight: 600; }

.lead { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.65; color: var(--slate-500); }
small { font-size: 13px; }
.mono { font-family: var(--f-mono); }
.eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--mute);
}

/* Eyebrow color by section background type */
.section-dark .eyebrow,
.features-wrap .eyebrow,
.section-gradient-mesh .eyebrow,
.pricing-section .eyebrow,
.js-app-hero .eyebrow {
  color: #3ABCB1;
}
.section-white .eyebrow,
.aud-section .eyebrow,
.demo-section .eyebrow {
  color: #8B8676;
}
.section-light .eyebrow,
.journey-section .eyebrow,
.whm-section .eyebrow {
  color: #F5C842;
}

/* ─── Layout ─────────────────────────────────────────────────────────────────  */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

.section-xl { padding: var(--section-xl); }
.section-lg { padding: var(--section-lg); }
.section-md { padding: var(--section-md); }
.section-sm { padding: var(--section-sm); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 1024px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ─── Section Backgrounds ────────────────────────────────────────────────────  */
.section-white  { background: var(--ink-0); }
.section-light  { background: var(--bone); }
.section-paper  { background: var(--paper); }
.section-dark   { background: var(--ink); }
.section-navy   { background: var(--hiup-navy); }
.section-deep   { background: var(--ink); }
.section-yellow { background: var(--sun-400); }

.section-gradient-dark {
  background: var(--grad-dark);
}
.section-gradient-mesh {
  background: var(--ink);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(245,200,66,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196,42,107,.07) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(240,99,58,.06) 0%, transparent 60%);
}

/* ─── Buttons ─────────────────────────────────────────────────────────────────  */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 15px;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

/* Primary: dark ink */
.btn-primary {
  background: var(--ink);
  color: var(--bone);
}
.btn-primary:hover {
  background: var(--ink-3);
  transform: translateY(-1px);
  box-shadow: var(--sh-3);
}

/* Accent: yellow */
.btn-accent, .btn-cta {
  background: var(--sun-400);
  color: var(--ink);
  box-shadow: var(--shadow-yellow);
}
.btn-accent:hover, .btn-cta:hover {
  background: var(--sun-500);
  box-shadow: var(--shadow-yellow-lg);
  transform: translateY(-1px);
}

/* Keep old class name working */
.btn-primary-yellow {
  background: var(--sun-400);
  color: var(--ink);
  box-shadow: var(--shadow-yellow);
}
.btn-primary-yellow:hover {
  background: var(--sun-500);
  transform: translateY(-1px);
}

/* Secondary */
.btn-secondary {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-secondary:hover { background: var(--bone-2); }

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--slate-700);
}
.btn-ghost:hover { background: var(--bone-2); color: var(--ink); }

/* Outline white (hero) */
.btn-outline-white {
  background: transparent;
  color: var(--ink-0);
  border: 1.5px solid rgba(255,255,255,.35);
  padding: 0 20px;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.7);
}

/* Outline ink */
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-2);
}
.btn-outline:hover { border-color: var(--ink); }

/* Dark (alias) */
.btn-dark { background: var(--ink); color: var(--bone); }
.btn-dark:hover { background: var(--ink-3); transform: translateY(-1px); }

/* AI button */
.btn-ai {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.btn-ai::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-ai);
  opacity: .18;
}
.btn-ai:hover::before { opacity: .28; }

/* Sizes */
.btn-lg  { height: 52px; padding: 0 30px; font-size: 16px; }
.btn-sm  { height: 34px; padding: 0 14px; font-size: 13px; }
.btn-xs  { height: 28px; padding: 0 10px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }
/* btn-yellow: alias used in journey section CTAs */
.btn-yellow { background: var(--sun-400); color: var(--ink); box-shadow: var(--shadow-yellow); }
.btn-yellow:hover { background: var(--sun-500); box-shadow: var(--shadow-yellow-lg); transform: translateY(-1px); }

/* ─── Badges ──────────────────────────────────────────────────────────────────  */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 22px;
  padding: 0 8px;
  border-radius: var(--r-xs);
  font-size: 11.5px;
  font-weight: 500;
  white-space: nowrap;
  background: var(--bone-2);
  color: var(--slate-700);
}
.badge .d {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.badge.success { background: var(--success-bg); color: var(--success); }
.badge.warn    { background: var(--warning-bg); color: var(--warning); }
.badge.danger  { background: var(--danger-bg);  color: var(--danger); }
.badge.info    { background: var(--info-bg);    color: var(--info); }
.badge.brand   { background: var(--sun-100);    color: var(--sun-800); }
.badge.ai {
  background: linear-gradient(135deg, rgba(245,200,66,.18), rgba(196,42,107,.16));
  color: var(--plum);
  border: 1px solid rgba(196,42,107,.18);
}
.badge.ai .d { background: var(--magenta); }
.badge.lg { height: 26px; padding: 0 10px; font-size: 12px; }
.badge.xs { height: 18px; padding: 0 6px;  font-size: 10.5px; }

/* ─── Cards ───────────────────────────────────────────────────────────────────  */
.card-light {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--card-padding);
  box-shadow: var(--sh-2);
  transition: var(--transition-slow);
}
.card-light:hover {
  box-shadow: var(--sh-4);
  border-color: var(--line-2);
  transform: translateY(-3px);
}

.card-glass {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-xl);
  padding: var(--card-padding);
  transition: var(--transition-slow);
}
.card-glass:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(245,200,66,.25);
  box-shadow: 0 20px 60px rgba(245,200,66,.12);
}

.card-accent {
  border-left: 3px solid var(--sun-400);
  background: var(--paper);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 28px 28px 28px 24px;
  box-shadow: var(--sh-2);
}

/* ─── Brand Strip ─────────────────────────────────────────────────────────────  */
.brand-strip {
  display: flex;
  height: 4px;
  width: 100%;
}
.brand-strip span:nth-child(1) { background: var(--coral);      flex: 1; }
.brand-strip span:nth-child(2) { background: var(--sun-400);    flex: 1; }
.brand-strip span:nth-child(3) { background: var(--hiup-teal);  flex: 1; }
.brand-strip span:nth-child(4) { background: var(--hiup-navy);  flex: 1; }

/* ─── Navigation ──────────────────────────────────────────────────────────────  */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-slow);
}
#site-nav.scrolled {
  background: rgba(14,20,36,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,.06), var(--sh-3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo img { height: 36px; width: auto; }

/* CSS badge logo — renders with the page's loaded web font (Plus Jakarta Sans)
   instead of SVG <text> which can't access external fonts when used as <img>. */
.hiup-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F5C842;
  font-family: var(--f-heading);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
  flex-shrink: 0;
  text-decoration: none;
}
.badge-hi { color: #0E1424; }
.badge-up { color: #FFFFFF; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 14px;
  color: rgba(250,247,240,.75);
  padding: 7px 12px;
  border-radius: var(--r-sm);
  transition: var(--transition);
}
.nav-menu a:hover {
  color: var(--bone);
  background: rgba(255,255,255,.07);
}

.nav-ctas { display: flex; align-items: center; gap: 8px; }

.hamburger { display: none; flex-direction: column; gap: 4px; width: 26px; cursor: pointer; }
.hamburger span { width: 100%; height: 1.5px; background: var(--bone); transition: var(--transition); border-radius: 2px; }

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
}
.mobile-nav-overlay a {
  font-family: var(--f-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--bone);
  padding: 10px 24px;
  border-radius: var(--r-sm);
  transition: var(--transition);
}
.mobile-nav-overlay a:hover { background: rgba(255,255,255,.07); }
.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--bone);
  font-size: 28px;
  cursor: pointer;
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  z-index: 1001;
  -webkit-tap-highlight-color: rgba(255,255,255,.15);
  touch-action: manipulation;
}
/* Hide hamburger when mobile nav is open to prevent overlap */
.mobile-nav-overlay.open ~ #site-nav .hamburger { visibility: hidden; }

@media (max-width: 1024px) {
  .nav-menu, .nav-ctas { display: none; }
  .hamburger { display: flex; }
}

/* ─── Hero ────────────────────────────────────────────────────────────────────  */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  background-image:
    radial-gradient(ellipse at 30% 40%, rgba(245,200,66,.06) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(196,42,107,.05) 0%, transparent 55%);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  text-align: center;
}

.hero-headline { color: var(--bone); margin-bottom: 20px; }
.hero-headline .cycling-word {
  color: var(--sun-400);
  display: inline-block;
  min-width: 200px;
}

.hero-sub {
  color: rgba(250,247,240,.6);
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: clamp(16px, 1.6vw, 18px);
}

.hero-ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-app-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 9px 18px;
  color: rgba(250,247,240,.8);
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 13px;
  transition: var(--transition);
}
.app-badge:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(250,247,240,.3);
  font-size: 10px;
  font-family: var(--f-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Stats strip */
.stats-strip {
  background: rgba(14,20,36,.75);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 36px 0;
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-item .stat-value {
  font-family: var(--f-sans);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--sun-400);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item .stat-label {
  color: rgba(250,247,240,.5);
  font-size: 13px;
  font-family: var(--f-mono);
  letter-spacing: .06em;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── Dual Audience Split ─────────────────────────────────────────────────────  */
/* ─── Audience Cards Section (Section 1.4) ───────────────────────────────────  */

.aud-section { background: var(--ink-0); }

/* Section header */
.aud-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.aud-header h2 { margin-bottom: 16px; }
.aud-header > p:not(.eyebrow) {
  font-size: 16px;
  color: #8B8676;
  line-height: 1.72;
}

/* Cards grid */
.aud-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Card base */
.aud-card {
  background: var(--paper);
  border-radius: var(--r-2xl);
  border: 1px solid var(--line);
  padding: 38px 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: var(--sh-2);
  transition: transform 0.32s cubic-bezier(0.23,1,0.32,1), box-shadow 0.32s ease;
  position: relative;
  overflow: hidden;
}
.aud-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}
.aud-card--employer::before { background: linear-gradient(90deg, #1E3A8A 0%, #3B82F6 50%, #1E3A8A 100%); }
.aud-card--seeker::before   { background: linear-gradient(90deg, #D97706 0%, #F5C842 50%, #D97706 100%); }
.aud-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-4);
}

/* Badge (eyebrow) */
.aud-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-full);
  width: fit-content;
  margin-bottom: 2px;
}
.aud-badge--employer {
  background: rgba(30,58,138,.08);
  color: var(--hiup-navy);
}
.aud-badge--seeker {
  background: var(--sun-50);
  color: var(--sun-700);
}

/* Card intro */
.aud-card-intro { display: flex; flex-direction: column; gap: 10px; }
.aud-card-intro h3 {
  font-size: clamp(19px, 1.7vw, 23px);
  color: var(--ink);
  line-height: 1.26;
  letter-spacing: -0.02em;
}
.aud-card-desc {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.72;
}
/* KPI metric badge */
.aud-card-kpi {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 12px;
  border-radius: var(--r-full);
  width: fit-content;
}
.aud-card--employer .aud-card-kpi {
  background: rgba(30,58,138,0.07);
  border: 1px solid rgba(30,58,138,0.18);
  color: var(--hiup-navy);
}
.aud-card--seeker .aud-card-kpi {
  background: var(--sun-50);
  border: 1px solid var(--sun-200);
  color: var(--sun-700);
}

/* Product UI preview widget */
.aud-preview {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 15px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aud-preview--employer {
  background: rgba(30,58,138,.03);
  border-color: rgba(30,58,138,.14);
  box-shadow: 0 2px 16px rgba(30,58,138,0.07);
}
.aud-preview--seeker {
  background: var(--sun-50);
  border-color: var(--sun-200);
  box-shadow: 0 2px 16px rgba(245,200,66,0.08);
}

.aud-preview-profile {
  display: flex;
  align-items: center;
  gap: 9px;
}
.aud-preview-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.aud-preview-meta { flex: 1; min-width: 0; }
.aud-preview-name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.aud-preview-role {
  display: block;
  font-size: 10px;
  color: var(--mute);
}
.aud-preview-score {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.aud-preview-score--navy { color: var(--hiup-navy); }
.aud-preview-score--teal { color: var(--hiup-teal); }

.aud-preview-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.aud-preview-bar {
  height: 5px;
  background: var(--line-2);
  border-radius: var(--r-full);
  overflow: hidden;
}
.aud-preview-fill {
  height: 100%;
  border-radius: var(--r-full);
  transition: width 1s cubic-bezier(0.4,0,0.2,1) 0.3s;
}
.aud-preview-fill--navy { background: var(--hiup-navy); }
.aud-preview-fill--teal {
  background: linear-gradient(90deg, var(--hiup-teal), var(--sun-400));
}
.aud-preview-bar-lbl {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: 0.02em;
}

.aud-preview-summary {
  font-size: 11.5px;
  color: var(--slate-700);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.45;
}
.aud-preview-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 2px 7px;
  border-radius: var(--r-full);
  margin-top: 1px;
}
.aud-preview-tag--navy { background: rgba(30,58,138,.1); color: var(--hiup-navy); }
.aud-preview-tag--teal { background: rgba(58,188,177,.12); color: #1a8075; }

.aud-preview-action {
  font-size: 11px;
  font-weight: 500;
  color: var(--slate-500);
  border-top: 1px solid var(--line);
  padding-top: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.aud-preview-action strong { color: var(--ink); font-weight: 600; }
.aud-preview-arrow {
  color: var(--hiup-navy);
  font-weight: 700;
  flex-shrink: 0;
}
.aud-preview-action--stage {
  color: var(--success);
}
.aud-preview-action--stage strong { color: var(--success); }
.aud-stage-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  display: inline-block;
}

/* Bullet list */
.aud-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.aud-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--slate-700);
  line-height: 1.55;
}
.aud-list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-size: contain;
  background-repeat: no-repeat;
}
.aud-list--employer li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231E3A8A'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z'/%3E%3C/svg%3E");
}
.aud-list--seeker li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23E5B528'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z'/%3E%3C/svg%3E");
}

/* CTA row + avatar footer */
.aud-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}
.aud-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
}
.aud-avatar-wrap {
  flex-shrink: 0;
  width: 96px;
  height: 116px;
  overflow: visible;
}
.aud-avatar-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Recruiter avatar animations */
@keyframes rc-accept-cycle {
  0%, 5%    { opacity: 0; transform: scale(0.5); }
  15%, 40%  { opacity: 1; transform: scale(1); }
  50%, 100% { opacity: 0; transform: scale(0.5); }
}
@keyframes rc-reject-cycle {
  0%, 50%   { opacity: 0; transform: scale(0.5); }
  62%, 88%  { opacity: 1; transform: scale(1); }
  98%, 100% { opacity: 0; transform: scale(0.5); }
}
.rc-accept-badge {
  animation: rc-accept-cycle 8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.rc-reject-badge {
  animation: rc-reject-cycle 8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* Seeker avatar animations */
@keyframes js-sad-cycle {
  0%, 42% { opacity: 1; }
  56%     { opacity: 0; }
  95%     { opacity: 0; }
  100%    { opacity: 1; }
}
@keyframes js-happy-cycle {
  0%, 47% { opacity: 0; }
  60%     { opacity: 1; }
  90%     { opacity: 1; }
  100%    { opacity: 0; }
}
@keyframes js-sparkle {
  0%, 55%  { opacity: 0; transform: scale(0) rotate(0deg); }
  68%      { opacity: 1; transform: scale(1.2) rotate(15deg); }
  75%, 88% { opacity: 1; transform: scale(1) rotate(0deg); }
  97%      { opacity: 0; transform: scale(0.6); }
  100%     { opacity: 0; transform: scale(0); }
}
@keyframes js-badge-pop {
  0%, 55%  { opacity: 0; transform: scale(0); }
  68%      { opacity: 1; transform: scale(1.12); }
  76%, 90% { opacity: 1; transform: scale(1); }
  100%     { opacity: 0; transform: scale(0); }
}
.js-state-sad   { animation: js-sad-cycle   8s ease-in-out infinite; }
.js-state-happy { animation: js-happy-cycle 8s ease-in-out infinite; }
.js-star-1 {
  animation: js-sparkle 8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.js-star-2 {
  animation: js-sparkle 8s ease-in-out 0.35s infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.js-star-3 {
  animation: js-sparkle 8s ease-in-out 0.7s infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.js-hired-badge {
  animation: js-badge-pop 8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* Reduced motion overrides for avatars */
@media (prefers-reduced-motion: reduce) {
  .rc-accept-badge, .rc-reject-badge,
  .js-state-sad, .js-state-happy,
  .js-star-1, .js-star-2, .js-star-3,
  .js-hired-badge { animation: none; }
  .rc-reject-badge { opacity: 0; }
  .js-state-happy  { opacity: 0; }
}

/* Value strip */
.aud-value-strip {
  margin-top: 48px;
  text-align: center;
}
.aud-value-tagline {
  font-size: 13px;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.aud-value-points {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.aud-value-point {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate-700);
  padding: 0 28px;
  border-right: 1px solid var(--line-2);
  line-height: 1;
}
.aud-value-point:last-child { border-right: none; }
.aud-value-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sun-400);
  flex-shrink: 0;
}

/* ── Tablet ── */
@media (max-width: 860px) {
  .aud-cards { grid-template-columns: 1fr; }
  .aud-header { margin-bottom: 40px; }
  .aud-value-point { padding: 0 18px; }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .aud-card { padding: 24px; }
  .aud-card-footer { flex-wrap: wrap; }
  .aud-avatar-wrap { width: 72px; height: 88px; }
  .aud-actions { flex-direction: column; }
  .aud-actions .btn { width: 100%; justify-content: center; }
  .aud-value-points { gap: 10px 0; }
  .aud-value-point { border-right: none; padding: 4px 16px; border-bottom: 1px solid var(--line); width: 100%; justify-content: center; }
  .aud-value-point:last-child { border-bottom: none; }
}

/* ─── How It Works (tabs) ─────────────────────────────────────────────────────  */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  background: var(--line);
  border-radius: var(--r-full);
  padding: 3px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab-btn {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 28px;
  border-radius: var(--r-full);
  color: var(--slate-500);
  transition: var(--transition);
  border: none;
  background: none;
  cursor: pointer;
}
.tab-btn.active {
  background: var(--ink);
  color: var(--bone);
  box-shadow: var(--sh-2);
}

.tab-pane { display: none; }
.tab-pane.active { display: block; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card { text-align: center; padding: 36px 28px; }
.step-number {
  font-family: var(--f-sans);
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--sun-400);
  opacity: .12;
  line-height: 1;
  margin-bottom: -16px;
}
.step-icon { width: 72px; height: 72px; margin: 0 auto 20px; }
.step-card h3 { margin-bottom: 12px; }

@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ─── Feature Cards ──────────────────────────────────────────────────────────  */
.features-wrap {
  position: relative;
  overflow: hidden;
  min-height: 800px;
  background: #050D1A;
}
.features-wrap > .container { position: relative; z-index: 1; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  padding: 28px 28px 32px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  transition: transform .55s cubic-bezier(.22,1,.36,1), box-shadow .55s ease, border-color .4s ease, background .4s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,200,66,.09) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.feature-card.is-active::before { opacity: 1; }
.feature-card.is-active {
  border-color: rgba(245,200,66,.5);
  background: rgba(245,200,66,.06);
  box-shadow: 0 0 50px rgba(245,200,66,.2), 0 24px 60px rgba(0,0,0,.5);
  transform: translateY(-8px) scale(1.025);
}
.feature-card:hover {
  border-color: rgba(245,200,66,.35);
  box-shadow: 0 16px 48px rgba(245,200,66,.12);
  transform: translateY(-5px);
}
.feature-card.is-active:hover { transform: translateY(-8px) scale(1.025); }

/* Progress bar that drains across the bottom of the active card */
.feature-card-progress {
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, #F5C842, #3ABCB1);
  width: 0; border-radius: 0 0 var(--r-lg) var(--r-lg);
  pointer-events: none;
}
.feature-card.is-active .feature-card-progress {
  animation: fc-progress 4s linear forwards;
}
@keyframes fc-progress { from { width: 0; } to { width: 100%; } }

/* 3D icon */
.feature-icon-3d { width: 72px; height: 72px; display: block; margin-bottom: 20px; }
.feature-card h3 { color: var(--bone); margin-bottom: 10px; font-size: 17px; }
.feature-card p  { color: rgba(250,247,240,.55); font-size: 14px; line-height: 1.6; }

/* Icon animations */
@keyframes fi-spin  { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fi-bob   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes fi-grow  { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); transform-origin: bottom; } }
@keyframes fi-pulse { 0%,100% { opacity:.5; } 50% { opacity:1; } }

@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .features-grid { grid-template-columns: 1fr; } }

/* ─── AI Showcase ─────────────────────────────────────────────────────────────  */
.ai-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.ai-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 36px; }
.ai-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 18px;
}
.ai-stat .ai-stat-value {
  font-family: var(--f-sans);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--sun-400);
  margin-bottom: 4px;
}
.ai-stat .ai-stat-label { color: rgba(250,247,240,.5); font-size: 13px; }

/* AI surface components */
.ai-dark {
  background: var(--ink);
  color: var(--bone);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.ai-dark::before {
  content: '';
  position: absolute;
  right: -25%; bottom: -55%;
  width: 320px; height: 320px;
  background: var(--grad-ai);
  filter: blur(60px);
  opacity: .4;
  border-radius: 50%;
}
.ai-dark > * { position: relative; z-index: 1; }

.ai-tint {
  background: linear-gradient(135deg, rgba(245,200,66,.07), rgba(196,42,107,.07));
  border: 1px solid rgba(196,42,107,.1);
  border-radius: var(--r-lg);
  padding: 20px;
}

@media (max-width: 900px) { .ai-showcase { grid-template-columns: 1fr; } }

/* ─── Testimonials ────────────────────────────────────────────────────────────  */
.testimonial-card {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--sh-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--sun-400);
  height: 100%;
  transition: var(--transition-slow);
}
.testimonial-card:hover { box-shadow: var(--sh-3); }
.testimonial-card .stars {
  color: var(--sun-400);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 3px;
}
.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate-700);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-0);
  flex-shrink: 0;
}
.author-name  { font-family: var(--f-sans); font-weight: 600; font-size: 14px; color: var(--ink); }
.author-role  { font-size: 12px; color: var(--mute); font-family: var(--f-mono); }

/* ─── Logo marquee ────────────────────────────────────────────────────────────  */
.logo-marquee-wrap { overflow: hidden; }
.logo-marquee {
  display: flex;
  gap: 48px;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.logo-marquee:hover { animation-play-state: paused; }
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  opacity: .35;
  filter: grayscale(1);
  transition: var(--transition);
  min-width: 120px;
}
.logo-item:hover { opacity: .85; filter: none; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Pricing ─────────────────────────────────────────────────────────────────  */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.pricing-card {
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  transition: var(--transition-slow);
}
.pricing-card.popular {
  background: rgba(245,200,66,.07);
  border-color: rgba(245,200,66,.35);
  transform: scale(1.04);
  box-shadow: 0 24px 64px rgba(245,200,66,.18);
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card.popular:hover { transform: scale(1.04) translateY(-3px); }

.popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--sun-400);
  color: var(--ink);
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.pricing-tier {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sun-400);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--f-sans);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--bone);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price sup { font-size: 22px; vertical-align: top; margin-top: 10px; }
.pricing-price .period { font-size: 15px; font-weight: 500; opacity: .5; }
.pricing-desc { color: rgba(250,247,240,.5); font-size: 13px; margin-bottom: 28px; }

.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(250,247,240,.78);
  font-size: 13.5px;
}
.pricing-features li .check { color: var(--hiup-teal); font-size: 16px; flex-shrink: 0; }

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.popular { transform: scale(1); }
}

/* ─── Blog cards ──────────────────────────────────────────────────────────────  */
.blog-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  transition: var(--transition-slow);
}
.blog-card:hover { box-shadow: var(--sh-3); border-color: var(--line-2); transform: translateY(-3px); }
.blog-card-image {
  width: 100%; height: 200px;
  overflow: hidden;
  background: var(--bone-2);
}
.blog-card-image img, .blog-card-image svg {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sun-600);
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--ink); }
.blog-card p  { font-size: 14px; line-height: 1.6; margin-bottom: 18px; color: var(--slate-500); }
.blog-read-more {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--sun-600);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .15s ease;
}
.blog-read-more:hover { gap: 9px; }

/* ─── Footer ──────────────────────────────────────────────────────────────────  */
.site-footer {
  background: var(--ink);
  color: rgba(250,247,240,.55);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-logo-link { display: inline-block; line-height: 0; }
.footer-logo-link svg { display: block; }
.footer-brand .footer-tagline { margin: 14px 0 6px; color: rgba(250,247,240,.7); font-size: 14px; }
.footer-brand .footer-powered  { font-size: 12px; color: rgba(250,247,240,.3); }
.social-links { display: flex; gap: 8px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,247,240,.55);
  transition: var(--transition);
}
.social-link:hover { background: var(--sun-400); color: var(--ink); border-color: var(--sun-400); }

.footer-col h4 {
  color: var(--bone);
  font-size: 11px;
  font-weight: 500;
  font-family: var(--f-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13.5px; color: rgba(250,247,240,.5); transition: color .15s ease; }
.footer-col ul a:hover { color: var(--sun-400); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  text-align: center;
  font-size: 12.5px;
  color: rgba(250,247,240,.3);
}

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ─── Video modal ─────────────────────────────────────────────────────────────  */
.video-card {
  background: var(--ink);
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255,255,255,.08);
  transition: var(--transition-slow);
}
.video-card:hover { transform: translateY(-3px); box-shadow: var(--sh-4); }
.video-thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
}
.play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--sun-400);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  box-shadow: 0 0 0 14px rgba(245,200,66,.12);
}
.play-btn svg { margin-left: 3px; }
.video-card:hover .play-btn { transform: scale(1.08); box-shadow: 0 0 0 18px rgba(245,200,66,.16); }
.video-card-meta { padding: 20px; color: var(--bone); }
.video-card-meta h3 { font-size: 16px; margin-bottom: 6px; }
.duration-badge {
  display: inline-block;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-full);
  padding: 2px 9px;
  font-size: 11.5px;
  font-family: var(--f-mono);
  color: rgba(250,247,240,.55);
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.video-modal.open { display: flex; }
.video-modal-inner { width: 90%; max-width: 900px; position: relative; }
.video-modal-close {
  position: absolute;
  top: -44px; right: 0;
  color: var(--bone);
  font-size: 24px;
  cursor: pointer;
  background: rgba(255,255,255,.08);
  border: none;
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}

/* ─── Product Demo Section ───────────────────────────────────────────────────  */

/* Grid */
.demo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}

/* Card */
.demo-card.video-card {
  overflow: hidden;
  border-radius: var(--r-2xl);
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.demo-card.video-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 64px -12px rgba(14,20,36,.32), 0 10px 24px rgba(14,20,36,.12);
}
.demo-card.video-card:focus-visible {
  outline: 2px solid var(--sun-400);
  outline-offset: 3px;
}

/* Thumbnail */
.demo-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

/* Thumbnail backgrounds */
.demo-thumb-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.demo-thumb-bg--recruiter {
  background:
    radial-gradient(ellipse at 75% 15%, rgba(245,200,66,.10) 0%, transparent 52%),
    radial-gradient(ellipse at 20% 85%, rgba(30,58,138,.35) 0%, transparent 48%),
    linear-gradient(135deg, #0E1424 0%, #1A2236 55%, #0F1E3C 100%);
}
.demo-thumb-bg--seeker {
  background:
    radial-gradient(ellipse at 25% 15%, rgba(58,188,177,.10) 0%, transparent 52%),
    radial-gradient(ellipse at 80% 85%, rgba(196,42,107,.12) 0%, transparent 48%),
    linear-gradient(135deg, #0E1424 0%, #1A2236 55%, #0A1B2E 100%);
}

/* Sweep shimmer */
.demo-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(245,200,66,.055) 48%,
    rgba(245,200,66,.03) 55%,
    transparent 100%);
  transform: translateX(-120%);
  animation: demo-sweep-anim 5.5s ease-in-out infinite;
}
.demo-sweep--seeker {
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(58,188,177,.055) 48%,
    rgba(58,188,177,.03) 55%,
    transparent 100%);
  animation-delay: 1.4s;
}
@keyframes demo-sweep-anim {
  0%   { transform: translateX(-120%); }
  65%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

/* Duration badge — top-left */
.demo-duration {
  position: absolute;
  top: 13px;
  left: 14px;
  z-index: 6;
  background: rgba(14,20,36,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-full);
  padding: 3px 10px;
  font-size: 11.5px;
  font-family: var(--f-mono);
  color: rgba(250,247,240,.7);
  letter-spacing: 0.02em;
  pointer-events: none;
}
.demo-duration--right { left: auto; right: 14px; }

/* UI panel — bottom glass overlay */
.demo-ui-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(14,20,36,.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 10px 14px 11px;
  pointer-events: none;
}
.demo-ui-panel-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}
.demo-ui-badge {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sun-400);
}
.demo-ui-badge--teal { color: var(--hiup-teal); }
.demo-ui-count {
  font-size: 9px;
  color: rgba(250,247,240,.38);
  font-family: var(--f-mono);
}

/* Candidate rows */
.demo-ui-cand-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 3.5px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.demo-ui-cand-row:last-child { border-bottom: none; }
.demo-ui-cand-row--top { border-bottom-color: rgba(245,200,66,.15); }
.demo-ui-av {
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 6.5px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.demo-ui-cand-info { flex: 1; min-width: 0; }
.demo-ui-cand-name {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: rgba(250,247,240,.82);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.demo-ui-bar {
  height: 2.5px;
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  overflow: hidden;
}
.demo-ui-bar-fill {
  height: 100%;
  background: var(--sun-400);
  border-radius: 999px;
  transition: width 1s cubic-bezier(0.4,0,0.2,1);
}
.demo-ui-cand-row--top .demo-ui-bar-fill {
  background: linear-gradient(90deg, var(--sun-400) 0%, var(--coral) 100%);
}
.demo-ui-pct {
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(250,247,240,.45);
  font-family: var(--f-mono);
  flex-shrink: 0;
}
.demo-ui-pct--hi  { color: var(--sun-400); }
.demo-ui-pct--teal { color: var(--hiup-teal); }

/* Job rows (seeker card) */
.demo-ui-job-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3.5px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.demo-ui-job-row:last-child { border-bottom: none; }
.demo-ui-job-row--top { border-bottom-color: rgba(58,188,177,.15); }
.demo-ui-co-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.demo-ui-job-info { flex: 1; min-width: 0; }
.demo-ui-job-title {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: rgba(250,247,240,.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.demo-ui-company {
  display: block;
  font-size: 8.5px;
  color: rgba(250,247,240,.36);
}

/* Floating 3D product widget */
.demo-float-widget {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 4;
  width: 162px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  padding: 11px 13px;
  box-shadow:
    0 14px 36px rgba(14,20,36,.28),
    0 3px 8px rgba(14,20,36,.14),
    inset 0 1px 0 rgba(255,255,255,.8);
  pointer-events: none;
  animation: demo-float-anim 5s ease-in-out infinite;
}
.demo-float-widget--seeker {
  left: auto;
  right: 13px;
  animation-delay: 0.7s;
}
@keyframes demo-float-anim {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  35%      { transform: translateY(-5px) rotate(.4deg); }
  70%      { transform: translateY(-3px) rotate(-.2deg); }
}
.dfw-hd {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
.dfw-icon { font-size: 12px; line-height: 1; }
.dfw-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.dfw-score {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 3px;
}
.dfw-score--teal { color: var(--hiup-teal); }
.dfw-pct { font-size: 13px; font-weight: 600; letter-spacing: 0; }
.dfw-meta {
  font-size: 9.5px;
  color: var(--slate-500);
  line-height: 1.4;
  margin-bottom: 7px;
}
.dfw-cta {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--sun-600);
  padding-top: 6px;
  border-top: 1px solid var(--line);
}
.dfw-cta--stage {
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 5px;
}
.dfw-stage-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
  flex-shrink: 0;
}

/* Play button — centered in thumbnail */
.demo-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--sun-400);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 16px rgba(245,200,66,.14),
    0 8px 28px rgba(245,200,66,.32);
  transition: transform 0.2s cubic-bezier(0.23,1,0.32,1), box-shadow 0.2s ease;
  animation: demo-play-pulse 3.5s ease-in-out infinite;
}
.demo-play svg { margin-left: 3px; pointer-events: none; }
.demo-card.video-card:hover .demo-play {
  box-shadow:
    0 0 0 22px rgba(245,200,66,.12),
    0 12px 36px rgba(245,200,66,.42);
  animation-play-state: paused;
}
@keyframes demo-play-pulse {
  0%,100% { box-shadow: 0 0 0 16px rgba(245,200,66,.14), 0 8px 28px rgba(245,200,66,.32); }
  50%      { box-shadow: 0 0 0 24px rgba(245,200,66,.07), 0 8px 28px rgba(245,200,66,.22); }
}

/* Card body */
.demo-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.demo-audience {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sun-400);
  margin-bottom: 9px;
}
.demo-audience--seeker { color: var(--hiup-teal); }
.demo-title {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  color: var(--bone);
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin-bottom: 9px;
}
.demo-desc {
  font-size: 13px;
  color: rgba(250,247,240,.5);
  line-height: 1.68;
  margin-bottom: 16px;
}
.demo-highlights {
  margin-bottom: 20px;
}
.demo-highlights li {
  font-size: 12.5px;
  color: rgba(250,247,240,.68);
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.05);
  line-height: 1.5;
}
.demo-highlights li:first-child { border-top: 1px solid rgba(255,255,255,.05); }
.demo-highlights li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sun-400);
  font-size: 10px;
  top: 7px;
}
.demo-highlights--seeker li::before { color: var(--hiup-teal); }

.demo-play-cta {
  align-self: flex-start;
  gap: 7px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.demo-play-cta:active { transform: scale(0.97) !important; }

/* Card hover: UI panel subtle lift */
.demo-card.video-card:hover .demo-ui-panel {
  background: rgba(14,20,36,.84);
}
/* Card hover: float widget subtle extra lift */
.demo-card.video-card:hover .demo-float-widget {
  box-shadow:
    0 20px 48px rgba(14,20,36,.34),
    0 4px 12px rgba(14,20,36,.18),
    inset 0 1px 0 rgba(255,255,255,.8);
}

/* Bottom CTA strip */
.demo-bottom-cta {
  margin-top: 44px;
}
.demo-bottom-cta-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--sun-50);
  border: 1px solid var(--sun-200);
  border-radius: var(--r-2xl);
  padding: 32px 40px;
  flex-wrap: wrap;
}
.demo-bottom-cta-text { flex: 1; min-width: 260px; }
.demo-bottom-cta-text h4 {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink);
  margin-bottom: 5px;
}
.demo-bottom-cta-text p {
  font-size: 13.5px;
  color: var(--slate-500);
  line-height: 1.65;
}
.demo-bottom-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

/* ── Tablet ── */
@media (max-width: 900px) {
  .demo-cards { grid-template-columns: 1fr; gap: 24px; }
  .demo-float-widget { width: 148px; padding: 10px 12px; }
  .dfw-score { font-size: 22px; }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .demo-body { padding: 18px 18px 22px; }
  .demo-float-widget { width: 136px; top: 10px; right: 10px; padding: 9px 11px; }
  .demo-float-widget--seeker { right: 10px; left: auto; }
  .dfw-score { font-size: 20px; }
  .demo-bottom-cta-inner { flex-direction: column; align-items: flex-start; padding: 24px 22px; gap: 20px; }
  .demo-bottom-cta-actions { width: 100%; flex-direction: column; }
  .demo-bottom-cta-actions .btn { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .demo-sweep,
  .demo-float-widget,
  .demo-play { animation: none !important; }
  .demo-card.video-card { transition: box-shadow 0.2s ease !important; }
  .demo-card.video-card:hover { transform: none !important; }
}

/* ─── CTA Yellow strip ────────────────────────────────────────────────────────  */
.cta-yellow { position: relative; overflow: hidden; background: var(--sun-400); }
.cta-yellow::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(14,20,36,.05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.cta-yellow .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.cta-yellow h2 { color: var(--ink); }
.cta-yellow p  { color: rgba(14,20,36,.65); font-size: 15px; }

/* ─── CTA premium elements ──────────────────────────────────────────────── */
.cta-eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(14,20,36,0.6);
  background: rgba(14,20,36,0.08);
  border: 1px solid rgba(14,20,36,0.14);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}
.cta-feats {
  list-style: none;
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cta-feats li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-family: var(--f-sans);
  font-size: 15px;
  color: rgba(14,20,36,.75);
  line-height: 1.5;
}
.cta-feats li svg { flex-shrink: 0; margin-top: 1px; }
.cta-proof-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 22px;
  background: rgba(14,20,36,0.07);
  border-radius: var(--r-lg);
  width: fit-content;
}
.cta-proof-item { text-align: center; }
.cta-proof-item strong {
  display: block;
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.1;
}
.cta-proof-item span {
  font-size: 10.5px;
  color: rgba(14,20,36,0.55);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
}
.cta-proof-div {
  width: 1px;
  height: 32px;
  background: rgba(14,20,36,0.15);
  flex-shrink: 0;
}
.cta-dl-card {
  background: #fff;
  border-radius: var(--r-2xl);
  padding: 32px;
  box-shadow: 0 8px 48px rgba(14,20,36,0.12), 0 2px 8px rgba(14,20,36,0.06);
}
.cta-dl-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(14,20,36,0.08);
}
.cta-dl-or {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  color: rgba(14,20,36,0.4);
  font-size: 13px;
  font-family: var(--f-sans);
}
.cta-dl-or::before, .cta-dl-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(14,20,36,0.10);
}
.app-badge--cta {
  width: 100%;
  background: var(--ink) !important;
  color: #fff !important;
  border-color: var(--ink) !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  justify-content: flex-start;
  gap: 14px;
}
.app-badge--cta small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  opacity: 0.65;
  line-height: 1;
  margin-bottom: 2px;
}
.app-badge--cta span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.app-badge--cta:hover { background: #1a2540 !important; border-color: #1a2540 !important; }

@media (max-width: 1024px) {
  .cta-yellow .container { grid-template-columns: 1fr; gap: 48px; max-width: 560px; margin-left: auto; margin-right: auto; }
  .cta-proof-row { margin: 0 auto; }
}
@media (max-width: 768px) {
  .cta-yellow .container { text-align: center; }
  .cta-feats li { justify-content: flex-start; text-align: left; }
  .cta-proof-row { gap: 12px; padding: 12px 16px; }
  .cta-proof-item strong { font-size: 16px; }
}

/* ─── JobseekerAppHero ────────────────────────────────────────────────────────  */
/* Section wrapper */
.js-app-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: var(--ink);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(245,200,66,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196,42,107,.07) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(240,99,58,.06) 0%, transparent 60%);
}
/* Warm glow: right side accent */
.js-app-hero::after {
  content: '';
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(245,200,66,.07) 0%, transparent 70%);
  pointer-events: none;
}
/* Two-column grid */
.js-app-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 1;
}
/* ── Left: content ───────────────────────────────────────────────────────── */
.js-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-sans); font-weight: 700; font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--hiup-yellow);
  background: rgba(245,200,66,.11); border: 1px solid rgba(245,200,66,.25);
  padding: 5px 14px; border-radius: var(--r-full); margin-bottom: 22px;
}
.js-content h2 {
  color: #fff; font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.07; letter-spacing: -1.5px; margin-bottom: 18px;
}
.js-content h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #F5C842 15%, #FFD580 48%, #F5C842 85%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: js-shimmer 3.5s linear infinite;
  display: inline-block;
}
@keyframes js-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@media (prefers-reduced-motion: reduce) {
  .js-content h2 em { animation: none; background: none; -webkit-text-fill-color: #F5C842; color: #F5C842; }
}
.js-content > p { color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.7; max-width: 480px; }
/* Bullet list */
.js-bullets { list-style: none; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.js-bullets li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 15px; color: rgba(255,255,255,.70); line-height: 1.5;
}
.js-bullets li .jb-dot {
  flex-shrink: 0; margin-top: 3px;
  width: 17px; height: 17px; border-radius: 50%;
  background: rgba(245,200,66,.12); border: 1px solid rgba(245,200,66,.35);
  display: flex; align-items: center; justify-content: center;
}
.js-bullets li .jb-dot svg { display: block; }
/* CTA row */
.js-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; align-items: center; }
/* Microcopy */
.js-microcopy { font-size: 12.5px; color: rgba(255,255,255,.36); margin-bottom: 24px; }
/* Value chips */
.js-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.js-chip {
  font-size: 11.5px; font-weight: 600; letter-spacing: .02em;
  color: rgba(255,255,255,.60);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  padding: 5px 12px; border-radius: var(--r-full);
}
/* App store badge variant on dark bg */
.app-badge--dark {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.85) !important;
}
.app-badge--dark:hover {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.25) !important;
}
/* ── Right: phone visual ─────────────────────────────────────────────────── */
.js-visual {
  position: relative; height: 580px;
  display: flex; align-items: center; justify-content: center;
}
/* Career compass rings */
.js-compass {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
@keyframes compass-cw  { to { transform: rotate(360deg);  } }
@keyframes compass-ccw { to { transform: rotate(-360deg); } }
.js-c-outer { animation: compass-cw  38s linear infinite; transform-origin: 50% 50%; }
.js-c-inner { animation: compass-ccw 55s linear infinite; transform-origin: 50% 50%; }
@media (prefers-reduced-motion: reduce) { .js-c-outer, .js-c-inner { animation: none; } }
/* Phone mockup */
.js-phone { position: relative; z-index: 2; animation: jphone-float 5.5s ease-in-out infinite; }
@keyframes jphone-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@media (prefers-reduced-motion: reduce) { .js-phone { animation: none; } }
.js-phone-frame {
  width: 230px; height: 472px;
  background: linear-gradient(155deg, #1c2e50 0%, #0b1526 100%);
  border-radius: 38px;
  border: 1.5px solid rgba(255,255,255,.13);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 32px 90px rgba(0,0,0,.55),
    0 4px 24px rgba(245,200,66,.07),
    inset 0 1px 0 rgba(255,255,255,.09);
  overflow: hidden; position: relative;
}
/* Notch */
.js-phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 88px; height: 26px;
  background: #060e1c; border-radius: 0 0 16px 16px; z-index: 3;
}
/* Side button decoration */
.js-phone-frame::after {
  content: '';
  position: absolute; right: -2px; top: 110px;
  width: 3px; height: 60px;
  background: rgba(255,255,255,.12); border-radius: 2px;
}
/* Screen content */
.js-phone-screen {
  position: absolute; inset: 0;
  padding: 32px 13px 14px;
  display: flex; flex-direction: column; gap: 9px;
  overflow: hidden;
}
.js-phone-sbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2px 4px 6px; flex-shrink: 0;
}
.js-phone-sbar-time { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.9); }
.js-phone-sbar-icons { display: flex; gap: 3px; align-items: center; }
/* Readiness card inside phone */
.js-readiness-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 12px 11px; flex-shrink: 0;
}
.js-rc-label { font-size: 8px; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.42); margin-bottom: 8px; }
.js-rc-ring-row { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; }
.js-rc-pct { font-size: 22px; font-weight: 800; color: #F5C842; line-height: 1; }
.js-rc-desc { font-size: 9.5px; color: rgba(255,255,255,.55); line-height: 1.4; }
.js-rc-next {
  background: rgba(245,200,66,.10); border: 1px solid rgba(245,200,66,.2);
  border-radius: 9px; padding: 7px 9px;
}
.js-rc-next-lbl { font-size: 8px; color: rgba(255,255,255,.4); margin-bottom: 2px; }
.js-rc-next-val { font-size: 9.5px; font-weight: 700; color: #F5C842; }
/* Mini job rows inside phone */
.js-phone-jobs { display: flex; flex-direction: column; gap: 5px; }
.js-phone-job {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,.04); border-radius: 10px;
  padding: 8px 10px; gap: 8px;
}
.js-pj-info { flex: 1; }
.js-pj-title { font-size: 9.5px; font-weight: 700; color: rgba(255,255,255,.88); }
.js-pj-co    { font-size: 8.5px; color: rgba(255,255,255,.38); margin-top: 1px; }
.js-pj-match { font-size: 9.5px; font-weight: 700; color: #3ABCB1; background: rgba(58,188,177,.12); padding: 3px 7px; border-radius: 20px; white-space: nowrap; }
/* ── Floating widgets ────────────────────────────────────────────────────── */
.js-widget {
  position: absolute; z-index: 4;
  background: rgba(12,22,44,.88);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 15px; padding: 13px 15px;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
  min-width: 155px;
}
.js-widget--match     { top: 5%;   right: -22px; animation: wfloat-a 6.2s ease-in-out infinite; }
.js-widget--status    { bottom: 18%; right: -22px; animation: wfloat-b 7.1s ease-in-out infinite; }
.js-widget--certs     { top: 12%;  left: -38px; animation: wfloat-c 5.6s ease-in-out infinite; }
.js-widget--readiness { bottom: 22%; left: -32px; animation: wfloat-d 6.8s ease-in-out infinite; }
@keyframes wfloat-a { 0%,100% { transform: translateY(0); }          50% { transform: translateY(-10px); } }
@keyframes wfloat-b { 0%,100% { transform: translateY(0); }          50% { transform: translateY(-8px);  } }
@keyframes wfloat-c { 0%,100% { transform: translateY(0); }          50% { transform: translateY(-9px); } }
@keyframes wfloat-d { 0%,100% { transform: translateY(0); }          50% { transform: translateY(-7px); } }
@media (prefers-reduced-motion: reduce) {
  .js-widget--match, .js-widget--status, .js-widget--readiness { animation: none; }
  .js-widget--certs { animation: none; }
}
.js-wl { font-size: 8.5px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.38); margin-bottom: 6px; }
.js-wt { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.92); margin-bottom: 4px; }
.js-wb { display: inline-block; font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-bottom: 4px; }
.js-wb--yellow { background: rgba(245,200,66,.15); color: #F5C842; border: 1px solid rgba(245,200,66,.28); }
.js-wb--teal   { background: rgba(58,188,177,.15);  color: #3ABCB1; border: 1px solid rgba(58,188,177,.28); }
.js-wb--green  { background: rgba(52,211,153,.15);  color: #34D399; border: 1px solid rgba(52,211,153,.28); }
.js-wm { font-size: 10px; color: rgba(255,255,255,.42); }
.js-wn { font-size: 10px; color: rgba(255,255,255,.48); margin-top: 3px; }
.js-w-cert-row { display: flex; justify-content: space-between; font-size: 10.5px; padding: 3px 0; }
.js-w-cert-row .js-wv { font-weight: 700; }
.js-w-cert-row .js-wv--teal { color: #3ABCB1; }
.js-w-cert-row .js-wv--yellow { color: rgba(245,200,66,.75); }
/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) { .js-app-grid { grid-template-columns: 1fr 400px; gap: 48px; } }
@media (max-width: 900px) {
  .js-app-hero { padding: 56px 0; }
  .js-app-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; gap: 40px; }
  .js-visual { height: 440px; order: -1; }
  .js-widget--certs, .js-widget--readiness { left: -10px; }
  .js-widget--match, .js-widget--status { right: -8px; }
  .js-widget--readiness { bottom: 16%; }
}
@media (max-width: 600px) {
  .js-app-hero { padding: 48px 0; }
  .js-visual { height: 380px; }
  .js-phone-frame { width: 186px; height: 380px; }
  .js-phone-frame::after { display: none; }
  .js-widget { padding: 10px 12px; min-width: 130px; }
  .js-widget--certs, .js-widget--readiness { left: 0; }
  .js-widget--match, .js-widget--status { right: 0; }
  .js-widget--readiness { bottom: 12%; }
}

/* ─── Section header ──────────────────────────────────────────────────────────  */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p:not(.eyebrow)  { font-size: 17px; color: var(--slate-500); max-width: 600px; margin-left: auto; margin-right: auto; }

/* Dark-section overrides — headings white, descriptions at 65% white */
.section-dark .section-header h2,
.features-wrap .section-header h2,
.section-gradient-mesh .section-header h2,
.pricing-section .section-header h2 {
  color: #fff;
}
.section-dark .section-header p:not(.eyebrow),
.features-wrap .section-header p:not(.eyebrow),
.section-gradient-mesh .section-header p:not(.eyebrow),
.pricing-section .section-header p:not(.eyebrow) {
  color: rgba(255, 255, 255, .65);
}

/* Off-white (bone) section-header h2 uses ink (default), description uses slate-500 */
.journey-section .section-header p:not(.eyebrow),
.whm-section .section-header p:not(.eyebrow),
.section-light .section-header p:not(.eyebrow) {
  color: var(--slate-500);
}

/* AI showcase split layout — text lives in .slide-right, not .section-header */
.section-gradient-mesh .slide-right h2 { color: #fff; margin-bottom: 20px; }
.section-gradient-mesh .slide-right p:not(.eyebrow) { color: rgba(255, 255, 255, .65); }

/* journey-header description paragraph */
.journey-header p:not(.eyebrow) {
  font-size: 17px;
  color: var(--slate-500);
  max-width: 540px;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 24px; }
  .section-header p:not(.eyebrow) { font-size: 15px; }
}

/* ─── Utilities ───────────────────────────────────────────────────────────────  */
.text-center   { text-align: center; }
.text-yellow   { color: var(--sun-400); }
.text-white    { color: var(--ink-0); }
.text-bone     { color: var(--bone); }
.text-teal     { color: var(--hiup-teal); }
.text-charcoal { color: var(--ink); }
.text-mute     { color: var(--mute); }
.text-ai       { background: var(--grad-ai); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-56 { margin-bottom: 56px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ─── How Hiup Works — Journey Stepper ───────────────────────────────────────  */
.journey-section {
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
/* Subtle ambient gradients give the section soft colour depth */
.journey-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 25%, rgba(245,200,66,.06) 0%, transparent 48%),
    radial-gradient(circle at 88% 78%, rgba(196,42,107,.04) 0%, transparent 48%);
  pointer-events: none;
  z-index: 0;
}
.journey-section .container { position: relative; z-index: 1; }

.journey-header { text-align: center; margin-bottom: 40px; }
.journey-header .eyebrow { margin-bottom: 12px; }
.journey-header h2 { max-width: 540px; margin: 0 auto; }

/* Journey toggle */
.jt-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--line);
  border-radius: var(--r-full);
  padding: 4px;
  max-width: 480px;
  margin: 0 auto 52px;
}
.jt-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-500);
  transition: all 0.2s ease;
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}
.jt-btn.active {
  background: var(--ink);
  color: var(--ink-0);
  box-shadow: var(--sh-2);
}
.jt-btn svg { flex-shrink: 0; }

/* Journey panels */
.journey-panel { display: none; }
.journey-panel.active { display: block; }

/* Stepper */
.journey-stepper { position: relative; margin-bottom: 40px; }
.stepper-track {
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--line-2);
  border-radius: 2px;
  z-index: 0;
}
.stepper-fill {
  height: 100%;
  background: var(--sun-400);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}
.stepper-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.stepper-step:focus-visible { outline: 2px solid var(--sun-400); outline-offset: 4px; border-radius: 4px; }
/* Stepper icon container — replaces step-num */
.si-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.si-svg {
  width: 44px;
  height: 54px;
  overflow: visible;
}
/* Active step: yellow glow ring */
.stepper-step.active .si-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  background: rgba(245,200,66,0.10);
  border: 2px solid var(--sun-400);
}
/* Done step: subtle desaturate */
.stepper-step.done .si-wrap {
  opacity: 0.55;
  filter: saturate(0.7);
}
.step-lbl {
  font-size: 12px;
  font-weight: 500;
  color: var(--mute);
  text-align: center;
  transition: color 0.2s ease;
}
.stepper-step.active .step-lbl { color: var(--ink); font-weight: 600; }
.stepper-step.done .step-lbl   { color: var(--slate-700); }

/* ── Stepper icon @keyframes ── */
@keyframes si-cursor-blink {
  0%, 42%  { opacity: 1; }
  48%, 92% { opacity: 0; }
  100%     { opacity: 1; }
}
@keyframes si-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.13); }
}
@keyframes si-star-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  33%      { transform: scale(1.08) rotate(6deg); }
  66%      { transform: scale(1.05) rotate(-4deg); }
}
@keyframes si-blink {
  0%, 38%  { opacity: 1; }
  44%, 88% { opacity: 0; }
  100%     { opacity: 1; }
}
@keyframes si-bar-grow {
  0%, 100% { transform: scaleY(0.35); }
  50%      { transform: scaleY(1); }
}
@keyframes si-orbit {
  0%, 100% { transform: rotate(0deg); }
  25%      { transform: rotate(-13deg); }
  75%      { transform: rotate(13deg); }
}
@keyframes si-dot-cascade {
  0%, 22%  { opacity: 1; }
  32%, 100% { opacity: 0.2; }
}
@keyframes si-check-appear {
  0%, 42%  { opacity: 0; transform: scale(0.5); }
  54%, 100% { opacity: 1; transform: scale(1); }
}
@keyframes si-trophy-glow {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.18); filter: drop-shadow(0 0 4px rgba(245,200,66,.55)); }
}
@keyframes si-line-fade {
  0%, 52%  { opacity: 0; }
  64%, 100% { opacity: 1; }
}

/* Animation class assignments */
.si-cursor { animation: si-cursor-blink 1.3s ease-in-out infinite; }
.si-pulse  {
  animation: si-pulse 2s ease-in-out infinite;
  transform-box: fill-box; transform-origin: center;
}
.si-star-pulse {
  animation: si-star-pulse 3s ease-in-out infinite;
  transform-box: fill-box; transform-origin: center;
}
.si-blink  { animation: si-blink 1.5s ease-in-out infinite; }
.si-bar-grow {
  animation: si-bar-grow 2.2s ease-in-out infinite;
  transform-box: fill-box; transform-origin: bottom center;
}
.si-orbit {
  animation: si-orbit 3s ease-in-out infinite;
  transform-box: fill-box; transform-origin: center;
}
.si-dot-1 { animation: si-dot-cascade 1.8s ease-in-out 0s    infinite; }
.si-dot-2 { animation: si-dot-cascade 1.8s ease-in-out 0.35s infinite; }
.si-dot-3 { animation: si-dot-cascade 1.8s ease-in-out 0.7s  infinite; }
.si-check-1 {
  animation: si-check-appear 2.6s ease-in-out 0s    infinite;
  transform-box: fill-box; transform-origin: center;
}
.si-check-2 {
  animation: si-check-appear 2.6s ease-in-out 0.55s infinite;
  transform-box: fill-box; transform-origin: center;
}
.si-trophy-star {
  animation: si-trophy-glow 2.4s ease-in-out infinite;
  transform-box: fill-box; transform-origin: center;
}
.si-line-2 { animation: si-line-fade 2.2s ease-in-out infinite; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .si-cursor, .si-pulse, .si-star-pulse, .si-blink, .si-bar-grow,
  .si-orbit, .si-dot-1, .si-dot-2, .si-dot-3,
  .si-check-1, .si-check-2, .si-trophy-star, .si-line-2 { animation: none !important; }
  .si-check-1, .si-check-2 { opacity: 1 !important; transform: none !important; }
  .si-bar-grow { transform: scaleY(1) !important; }
}

/* Step panels */
.step-panels { min-height: 380px; }
.step-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0 32px;
}
.step-panel.active { display: grid; }

.step-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--f-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1;
}
.step-badge span { font-size: 14px; color: var(--mute); font-weight: 500; }

.step-content h3 { margin-bottom: 14px; }
.step-content p { font-size: 16px; color: var(--slate-500); line-height: 1.7; margin-bottom: 24px; }

.step-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--slate-700);
  font-weight: 500;
}
.step-points li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: var(--r-full);
  background: var(--sun-400);
  margin-top: 7px;
}

/* Step navigation */
.step-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.step-prev, .step-next {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  border: 1.5px solid var(--line-2);
  background: var(--bone);
  transition: all 0.18s ease;
  min-width: 90px;
  justify-content: center;
}
.step-prev:hover:not([disabled]), .step-next:hover:not([disabled]) {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--bone-2);
}
.step-prev[disabled] { opacity: 0.35; cursor: default; }
.step-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.step-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: var(--r-full);
  background: var(--line-2);
  transition: all 0.2s ease;
}
.step-dots .dot.active {
  width: 20px;
  background: var(--sun-400);
}

/* Journey CTA */
.journey-cta {
  text-align: center;
  padding: 8px 0 0;
}
.journey-cta p {
  margin-top: 10px;
  font-size: 13px;
  color: var(--mute);
}

/* ── Mini product widgets ─────────────────────────────────────────────────── */
.step-widget {
  background: var(--ink-0);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--sh-3);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Profile widget */
.jw-profile .jw-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.jw-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--grad-dark);
  color: var(--ink-0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.jw-meta { flex: 1; }
.jw-name { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.jw-role { font-size: 12px; color: var(--mute); }
.jw-ai-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--r-full);
  background: var(--sun-50);
  color: var(--sun-700);
  white-space: nowrap;
}
.jw-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.jw-skills span {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--bone-2);
  color: var(--slate-700);
  border: 1px solid var(--line);
}
.jw-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.jw-bar-label { font-size: 12px; color: var(--mute); flex-shrink: 0; }
.jw-bar-track {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--line);
}
.jw-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--sun-400), var(--coral));
}
.jw-bar-pct { font-size: 12px; font-weight: 600; color: var(--ink); flex-shrink: 0; }

/* Job feed widget */
.jw-feed { gap: 12px; }
.jw-feed-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--bone);
}
.jw-co-dot {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.jw-feed-info { flex: 1; min-width: 0; }
.jw-job-title { font-size: 13px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jw-company { font-size: 11px; color: var(--mute); }
.jw-match-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-full);
  background: var(--line);
  color: var(--slate-700);
  flex-shrink: 0;
}
.jw-match-pill.high { background: var(--success-bg); color: var(--success); }

/* Interview widget */
.jw-video-mock {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-0);
  font-size: 13px;
  font-weight: 500;
}
.jw-rec-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--r-full);
  background: var(--coral);
  flex-shrink: 0;
  animation: jw-blink 1.2s ease-in-out infinite;
}
@keyframes jw-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.jw-score-rows { display: flex; flex-direction: column; gap: 10px; }
.jw-score-row { display: flex; align-items: center; gap: 8px; }
.jw-score-row span:first-child { font-size: 12px; color: var(--mute); width: 100px; flex-shrink: 0; }
.jw-mini-track {
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: var(--line);
}
.jw-mini-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--sun-400), var(--coral));
}
.jw-mini-pct { font-size: 11px; font-weight: 600; color: var(--ink); width: 24px; text-align: right; }

/* Hired widget */
.jw-offer-banner {
  background: linear-gradient(135deg, var(--success-bg), #c8f7e4);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 8px;
}
.jw-star { color: var(--sun-500); }
.jw-sal-block { padding: 4px 0; }
.jw-sal-label { font-size: 11px; color: var(--mute); margin-bottom: 4px; }
.jw-sal-val { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.jw-sal-track {
  height: 6px;
  border-radius: 3px;
  background: var(--line);
}
.jw-sal-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--sun-400);
}
.jw-certs { display: flex; gap: 8px; flex-wrap: wrap; }
.jw-cert {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--bone-2);
  color: var(--slate-700);
  border: 1px solid var(--line);
}

/* Post job widget */
.jw-post { gap: 14px; }
.jw-post-top { display: flex; align-items: center; gap: 10px; }
.jw-post-title { font-size: 15px; font-weight: 700; color: var(--ink); flex: 1; }
.jw-post-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.jw-post-chips span {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--ink);
  color: var(--ink-0);
}
.jw-share-row { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.jw-share-ico {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-0);
}
.jw-share-ico.li { background: #0A66C2; }
.jw-share-ico.wa { background: #25D366; }
.jw-share-ico.em { background: var(--coral); }
.jw-share-text { font-size: 12px; color: var(--mute); }

/* Pipeline widget */
.jw-pipeline { justify-content: center; align-items: center; }
.jw-pipe-row { display: flex; align-items: center; gap: 20px; justify-content: center; }
.jw-pipe-box {
  background: var(--bone-2);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 20px 28px;
  text-align: center;
  min-width: 100px;
}
.jw-pipe-box.accent {
  background: var(--ink);
  border-color: var(--ink);
}
.jw-pipe-box.accent .jw-pipe-num { color: var(--sun-400); }
.jw-pipe-box.accent .jw-pipe-lbl { color: rgba(255,255,255,.6); }
.jw-pipe-num { font-size: 28px; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.jw-pipe-lbl { font-size: 12px; color: var(--mute); }
.jw-pipe-arrow { font-size: 20px; color: var(--mute); }
.jw-pipe-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--mute);
  margin-top: auto;
}
.jw-ai-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: var(--success);
  animation: jw-blink 1.5s ease-in-out infinite;
}

/* Review widget */
.jw-review { gap: 10px; }
.jw-cand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--bone);
}
.jw-cand-row.top-pick {
  border-color: var(--sun-400);
  background: var(--sun-50);
}
.jw-cand-av {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: var(--grad-dark);
  color: var(--ink-0);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.jw-cand-meta { flex: 1; }
.jw-cand-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.jw-cand-score { font-size: 11px; color: var(--mute); }
.jw-top-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--sun-600);
  white-space: nowrap;
}

/* Hire widget */
.jw-hire { gap: 16px; }
.jw-offer-sent {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-0);
}
.jw-check-circle {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  background: var(--success);
  color: var(--ink-0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.jw-ob-list { display: flex; flex-direction: column; gap: 8px; }
.jw-ob-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--mute);
}
.jw-ob-row.done { color: var(--slate-700); }
.jw-ob-icon {
  width: 18px;
  height: 18px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}
.jw-ob-row.done .jw-ob-icon {
  background: var(--success);
  border-color: var(--success);
  color: var(--ink-0);
}

/* Responsive */
@media (max-width: 1024px) {
  .step-panel.active { grid-template-columns: 1fr; gap: 36px; }
  .step-widget { min-height: auto; }
}
@media (max-width: 768px) {
  .jt-toggle { max-width: 100%; }
  .jt-btn { font-size: 13px; padding: 9px 14px; gap: 5px; }
  .stepper-step .step-lbl { display: none; }
  .step-badge { font-size: 22px; }
  .step-panel.active { padding: 32px 0 24px; }
}
@media (max-width: 480px) {
  .si-wrap { width: 42px; height: 42px; }
  .si-svg  { width: 34px; height: 42px; }
  .stepper-track { top: 21px; }
}

/* ─── Journey section — premium motion layer ────────────────────────────────  */

/* Widget: positioning context for absolutely placed decorative children */
.step-widget {
  position: relative;
  transition: box-shadow 0.3s ease;
}
.step-widget:hover {
  box-shadow: 0 28px 60px -12px rgba(14,20,36,.14), 0 4px 12px rgba(14,20,36,.06);
}

/* Ambient glow spot — sits behind all widget content */
.jw-glow-spot {
  position: absolute;
  width: 160px; height: 160px;
  top: -40px; right: -30px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(245,200,66,.13) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.jw-glow-spot--teal {
  background: radial-gradient(circle at center, rgba(58,188,177,.10) 0%, transparent 65%);
  right: auto; left: -30px;
}

/* Floating status pill — floats above top-right corner */
.jw-float-tag {
  position: absolute;
  top: -12px; right: 18px;
  background: var(--ink);
  color: var(--ink-0);
  font-size: 11px; font-weight: 600;
  padding: 4px 11px; border-radius: var(--r-full);
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 14px rgba(14,20,36,.22);
  animation: jw-float-drift 3s ease-in-out infinite;
  white-space: nowrap; z-index: 3;
}
@keyframes jw-float-drift {
  0%,100% { transform: translateY(0px);  }
  50%      { transform: translateY(-5px); }
}
.jw-float-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  animation: jw-blink 1.5s ease-in-out infinite;
}

/* ── Step 02: AI match-score orb with concentric rings ── */
.jw-orb-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative; width: 80px; height: 80px;
  margin: 0 auto 10px; flex-shrink: 0;
}
.jw-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(245,200,66,.35);
  animation: jw-ring-breathe 3s ease-in-out infinite;
}
.jw-ring.r2 { inset: 14%; border-color: rgba(240,99,58,.28); animation-delay: .65s; }
.jw-ring.r3 { inset: 28%; border-color: rgba(196,42,107,.22); animation-delay: 1.3s; }
@keyframes jw-ring-breathe {
  0%,100% { opacity: .45; transform: scale(1);    }
  50%      { opacity: 1;   transform: scale(1.07); }
}
.jw-orb-core {
  width: 36px; height: 36px; border-radius: 50%;
  background: conic-gradient(from 0deg,
    var(--sun-400) 0%,
    var(--coral) 35%,
    var(--magenta) 70%,
    var(--sun-400) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 0 14px rgba(245,200,66,.45);
  position: relative; z-index: 1;
}
.jw-orb-num { font-size: 12px; font-weight: 800; color: var(--ink); line-height: 1; }
.jw-orb-sub { font-size: 8px;  font-weight: 700; color: var(--ink); opacity: .7; white-space: nowrap; }

/* ── Step 03: achievement pills (interview result badges) ── */
.jw-achieve-row {
  display: flex; gap: 8px; justify-content: flex-end; margin-bottom: 8px;
}
.jw-achieve-pill {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: var(--r-full);
  background: var(--ink); color: var(--sun-400);
  box-shadow: 0 2px 8px rgba(14,20,36,.16);
  animation: jw-float-drift 3.5s ease-in-out infinite;
  animation-delay: var(--jw-delay, 0s);
}

/* ── Step 04 (both journeys): pipeline path with animated nodes ── */
.jw-path-nodes {
  display: flex; align-items: flex-start;
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--line);
}
.jw-path-node {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 5px; position: relative;
}
/* Connector line drawn between every pair of nodes */
.jw-path-node + .jw-path-node::before {
  content: '';
  position: absolute;
  top: 12px; left: -50%; right: 50%;
  height: 2px; background: var(--line-2);
  z-index: 0; transition: background 0.4s ease;
}
.jw-path-node.done + .jw-path-node::before          { background: var(--ink); }
.jw-path-node.done + .jw-path-node.done::before     { background: var(--ink); }
.jw-path-node.done + .jw-path-node.active::before   { background: var(--sun-400); }
.jw-node-dot {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--line-2); background: var(--bone);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--mute);
  position: relative; z-index: 1; transition: all 0.3s ease;
}
.jw-path-node.done   .jw-node-dot { background: var(--ink); border-color: var(--ink); color: var(--ink-0); }
.jw-path-node.active .jw-node-dot {
  background: var(--sun-400); border-color: var(--sun-400); color: var(--ink); font-size: 12px;
  animation: jw-node-pulse 1.8s ease-in-out infinite;
}
@keyframes jw-node-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(245,200,66,.2);  }
  50%      { box-shadow: 0 0 0 8px rgba(245,200,66,.07); }
}
.jw-node-lbl { font-size: 9px; font-weight: 500; color: var(--mute); text-align: center; }
.jw-path-node.done   .jw-node-lbl,
.jw-path-node.active .jw-node-lbl { color: var(--slate-700); }

/* ── Employers Step 02: AI processing grid ── */
.jw-ai-grid {
  display: grid; grid-template-columns: repeat(9, 1fr); gap: 3px;
  margin-bottom: 14px;
}
.jw-ai-grid-dot {
  width: 100%; aspect-ratio: 1; border-radius: 2px;
  background: var(--line);
  animation: jw-grid-blink var(--jw-dur, 2s) ease-in-out infinite;
  animation-delay: var(--jw-d, 0s);
}
.jw-ai-grid-dot.lit { background: var(--sun-400); opacity: 1 !important; }
@keyframes jw-grid-blink {
  0%,75%,100% { opacity: .18; }
  37%          { opacity: 1;   }
}

/* Active step icon: subtle glow pulse */
.stepper-step.active .si-wrap {
  animation: jw-step-glow 2.5s ease-in-out infinite;
}
@keyframes jw-step-glow {
  0%,100% { filter: drop-shadow(0 0 0px rgba(245,200,66,.0));   }
  50%      { filter: drop-shadow(0 0 8px rgba(245,200,66,.45)); }
}

/* Magnetic CTA */
.jw-magnetic {
  display: inline-flex;
  transition: transform 0.2s cubic-bezier(0.23,1,0.32,1);
}
.jw-magnetic:active { transform: scale(0.96) !important; }

/* Mobile: swipe hint pulse on dots */
@media (max-width: 768px) {
  .step-dots .dot.active { animation: jw-dot-hint 3s ease-in-out 1.5s 1; }
  @keyframes jw-dot-hint {
    0%,100% { width: 20px; }
    50% { width: 28px; }
  }
}

/* ── Reduced motion: strip all custom animations ── */
@media (prefers-reduced-motion: reduce) {
  .jw-float-tag,
  .jw-achieve-pill,
  .jw-float-dot,
  .jw-rec-dot,
  .jw-ai-dot,
  .jw-ring,
  .jw-path-node.active .jw-node-dot,
  .stepper-step.active .si-wrap,
  .jw-ai-grid-dot,
  .step-dots .dot.active { animation: none !important; }

  .jw-float-tag    { transform: translateY(0) !important; }
  .jw-achieve-pill { transform: translateY(0) !important; }
  .stepper-fill    { transition: none !important; }
  .step-widget,
  .jw-magnetic     { transition: box-shadow 0s !important; transform: none !important; }
}

/* ── Step 05 (seekers): career-path & skills-gap widget ── */
.jw-career-track {
  display: flex; align-items: center; gap: 0; margin-bottom: 14px;
}
.jw-career-node { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.jw-career-dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.jw-career-dot.now  { background: var(--ink); color: var(--ink-0); }
.jw-career-dot.next {
  background: var(--sun-50);
  border: 2px dashed var(--sun-500);
  color: var(--sun-600);
  animation: jw-node-pulse 2s ease-in-out infinite;
}
.jw-career-role { font-size: 10px; font-weight: 600; color: var(--slate-700); text-align: center; max-width: 72px; line-height: 1.3; }
.jw-career-line {
  flex: 1; height: 2px; background: var(--line-2);
  position: relative; margin: 0 6px; margin-bottom: 16px;
}
.jw-career-line-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--sun-400), var(--coral));
  border-radius: 1px; width: 0;
  animation: jw-career-draw 1.6s cubic-bezier(0.4,0,0.2,1) 0.4s forwards;
}
@keyframes jw-career-draw { to { width: 100%; } }

.jw-gap-rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.jw-gap-row  { display: flex; align-items: center; gap: 8px; }
.jw-gap-lbl  { font-size: 11px; color: var(--mute); width: 104px; flex-shrink: 0; }
.jw-gap-bar  {
  flex: 1; height: 6px; border-radius: 3px;
  background: var(--line); position: relative; overflow: hidden;
}
.jw-gap-have {
  position: absolute; left: 0; top: 0; bottom: 0;
  border-radius: 3px; background: var(--sun-400);
  transition: width 0.9s cubic-bezier(0.4,0,0.2,1) 0.6s;
}
.jw-rec-courses { display: flex; flex-wrap: wrap; gap: 6px; }
.jw-course-pill {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: var(--r-full);
  background: var(--bone-2); color: var(--slate-700);
  border: 1px solid var(--line);
}

/* ── Step 05 (employers): proactive outreach widget ── */
.jw-match-profiles { display: flex; flex-direction: column; gap: 8px; }
.jw-match-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--r-md);
  border: 1px solid var(--line); background: var(--bone);
  transition: border-color 0.2s ease;
}
.jw-match-row:first-child { border-color: var(--sun-400); background: var(--sun-50); }
.jw-contact-btn {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: var(--r-full);
  background: var(--ink); color: var(--ink-0);
  border: none; cursor: default; white-space: nowrap;
  flex-shrink: 0;
}
.jw-match-row:not(:first-child) .jw-contact-btn {
  background: var(--bone-2); color: var(--slate-500); border: 1px solid var(--line-2);
}
.jw-consent-badge {
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 11px; font-weight: 600;
  color: var(--success); display: flex; align-items: center; gap: 6px;
}
.jw-consent-badge span {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--success); color: var(--ink-0);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; flex-shrink: 0;
}

/* ─── Post Hero: Neural Constellation ───────────────────────────────────────
   Full-width Three.js canvas header for single blog posts.
   Canvas fills the banner; text sits in a z-index layer above.            */
.post-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #030c1c;
}
#post-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
}
/* Gradient vignette ensures text is always readable */
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3,12,28,.10)  0%,
    rgba(3,12,28,.18) 35%,
    rgba(3,12,28,.68) 72%,
    rgba(3,12,28,.90) 100%
  );
  pointer-events: none;
}
.post-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 60px;
  width: 100%;
}
/* ── Meta row ── */
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  animation: ph-up .55s ease-out .25s both;
}
.post-cat-link {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--hiup-yellow);
  text-decoration: none;
  transition: opacity .2s;
}
.post-cat-link:hover { opacity: .75; }
.post-meta-sep { color: rgba(255,255,255,.28); font-size: 14px; }
.post-meta-time { font-size: 13px; color: rgba(255,255,255,.48); }
/* ── Title ── */
.post-hero-title {
  color: #fff;
  font-size: clamp(26px, 4.2vw, 54px);
  line-height: 1.14;
  letter-spacing: -1px;
  margin-bottom: 28px;
  animation: ph-up .75s ease-out .42s both;
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
/* ── Author row ── */
.post-hero-author {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: ph-up .55s ease-out .64s both;
}
.post-author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--hiup-yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-heading);
  font-weight: 800; font-size: 15px;
  color: var(--hiup-charcoal);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(245,200,66,.35);
}
.post-author-name {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,.9);
}
.post-author-date {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
/* ── Entrance animation ── */
@keyframes ph-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ── Responsive ── */
@media (max-width: 768px) {
  .post-hero          { min-height: 440px; }
  .post-hero-inner    { padding-top: 100px; padding-bottom: 44px; }
  .post-hero-title    { letter-spacing: -.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .post-hero-meta,
  .post-hero-title,
  .post-hero-author   { animation: none; }
  #post-hero-canvas   { display: none; }
  .post-hero          { background: var(--hiup-charcoal); }
}

/* ─── Audience Outcomes Section (replaces testimonials) ─────────────────────
   Dark-background 3-card grid explaining Hiup's value for each audience.     */
.ao-section {
  position: relative;
  background: linear-gradient(160deg, #070f1f 0%, #0a1428 52%, #05090f 100%);
  overflow: hidden;
}
.ao-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 55% at 15% 50%, rgba(245,200,66,.055) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 85% 30%, rgba(58,188,177,.055) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 50% 85%, rgba(58,108,248,.04) 0%, transparent 55%);
  pointer-events: none;
}
.ao-section .section-header { position: relative; z-index: 1; }
.ao-eyebrow {
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #3ABCB1;
  margin-bottom: 16px;
}
.ao-heading {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.ao-subtext {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Grid ── */
.ao-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
  margin-bottom: 48px;
}

/* ── Cards ── */
.ao-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  overflow: hidden;
}
.ao-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.ao-card--rec::after { background: radial-gradient(ellipse 80% 70% at 85% 5%, rgba(245,200,66,.13) 0%, transparent 65%); }
.ao-card--co::after  { background: radial-gradient(ellipse 80% 70% at 85% 5%, rgba(58,188,177,.13) 0%, transparent 65%); }
.ao-card--js::after  { background: radial-gradient(ellipse 80% 70% at 85% 5%, rgba(58,108,248,.13) 0%, transparent 65%); }
.ao-card:hover { transform: translateY(-7px); box-shadow: 0 28px 64px rgba(0,0,0,.55); }
.ao-card:hover::after { opacity: 1; }
.ao-card--rec:hover { border-color: rgba(245,200,66,.28); }
.ao-card--co:hover  { border-color: rgba(58,188,177,.28); }
.ao-card--js:hover  { border-color: rgba(58,108,248,.28); }

/* ── Card top row ── */
.ao-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}
.ao-widget { flex-shrink: 0; border-radius: 10px; overflow: hidden; }

/* ── Labels ── */
.ao-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
  white-space: nowrap;
  margin-top: 4px;
}
.ao-label--yellow { background: rgba(245,200,66,.14); color: #F5C842; border: 1px solid rgba(245,200,66,.32); }
.ao-label--teal   { background: rgba(58,188,177,.12); color: #3ABCB1; border: 1px solid rgba(58,188,177,.32); }
.ao-label--indigo { background: rgba(58,108,248,.12); color: #7B9FFA; border: 1px solid rgba(58,108,248,.32); }

/* ── Card content ── */
.ao-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}
.ao-card-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
  margin-bottom: 22px;
}

/* ── Outcome list ── */
.ao-outcomes {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.ao-outcomes li {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  padding-left: 24px;
  position: relative;
}
.ao-outcomes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(58,188,177,.18);
  border: 1.5px solid rgba(58,188,177,.45);
}
.ao-outcomes li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 8.5px;
  width: 7px;
  height: 4.5px;
  border-left: 1.5px solid #3ABCB1;
  border-bottom: 1.5px solid #3ABCB1;
  transform: rotate(-45deg);
}
.ao-card--rec .ao-outcomes li::before { background: rgba(245,200,66,.14); border-color: rgba(245,200,66,.42); }
.ao-card--rec .ao-outcomes li::after  { border-color: #F5C842; }
.ao-card--js  .ao-outcomes li::before { background: rgba(58,108,248,.14); border-color: rgba(58,108,248,.42); }
.ao-card--js  .ao-outcomes li::after  { border-color: #7B9FFA; }

/* ── Microcopy ── */
.ao-microcopy {
  font-size: 12px;
  color: rgba(255,255,255,.32);
  font-style: italic;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ── Value chips ── */
.ao-chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.ao-chip {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 6px 16px;
  background: rgba(255,255,255,.04);
  transition: color .2s, border-color .2s, background .2s;
}
.ao-chip:hover { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.07); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ao-grid { grid-template-columns: 1fr 1fr; }
  .ao-card--js { grid-column: 1 / -1; max-width: 520px; justify-self: center; }
}
@media (max-width: 640px) {
  .ao-grid { grid-template-columns: 1fr; }
  .ao-card--js { grid-column: auto; max-width: none; }
  .ao-widget { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ao-card { transition: none; }
  .ao-card::after { transition: none; }
}

/* ─── Why Hiup Matters (visual-first, light background) ──────────────────── */
.whm-section {
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
.whm-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 25%, rgba(245,200,66,.06) 0%, transparent 48%),
    radial-gradient(circle at 88% 78%, rgba(196,42,107,.04) 0%, transparent 48%),
    radial-gradient(circle at 50% 50%, rgba(58,188,177,.03) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.whm-section .container { position: relative; z-index: 1; }

.whm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.whm-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 28px 28px;
  box-shadow: 0 8px 32px rgba(60,75,92,.08);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.whm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(60,75,92,.13);
}

.whm-visual {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 24px;
}
.whm-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.whm-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.whm-card p {
  font-size: 15px;
  color: var(--slate-500);
  line-height: 1.6;
}

.whm-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.whm-stat {
  text-align: center;
}
.whm-stat-val {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.whm-stat-lbl {
  font-size: 13px;
  color: var(--slate-500);
  letter-spacing: 0.3px;
}

@media (max-width: 1024px) {
  .whm-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .whm-grid .whm-card:last-child { grid-column: 1 / -1; max-width: 400px; justify-self: center; }
  .whm-stats { gap: 32px; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .whm-grid { grid-template-columns: 1fr; gap: 20px; }
  .whm-grid .whm-card:last-child { grid-column: auto; max-width: none; }
  .whm-stats { gap: 24px; }
  .whm-stat-val { font-size: 28px; }
}
@media (max-width: 390px) {
  .whm-card { padding: 28px 20px 22px; }
  .whm-stats { flex-direction: column; gap: 20px; align-items: center; }
}

/* ─── Pricing section (matches features-wrap gradient) ────────────────────── */
.pricing-section {
  position: relative;
  overflow: hidden;
  background: #050D1A;
}

/* ─── Section Background Sweep (replaces Three.js canvases) ───────────────── */
.section-bg-sweep {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 75% 15%, rgba(245,200,66,.10) 0%, transparent 52%),
    radial-gradient(ellipse at 20% 85%, rgba(30,58,138,.35) 0%, transparent 48%),
    linear-gradient(135deg, #0E1424 0%, #1A2236 55%, #0F1E3C 100%);
  z-index: 0;
}
.section-bg-sweep__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(245,200,66,.055) 48%,
    rgba(245,200,66,.03) 55%,
    transparent 100%);
  transform: translateX(-120%);
  animation: section-sweep-anim 5.5s ease-in-out infinite;
}
@keyframes section-sweep-anim {
  0%   { transform: translateX(-120%); }
  65%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
@media (prefers-reduced-motion: reduce) {
  .section-bg-sweep__shimmer { animation: none; transform: none; opacity: .5; }
}

/* ─── Career Orbit — Jobseeker Hero Immersive Background ─────────────────── */
.career-orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  perspective: 1200px;
}

.career-orbit__halo {
  position: absolute;
  top: 50%; left: 55%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(245,200,66,.06) 0%,
    rgba(245,200,66,.02) 40%,
    transparent 70%
  );
  border: 1px solid rgba(245,200,66,.04);
}

.career-orbit__ring {
  position: absolute;
  top: 50%; left: 55%;
  pointer-events: none;
  transform-style: preserve-3d;
}

.career-orbit__ring--1 {
  width: 800px; height: 800px;
  margin-top: -400px; margin-left: -400px;
  animation: co-ring-cw-1 45s linear infinite;
}
.career-orbit__ring--2 {
  width: 680px; height: 680px;
  margin-top: -340px; margin-left: -340px;
  animation: co-ring-ccw 55s linear infinite;
}
.career-orbit__ring--3 {
  width: 520px; height: 520px;
  margin-top: -260px; margin-left: -260px;
  animation: co-ring-cw-3 38s linear infinite;
}

@keyframes co-ring-cw-1 {
  from { transform: rotateX(62deg) rotateZ(0deg); }
  to   { transform: rotateX(62deg) rotateZ(360deg); }
}
@keyframes co-ring-ccw {
  from { transform: rotateX(55deg) rotateZ(25deg); }
  to   { transform: rotateX(55deg) rotateZ(-335deg); }
}
@keyframes co-ring-cw-3 {
  from { transform: rotateX(68deg) rotateZ(-10deg); }
  to   { transform: rotateX(68deg) rotateZ(350deg); }
}

.career-orbit__dot {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  opacity: 0;
  animation: co-dot 14s ease-in-out infinite;
}
.career-orbit__dot--1, .career-orbit__dot--4, .career-orbit__dot--7, .career-orbit__dot--10 {
  background: #F5C842;
  box-shadow: 0 0 8px rgba(245,200,66,.6);
}
.career-orbit__dot--2, .career-orbit__dot--5, .career-orbit__dot--8, .career-orbit__dot--11 {
  background: #3ABCB1;
  box-shadow: 0 0 8px rgba(58,188,177,.6);
}
.career-orbit__dot--3, .career-orbit__dot--6, .career-orbit__dot--9, .career-orbit__dot--12 {
  background: #818CF8;
  box-shadow: 0 0 8px rgba(129,140,248,.5);
}
.career-orbit__dot--1  { top: 16%; left: 20%; animation-delay: 0s; animation-duration: 13s; }
.career-orbit__dot--2  { top: 28%; left: 62%; animation-delay: -1.8s; animation-duration: 15s; }
.career-orbit__dot--3  { top: 52%; left: 10%; animation-delay: -3.2s; animation-duration: 12s; }
.career-orbit__dot--4  { top: 74%; left: 44%; animation-delay: -4.5s; animation-duration: 14s; }
.career-orbit__dot--5  { top: 12%; left: 78%; animation-delay: -5.8s; animation-duration: 16s; }
.career-orbit__dot--6  { top: 82%; left: 68%; animation-delay: -7s; animation-duration: 13s; }
.career-orbit__dot--7  { top: 38%; left: 32%; animation-delay: -8s; animation-duration: 15s; }
.career-orbit__dot--8  { top: 58%; left: 85%; animation-delay: -9.2s; animation-duration: 12s; }
.career-orbit__dot--9  { top: 22%; left: 46%; animation-delay: -10s; animation-duration: 14s; }
.career-orbit__dot--10 { top: 76%; left: 22%; animation-delay: -11s; animation-duration: 16s; }
.career-orbit__dot--11 { top: 44%; left: 92%; animation-delay: -12s; animation-duration: 13s; }
.career-orbit__dot--12 { top: 66%; left: 54%; animation-delay: -13s; animation-duration: 15s; }

@keyframes co-dot {
  0%, 100% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  12%      { opacity: 0.7; }
  50%      { opacity: 1; transform: translate(24px, -18px) scale(1.1); }
  88%      { opacity: 0.7; }
}


@media (prefers-reduced-motion: reduce) {
  .career-orbit__ring--1,
  .career-orbit__ring--2,
  .career-orbit__ring--3 { animation: none; transform: rotateX(60deg); }
  .career-orbit__dot { animation: none; opacity: 0.4; }
}
@media (max-width: 1100px) {
  .career-orbit__ring--1 { width: 620px; height: 620px; margin-top: -310px; margin-left: -310px; }
  .career-orbit__ring--2 { width: 520px; height: 520px; margin-top: -260px; margin-left: -260px; }
  .career-orbit__ring--3 { width: 400px; height: 400px; margin-top: -200px; margin-left: -200px; }
  .career-orbit__halo { width: 460px; height: 460px; }
}
@media (max-width: 600px) {
  .career-orbit__ring--1 { width: 420px; height: 420px; margin-top: -210px; margin-left: -210px; }
  .career-orbit__ring--2 { width: 360px; height: 360px; margin-top: -180px; margin-left: -180px; }
  .career-orbit__ring--3 { width: 280px; height: 280px; margin-top: -140px; margin-left: -140px; }
  .career-orbit__halo { width: 300px; height: 300px; }
}


.section-gradient-mesh { position: relative; overflow: hidden; }
.section-gradient-mesh > .container { position: relative; z-index: 1; }

/* ─── Small mobile (Galaxy S24, iPhone SE — 360px) ───────────────────────── */
@media (max-width: 390px) {
  .container { padding: 0 16px; }
  h1 { font-size: 32px; letter-spacing: -1px; }
  h2 { font-size: 26px; letter-spacing: -0.5px; }
  h3 { font-size: 20px; }
  .hero-content { padding: 100px 0 60px; }
  .hero-headline { font-size: 34px; }
  .hero-headline .cycling-word { min-width: 120px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn { justify-content: center; }
  .hero-app-badges { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-item .stat-value { font-size: 24px; }
  .stat-item .stat-label { font-size: 12px; }
  .section-lg { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 24px; }
  .section-header p:not(.eyebrow) { font-size: 15px; }
  .btn { font-size: 14px; height: 40px; padding: 0 18px; }
  .btn-lg { height: 46px; padding: 0 28px; font-size: 15px; }
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { padding: 22px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card { padding: 28px 22px; }
  .pricing-card.popular { transform: none; }
  .ai-showcase { gap: 40px; }
  .ai-stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .ao-grid { grid-template-columns: 1fr; gap: 16px; }
  .ao-card { padding: 22px; }
  .ao-card-title { font-size: 19px; }
  .ao-widget { display: none; }
  .demo-cards { grid-template-columns: 1fr; }
  .js-app-grid { grid-template-columns: 1fr; gap: 32px; }
  .js-visual { height: 320px; order: -1; }
  .js-phone-frame { width: 160px; height: 320px; border-radius: 30px; }
  .js-widget { padding: 8px 10px; min-width: 110px; font-size: 11px; }
  .js-content h2 { font-size: 26px; }
  .dual-split, .aud-cards { grid-template-columns: 1fr; }
  .split-panel, .aud-card { padding: 40px 20px; }
  .tabs-nav { width: 100%; }
  .tab-btn { padding: 10px 18px; font-size: 13px; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .step-card { padding: 24px 16px; }
  .step-number { font-size: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .blog-card-body { padding: 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 16px; }
  .nav-logo .hiup-badge { font-size: 13px; width: 34px; height: 34px; }
  .mobile-nav-overlay a { font-size: 16px; padding: 8px 20px; }
  .mobile-close { top: 16px; right: 16px; }
  .jt-toggle { max-width: 100%; }
  .jt-btn { font-size: 12px; padding: 8px 10px; gap: 4px; white-space: normal; text-align: center; line-height: 1.3; }
  .jt-btn svg { width: 14px; height: 14px; }
}

/* ─── GSAP animation classes ─────────────────────────────────────────────────
   No opacity/transform pre-set here. gsap.from() reads the current CSS state
   as the "to" target — pre-setting opacity:0 would make it animate 0→0 and
   leave elements permanently invisible. animations.js uses fromTo() instead,
   which explicitly declares both start and end regardless of CSS. */
