*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0B3A82;
  --accent-blue: #2F80ED;
  --accent-green: #27AE60;
  --white: #FFFFFF;
  --bg: #FBFBFD;
  --light-gray: #F5F5F7;
  --text-secondary: #86868B;
  --text-primary: #1D1D1F;
  --gradient: linear-gradient(135deg, #2F80ED, #27AE60);
  --radius: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Grain overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ── Scroll progress ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--gradient);
  z-index: 200;
  width: 0%;
  transition: none;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* Solid bar only: backdrop-filter traps position:fixed descendants to this box (breaks full-screen mobile menu). */
  background: rgba(251, 251, 253, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  /* Use top (not transform) for hide: transform also traps fixed descendants. */
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}

nav.hidden {
  top: -64px;
}

.nav-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand img {
  height: 32px;
  width: auto;
}

.nav-brand span {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  color: var(--accent-blue) !important;
  font-weight: 500 !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text-primary);
  margin: 4px 0;
  border-radius: 1px;
}

/* ── Reveal system ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

.reveal-delay-4 {
  transition-delay: 0.48s;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.hero-glow-1 {
  top: -200px;
  right: -100px;
  background: rgba(47, 128, 237, 0.15);
}

.hero-glow-2 {
  bottom: -250px;
  left: -150px;
  background: rgba(39, 174, 96, 0.12);
  animation-delay: -10s;
  animation-direction: reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -40px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  75% {
    transform: translate(40px, 30px) scale(1.02);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  background: var(--light-gray);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero h1 .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.25;
  margin-bottom: -0.15em;
  /* Side padding: tight letter-spacing + overflow:hidden clips glyph overshoots (e.g. “e” in Hire). */
  padding: 0 0.02em;
}

.hero h1 .word-inner {
  display: inline-block;
  transform: translateY(120%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero h1 .word-inner.visible {
  transform: translateY(0);
}

.hero h1 .word:nth-child(1) .word-inner {
  transition-delay: 0.1s;
}

.hero h1 .word:nth-child(2) .word-inner {
  transition-delay: 0.18s;
}

.hero h1 .word:nth-child(3) .word-inner {
  transition-delay: 0.26s;
}

.hero h1 .word:nth-child(4) .word-inner {
  transition-delay: 0.34s;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.55;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 30px;
  background: var(--accent-blue);
  color: var(--white);
  border: none;
  border-radius: 980px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(47, 128, 237, 0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-blue);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-text:hover {
  gap: 10px;
}

.btn-text svg {
  width: 16px;
  height: 16px;
}

/* ── Sections ── */
section {
  padding: 120px 0;
}

.section-eyebrow {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-blue);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.55;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ── How It Works ── */
.how-it-works {
  background: var(--white);
}

.steps-slider {
  position: relative;
  overflow: hidden;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: calc((100% + 20px) * 4 / 3 - 20px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: grab;
}

.steps-grid.dragging {
  cursor: grabbing;
  transition: none;
}

.steps-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.steps-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: var(--white);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

.steps-arrow:hover:not(:disabled) {
  background: var(--light-gray);
  border-color: rgba(0, 0, 0, 0.18);
  transform: scale(1.08);
}

.steps-arrow:active:not(:disabled) {
  transform: scale(0.95);
}

.steps-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.steps-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.steps-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-secondary);
  opacity: 0.2;
  transition: opacity 0.3s, transform 0.3s, width 0.3s;
}

.steps-dot.active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
  background: var(--gradient);
}

.step-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 48px 36px 44px;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.5s;
}

.step-card:hover {
  transform: translateY(-6px);
  background: var(--white);
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── Agents ── */
.agents {
  background: var(--bg);
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.agent-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px 28px;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.agent-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.agent-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.agent-icon svg {
  width: 100%;
  height: 100%;
  stroke: url(#icon-gradient);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.agent-card:hover .agent-icon {
  transform: scale(1.15) translateY(-4px);
}

.agent-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.agent-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Benefits ── */
.benefits {
  background: var(--white);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits-text .section-title {
  text-align: left;
}

.benefits-text .section-desc {
  text-align: left;
  margin-bottom: 40px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.benefit-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--gradient);
  margin-top: 7px;
  transition: transform 0.3s;
}

.benefit-item:hover .benefit-dot {
  transform: scale(1.5);
}

.benefit-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.benefits-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 36px 32px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
  transform: scale(1.03);
}

.stat-card .number {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  display: inline-block;
  background: linear-gradient(135deg, #2F80ED, #27AE60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.stat-card .label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ── Marquee ── */
.marquee-section {
  padding: 64px 0;
  background: var(--light-gray);
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.marquee-track--forward {
  animation: marqueeForward 40s linear infinite;
}

.marquee-track--reverse {
  animation: marqueeReverse 40s linear infinite;
}

.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 980px;
  background: var(--white);
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s;
}

.marquee-item:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.marquee-item .mi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}

.marquee-item:hover .mi-dot {
  opacity: 1;
  transform: scale(1.4);
}

.marquee-item--accent {
  background: var(--gradient);
  color: var(--white);
}

.marquee-item--accent .mi-dot {
  background: var(--white);
  opacity: 0.5;
}

.marquee-item--accent:hover .mi-dot {
  opacity: 0.9;
}

@keyframes marqueeForward {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* ── CTA ── */
.cta-section {
  padding: 120px 0;
  background: var(--bg);
}

.cta-inner {
  text-align: center;
  padding: 120px 24px;
  background: var(--text-primary);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: ctaFloat 15s ease-in-out infinite;
}

.cta-glow-1 {
  top: -150px;
  right: -100px;
  background: rgba(47, 128, 237, 0.2);
}

.cta-glow-2 {
  bottom: -150px;
  left: -100px;
  background: rgba(39, 174, 96, 0.15);
  animation-delay: -7s;
}

@keyframes ctaFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(40px, -30px);
  }
}

.cta-inner>*:not(.cta-glow) {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 420px;
  margin: 0 auto 40px;
  line-height: 1.55;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 30px;
  background: var(--white);
  color: var(--text-primary);
  border: none;
  border-radius: 980px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}

.btn-white:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
}

.btn-white:active {
  transform: translateY(0) scale(0.98);
}

.btn-white svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-white:hover svg {
  transform: translateX(4px);
}

/* ── Footer ── */
footer {
  padding: 20px 0;
  background: var(--bg);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand img {
  height: 20px;
}

.footer-brand span {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* ── Legal pages ── */
.legal-main {
  padding: 100px 0 80px;
  background: var(--bg);
  min-height: 65vh;
}

.legal-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-inner h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.legal-inner h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 12px;
  letter-spacing: -0.02em;
}

.legal-inner p,
.legal-inner li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 12px;
}

.legal-inner ul {
  padding-left: 1.25em;
  margin-bottom: 16px;
}

.legal-inner li {
  margin-bottom: 8px;
}

.legal-inner a {
  color: var(--accent-blue);
  text-decoration: none;
}

.legal-inner a:hover {
  text-decoration: underline;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-blue);
  text-decoration: none;
  margin-bottom: 28px;
}

.legal-back:hover {
  text-decoration: underline;
}

/* ── Cursor glow ── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
}

.cursor-glow.active {
  opacity: 1;
}

/* ── Page load ── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.page-loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  height: 48px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    width: auto;
    transform: none !important;
    cursor: default;
  }

  .steps-slider {
    overflow: visible;
  }

  .steps-nav {
    display: none;
  }

  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-inner {
    padding: 80px 24px;
    border-radius: 20px;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 640px) {
  section {
    padding: 80px 0;
  }

  .hero {
    min-height: 100svh;
    padding: 100px 0 60px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 32px 24px;
    z-index: 101;
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .mobile-toggle span {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.3s;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .agents-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a {
    width: auto;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-inner {
    padding: 64px 20px;
    border-radius: 16px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .step-card {
    padding: 36px 28px 32px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}