/* VirtuHire US, dark mode + vibrant purple, modeled on the ad creative reference */

:root {
  --bg-deep: #0A0C16;
  --bg: #0E1120;
  --bg-card: #161A2D;
  --bg-card-hover: #1B2038;
  --bg-elev: #1F2540;
  --border: rgba(167, 139, 250, 0.12);
  --border-strong: rgba(167, 139, 250, 0.22);
  --border-soft: rgba(255, 255, 255, 0.06);

  --purple: #8B5CF6;
  --purple-bright: #A78BFA;
  --purple-deep: #6D28D9;
  --purple-soft: rgba(139, 92, 246, 0.12);
  --purple-tint: rgba(167, 139, 250, 0.08);

  --text: #FFFFFF;
  --text-soft: #E5E7EB;
  --text-muted: #9CA3AF;
  --text-faint: #6B7280;

  --shadow-purple: 0 10px 40px rgba(139, 92, 246, 0.35);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg-deep); }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* TYPOGRAPHY */
h1, h2, h3, h4 { color: var(--text); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw + 0.5rem, 4.25rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); }

.text-gradient {
  background: linear-gradient(135deg, var(--purple-bright) 0%, var(--purple) 60%, var(--purple-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  color: var(--text-muted);
}
.eyebrow-purple { color: var(--purple-bright); }
.eyebrow-muted { color: var(--text-faint); }

.lede { font-size: 18px; color: var(--text-muted); margin-bottom: 28px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-family: inherit;
  min-height: 46px;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  color: white;
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(139, 92, 246, 0.5);
  filter: brightness(1.1);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.25); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; min-height: 38px; }
.btn-lg { padding: 16px 32px; font-size: 15.5px; min-height: 54px; }
.chev {
  display: inline-block;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
}

/* CIRCLE CHECK */
.circle-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple-bright);
  border: 1px solid var(--border-strong);
  flex-shrink: 0;
}
.circle-check svg { width: 13px; height: 13px; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(14, 17, 32, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.brand-mark svg { width: 28px; height: 28px; }
.brand-us {
  background: var(--purple-soft);
  color: var(--purple-bright);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-left: 4px;
  border: 1px solid var(--border-strong);
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  flex: 1;
  justify-content: center;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { flex-shrink: 0; }

/* HERO */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.45) 0%, transparent 70%);
}
.hero-glow-2 {
  bottom: -200px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.35) 0%, transparent 70%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 { margin-bottom: 24px; }
.hero-sub {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero-checks-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin-bottom: 36px;
}
.hero-checks-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-soft);
  font-weight: 500;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orb {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--purple-bright), var(--purple) 50%, var(--purple-deep) 100%);
  box-shadow: 0 0 100px rgba(139, 92, 246, 0.5);
  z-index: 1;
}
.hero-portrait {
  position: relative;
  width: 380px;
  height: 380px;
  z-index: 2;
}
.portrait-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #FCD7C2 0%, #E8B399 28%, transparent 30%),
    radial-gradient(ellipse at 50% 80%, #1E293B 0%, #1E293B 50%, transparent 60%),
    linear-gradient(135deg, rgba(167, 139, 250, 0.3) 0%, rgba(109, 40, 217, 0.4) 100%);
  overflow: hidden;
}
.portrait-mask {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(167, 139, 250, 0.35);
  background:
    repeating-linear-gradient(135deg, rgba(167, 139, 250, 0.04) 0, rgba(167, 139, 250, 0.04) 2px, transparent 2px, transparent 16px);
}
.badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(22, 26, 45, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  z-index: 3;
  box-shadow: var(--shadow-deep);
}
.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
}
.badge-icon svg { width: 12px; height: 12px; }
.badge-1 { top: 60px; right: -20px; }
.badge-2 { top: 240px; right: -40px; }
.badge-3 { bottom: 80px; left: -20px; }

/* PERFECT FOR */
.perfect-for {
  background: var(--bg-deep);
  padding: 32px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.perfect-for-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.perfect-for-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.perfect-for-list {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.pf-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-soft);
  font-weight: 500;
}
.pf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--purple-soft);
  color: var(--purple-bright);
  border: 1px solid var(--border);
}
.pf-icon svg { width: 16px; height: 16px; }

/* TRUST STRIP */
.trust-strip {
  background: var(--bg);
  padding: 56px 0;
}
.trust-eyebrow {
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  opacity: 0.7;
}
.trust-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-faint);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.trust-logo:hover { color: var(--text); }
.logo-accent { color: var(--purple-bright); }

/* SECTION HEAD */
.section-head { text-align: center; margin-bottom: 60px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head .eyebrow { display: block; }
.section-head h2 { margin-bottom: 16px; }
.section-sub {
  color: var(--text-muted);
  font-size: 17px;
}

/* VALUE PROP */
.value-prop { padding: 100px 0; background: var(--bg); position: relative; }
.value-prop-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.value-prop-text h2 { margin-bottom: 20px; }
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.55;
}
.value-prop-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.vp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all 0.3s;
}
.vp-card-hl {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(109, 40, 217, 0.08) 100%);
  border-color: var(--purple);
  box-shadow: var(--shadow-purple);
  transform: translateX(40px);
}
.vp-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 8px;
}
.vp-card-label-hl { color: var(--purple-bright); }
.vp-card-amount {
  font-size: 38px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.vp-card-amount-hl {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vp-card-per {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
  -webkit-text-fill-color: var(--text-muted);
}
.vp-card-role {
  font-size: 14px;
  color: var(--text-muted);
  margin: 4px 0 18px;
}
.vp-card-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}
.vp-card-bar-fill {
  height: 100%;
  background: var(--text-faint);
  border-radius: 4px;
}
.vp-card-bar-fill-hl { background: linear-gradient(90deg, var(--purple-bright), var(--purple)); }
.vp-card-savings {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--purple-bright), var(--purple));
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-purple);
}

/* PROBLEM / SOLUTION */
.problem-solution {
  padding: 100px 0;
  background: var(--bg-deep);
}
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.ps-side h2 { margin-bottom: 24px; font-size: clamp(1.5rem, 2.4vw + 0.5rem, 2rem); }
.ps-problem p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.ps-solution {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 24px;
}
.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.solution-list li strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 15.5px;
}
.solution-list li p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple-bright);
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid var(--border-strong);
}
.solution-icon svg { width: 13px; height: 13px; }

/* METRICS */
.metrics {
  padding: 80px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.metrics-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.metric-num {
  font-size: clamp(3rem, 6vw + 0.5rem, 4.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 12px;
}
.metric-plus {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.metric-label {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* BENEFITS */
.benefits { padding: 100px 0; background: var(--bg-deep); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.25s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--purple-soft);
  color: var(--purple-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--border-strong);
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.benefit-card p { color: var(--text-muted); font-size: 15.5px; line-height: 1.65; }

/* HOW IT WORKS */
.how { padding: 100px 0; background: var(--bg); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.25s;
}
.how-step:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  color: white;
  font-size: 20px;
  font-weight: 800;
  border-radius: 14px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-purple);
}
.how-step h3 { margin-bottom: 8px; }
.how-step p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* ROLES */
.roles { padding: 100px 0; background: var(--bg-deep); }
.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.role-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  font-size: 15px;
  transition: all 0.2s;
}
.role-tile:hover {
  border-color: var(--purple);
  background: var(--purple-soft);
  color: var(--purple-bright);
  transform: translateY(-2px);
}

/* CASES */
.cases { padding: 100px 0; background: var(--bg); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: all 0.25s;
}
.case-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.case-savings-tag {
  display: inline-block;
  background: var(--purple-soft);
  color: var(--purple-bright);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  align-self: flex-start;
  border: 1px solid var(--border-strong);
}
.case-quote {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-soft);
  flex: 1;
}
.case-meta { padding-top: 16px; border-top: 1px solid var(--border-soft); }
.case-name { font-weight: 700; color: var(--text); font-size: 15px; }
.case-role { color: var(--text-muted); font-size: 14px; margin-top: 2px; }

/* PRICING */
.pricing { background: var(--bg-deep); padding: 100px 0; }
.pricing-inner { max-width: 760px; text-align: center; margin: 0 auto; }
.pricing-lede {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
}
.pricing-range {
  display: inline-block;
  padding: 36px 64px;
  background: var(--bg-card);
  border: 2px solid var(--purple);
  border-radius: var(--radius-xl);
  margin-bottom: 28px;
  box-shadow: var(--shadow-purple);
  background-image: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(109, 40, 217, 0.05) 100%);
}
.pricing-range-num {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--purple-bright), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-range-label {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  margin-top: 6px;
}
.pricing-detail {
  font-size: 15.5px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 16px;
}
.pricing-cta-line {
  font-size: 14px;
  color: var(--text-faint);
  font-weight: 500;
}

/* FAQ */
.faq { padding: 100px 0; background: var(--bg); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 30px;
  font-weight: 600;
  color: var(--text);
  font-size: 16.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.2s;
}
.faq-item summary:hover { background: rgba(255, 255, 255, 0.03); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--purple-bright);
  font-weight: 400;
  transition: transform 0.2s;
  margin-left: 16px;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 30px 26px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
}

/* FINAL CTA */
.final-cta {
  background: var(--bg-deep);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.final-cta-inner { position: relative; max-width: 760px; margin: 0 auto; }
.final-cta h2 { color: var(--text); margin-bottom: 20px; font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem); }
.final-cta p { color: var(--text-muted); font-size: 18px; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* LEAD FORM */
.lead-form { padding: 100px 0; background: var(--bg); }
.lead-form-inner { max-width: 720px; margin: 0 auto; }
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field-full { width: 100%; }
.form-field span { font-size: 14px; font-weight: 600; color: var(--text-soft); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  color: var(--text);
  transition: all 0.2s;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-faint); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}
.form .btn { align-self: flex-start; margin-top: 8px; }
.form-confirm-hint { font-size: 13px; color: var(--text-faint); margin-top: 4px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* FOOTER */
.site-footer { background: var(--bg-deep); color: var(--text-muted); padding-top: 72px; border-top: 1px solid var(--border-soft); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-col-brand { padding-right: 24px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}
.footer-brand .brand-mark svg { width: 28px; height: 28px; }
.footer-tag { font-size: 14.5px; line-height: 1.65; margin-bottom: 24px; color: var(--text-muted); }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--text-soft);
  transition: all 0.2s;
  border: 1px solid var(--border);
}
.footer-social:hover { background: var(--purple); color: white; border-color: var(--purple); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { color: var(--text); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col li a { color: var(--text-muted); font-size: 14.5px; }
.footer-col li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 24px 0;
  font-size: 13px;
  color: var(--text-faint);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; line-height: 1.55; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: left; }
  .hero-visual { height: 400px; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-orb { width: 320px; height: 320px; }
  .hero-portrait { width: 320px; height: 320px; }
  .nav-links { display: none; }
  .ps-grid { grid-template-columns: 1fr; gap: 40px; }
  .value-prop-inner { grid-template-columns: 1fr; gap: 56px; }
  .value-prop-visual { max-width: 440px; margin: 0 auto; width: 100%; }
  .vp-card-hl { transform: none; }
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cases-grid { grid-template-columns: 1fr; gap: 20px; }
  .roles-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col-brand { grid-column: 1 / -1; padding-right: 0; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header-inner { padding-top: 14px; padding-bottom: 14px; }
  .hero { padding: 56px 0 80px; }
  .hero-checks-list { grid-template-columns: 1fr; gap: 12px; }
  .hero-visual { height: 320px; }
  .hero-orb { width: 240px; height: 240px; }
  .hero-portrait { width: 240px; height: 240px; }
  .badge-1 { right: 0; top: 20px; }
  .badge-2 { right: -10px; top: 180px; }
  .badge-3 { left: 0; bottom: 30px; }
  .perfect-for-inner { gap: 16px; }
  .perfect-for-list { gap: 16px; }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .metrics { padding: 56px 0; }
  .metrics-grid { gap: 24px; }
  .ps-solution { padding: 28px 24px; }
  .value-prop, .problem-solution, .benefits, .how, .roles, .cases, .pricing, .faq, .final-cta, .lead-form { padding: 64px 0; }
  .pricing-range { padding: 28px 36px; }
  .case-card, .benefit-card, .how-step { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
  .trust-logos { gap: 32px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-visual { display: none; }
  .how-steps { grid-template-columns: 1fr; }
  .trust-logo { font-size: 18px; }
  .metrics-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Hero, shortlist card (replaces the abstract orb portrait)
   ========================================================= */
.shortlist-card {
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  background: linear-gradient(180deg, rgba(31, 37, 64, 0.92) 0%, rgba(22, 26, 45, 0.95) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  padding: 22px 22px 18px;
  backdrop-filter: blur(14px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(167, 139, 250, 0.06) inset,
    0 0 60px rgba(139, 92, 246, 0.18);
  transform: translateY(-4px);
}
.shortlist-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}
.shortlist-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple-bright);
}
.shortlist-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}
.shortlist-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.18);
  animation: vh-pulse 2.4s ease-in-out infinite;
}
@keyframes vh-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.06); }
}
.shortlist-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.shortlist-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px 10px;
  margin: 0 -10px;
  border-radius: 12px;
  transition: background 0.2s;
}
.shortlist-row + .shortlist-row { border-top: 1px solid var(--border-soft); }
.shortlist-row:hover { background: rgba(167, 139, 250, 0.06); }
.shortlist-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.shortlist-meta { min-width: 0; }
.shortlist-name {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.2;
}
.shortlist-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
}
.shortlist-tick svg { width: 9px; height: 9px; }
.shortlist-role {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shortlist-rate {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.shortlist-rate span { font-size: 11px; color: var(--text-muted); font-weight: 600; margin-left: 1px; }
.shortlist-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}
.shortlist-foot-stat {
  background: var(--purple-soft);
  color: var(--purple-bright);
  border: 1px solid var(--border-strong);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  letter-spacing: 0.02em;
}

/* Hero badges: float gently */
.badge {
  animation: vh-float 7s ease-in-out infinite;
}
.badge-1 { top: 24px; right: -28px; animation-delay: 0s; }
.badge-2 { top: 48%; right: -56px; animation-delay: -2.3s; }
.badge-3 { bottom: 60px; left: -32px; animation-delay: -4.6s; }
@keyframes vh-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .badge, .shortlist-dot { animation: none; }
}
@media (max-width: 1024px) {
  /* Below 1024px the hero stacks and the shortlist card takes the full
     visual column. The floating badges collided with the card's header,
     rate column, and footer, so hide them here. They reappear on desktop. */
  .hero-visual .badge,
  .hero .badge,
  .badge.badge-1,
  .badge.badge-2,
  .badge.badge-3 { display: none !important; }
}

/* Hero microproof line under CTAs */
.hero-microproof {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-faint);
  font-weight: 500;
}

/* =========================================================
   Subtle scroll-reveal
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
