:root {
  --bg: #f5f7fc;
  --text: #0f172a;
  --muted: #5b6478;
  --line: #e7e9f2;
  --violet: #2D2F6E;
  --violet-2: #3D3B8A;
  --brand-gradient: linear-gradient(90deg, #2D2F6E 0%, #3D3B8A 52%, #4A4CA0 100%);
  --anchor-offset: 96px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--text);
  padding-bottom: 112px;
  background:
    radial-gradient(55% 40% at 18% 16%, rgba(196, 184, 248, 0.25), rgba(245, 247, 252, 0)),
    radial-gradient(45% 35% at 84% 12%, rgba(167, 139, 250, 0.2), rgba(245, 247, 252, 0)),
    radial-gradient(50% 30% at 75% 60%, rgba(147, 197, 253, 0.15), rgba(245, 247, 252, 0)),
    radial-gradient(40% 25% at 20% 75%, rgba(196, 184, 248, 0.12), rgba(245, 247, 252, 0)),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

#features,
#how-it-works,
#faq,
#top {
  scroll-margin-top: var(--anchor-offset);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 20px 0;
}

.header-shell {
  max-width: 1120px;
  margin: 0 auto;
  height: 76px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid #ebeaf7;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 60px;
  width: auto;
  display: block;
}

.brand-logo-header {
  height: 65px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font: 700 13px/1 "Space Grotesk", sans-serif;
  color: #fff;
  background: linear-gradient(130deg, var(--violet), var(--violet-2));
}

.brand-text {
  font: 700 19px/1 "Space Grotesk", sans-serif;
}

.header-nav {
  display: flex;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #3e4460;
  justify-self: center;
  align-items: center;
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--violet);
}

/* Hamburger menu */
.hamburger {
  display: none;
  appearance: none;
  border: none;
  background: transparent;
  padding: 6px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  justify-self: end;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 220ms ease, opacity 180ms ease;
}

.hamburger.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 18px 18px;
  border-radius: 0 0 18px 18px;
  border: 1px solid #ebeaf7;
  border-top: none;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  max-width: 1120px;
  margin: -1px auto 0;
}

.mobile-nav a {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #3e4460;
  transition: background 150ms ease;
}

.mobile-nav a:hover {
  background: rgba(109, 60, 244, 0.06);
  color: var(--violet);
}

.mobile-nav-cta {
  margin-top: 8px;
  text-align: center;
  padding: 12px 14px !important;
  border-radius: 12px !important;
  background: linear-gradient(90deg, #2D2F6E, #3D3B8A) !important;
  color: #fff !important;
  font-weight: 700 !important;
}

.mobile-nav.is-open {
  display: flex;
}

.nav-link-button {
  appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.nav-link-button:hover {
  color: var(--violet);
}

.cta-mini {
  height: 40px;
  min-width: 144px;
  border-radius: 999px;
  border: 1px solid #d9d7ef;
  background: linear-gradient(90deg, #2D2F6E, #3D3B8A);
  color: #fff;
  font-weight: 700;
  padding: 0 16px;
  font-size: 13px;
  cursor: pointer;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cta-mini:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 47, 110, 0.3);
}

.cta-mini:active {
  transform: translateY(0);
}

.hero-wrap {
  padding: 26px 20px 0;
}

.hero-card {
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid #ece9fa;
  background: #eef0f7;
  padding: 64px 26px 30px;
  text-align: center;
}

.hero-title {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(3rem, 5.4vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.gradient-text {
  display: block;
  width: fit-content;
  margin-inline: auto;
  color: transparent;
  padding-bottom: 8px;
  line-height: 1.12;
  background: var(--brand-gradient);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
}

.gradient-line {
  display: block;
  width: fit-content;
  margin-inline: auto;
  color: transparent;
  line-height: 1.25;
  background: var(--brand-gradient);
  background-size: 100% 120%;
  background-position: 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
}

.gradient-line + .gradient-line {
  margin-top: 4px;
}

.subtitle {
  max-width: 720px;
  margin: 18px auto 0;
  color: #0f172a;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.55;
}

.subtitle-emphasis {
  font-weight: 700;
  color: transparent;
  background: linear-gradient(90deg, #2D2F6E, #3D3B8A, #4A4CA0);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-primary {
  height: 52px;
  padding: 0 28px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #2D2F6E, #3D3B8A);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(45, 47, 110, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(45, 47, 110, 0.35);
}

.cta-primary:active {
  transform: translateY(0);
}

/* Social Proof */
.social-proof {
  max-width: 1120px;
  margin: 36px auto 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.social-proof-label {
  margin: 0;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social-proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-proof-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
  border-radius: 16px;
  border: 1px solid #e7e9f2;
  background: #ffffff;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.social-proof-card:hover {
  border-color: #d0d4e4;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.social-proof-logo {
  height: 65px;
  width: auto;
  opacity: 0.8;
  transition: opacity 200ms ease;
}

.social-proof-card:hover .social-proof-logo {
  opacity: 1;
}

.features {
  max-width: 1120px;
  margin: 56px auto 0;
  padding: 0 20px;
  display: grid;
  gap: 14px;
}

.features-note {
  margin: 14px 0 0;
  text-align: center;
  color: #5b6478;
  font-size: 13px;
  line-height: 1.55;
}

.features-note a {
  color: var(--violet-2);
  font-weight: 700;
}

.feature-row {
  border: 1px solid #e7e9f2;
  border-radius: 18px;
  background: #ffffff;
  padding: 24px 22px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: center;
}

.feature-row.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-row.reverse .feature-grid {
  order: 1;
}

.hero-eyebrow {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}

.cta-secondary {
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid #d9d7ef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #3f3f66;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cta-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
  border-color: #c5c3e0;
}

.cta-secondary:active {
  transform: translateY(0);
}

.hero-note {
  margin: 12px auto 0;
  color: #5b6478;
  font-size: 13px;
  line-height: 1.55;
}

.hero-note a {
  color: var(--violet-2);
  font-weight: 700;
}

.hero-muted-inline {
  color: #5b6478;
  font-weight: 500;
}

.role-gate-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  display: grid;
  place-items: center;
  z-index: 120;
  padding: 20px;
}

.role-gate {
  width: min(520px, 100%);
  border-radius: 18px;
  border: 1px solid #ddd7f6;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
  padding: 24px 22px;
  text-align: center;
}

.role-gate h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  color: #0f172a;
}

.role-gate p {
  margin: 10px 0 0;
  color: #5b6478;
}

.role-gate-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.role-gate-actions button {
  appearance: none;
  border: 1px solid #d9d7ef;
  border-radius: 999px;
  height: 44px;
  padding: 0 18px;
  font-weight: 700;
  cursor: pointer;
}

.role-gate-recruiter {
  background: linear-gradient(90deg, #2D2F6E, #3D3B8A);
  color: #fff;
  border-color: transparent !important;
}

.role-gate-candidate {
  background: #fff;
  color: #3f3f66;
}

.recruiter-hero-card {
  background:
    radial-gradient(55% 45% at 10% 8%, rgba(167, 139, 250, 0.14), transparent 60%),
    radial-gradient(60% 50% at 90% 12%, rgba(37, 99, 235, 0.1), transparent 65%),
    #f3f4f8;
}

.feature-row.reverse .feature-visual {
  order: 1;
}

.feature-eyebrow {
  margin: 0;
  color: #374151;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-eyebrow.roadmap {
  color: #3D3B8A;
}

.feature-copy h3 {
  margin: 10px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.65rem, 2.9vw, 2.7rem);
  line-height: 1.06;
  color: #0f172a;
}

.feature-title-next-line {
  display: block;
  white-space: nowrap;
}

.feature-copy p {
  margin: 0;
  color: #374151;
  font-size: clamp(1.08rem, 1.65vw, 1.22rem);
  line-height: 1.66;
}

.feature-grid {
  border: 1px solid #e7e9f2;
  border-radius: 16px;
  background: #f9fafb;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.feature-grid span {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 10px;
}

.hiring-timeline {
  position: relative;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  text-align: center;
}

.hiring-timeline::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 40px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(147, 51, 234, 0.3), rgba(79, 70, 229, 0.34), rgba(37, 99, 235, 0.3));
}

.timeline-step {
  position: relative;
  z-index: 1;
  padding: 0 6px;
}

.timeline-dot {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border-radius: 999px;
  border: 2px solid #3D3B8A;
  background: #ffffff;
  color: #3D3B8A;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.16);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease,
    transform 180ms ease;
}

.timeline-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.timeline-day {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3D3B8A;
}

.timeline-step:nth-child(1) .timeline-dot { border-color: #9495BE; color: #9495BE; }
.timeline-step:nth-child(2) .timeline-dot { border-color: #7273A8; color: #7273A8; }
.timeline-step:nth-child(3) .timeline-dot { border-color: #55578F; color: #55578F; }
.timeline-step:nth-child(4) .timeline-dot { border-color: #3D3B8A; color: #3D3B8A; }
.timeline-step:nth-child(5) .timeline-dot { border-color: #2D2F6E; color: #2D2F6E; }

.timeline-step:nth-child(1) .timeline-day { color: #9495BE; }
.timeline-step:nth-child(2) .timeline-day { color: #7273A8; }
.timeline-step:nth-child(3) .timeline-day { color: #55578F; }
.timeline-step:nth-child(4) .timeline-day { color: #3D3B8A; }
.timeline-step:nth-child(5) .timeline-day { color: #2D2F6E; }

.timeline-step:hover .timeline-dot,
.timeline-step:focus-within .timeline-dot {
  background: #2D2F6E;
  border-color: #2D2F6E;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(45, 47, 110, 0.28);
  transform: translateY(-1px);
}

.timeline-step h3 {
  margin: 8px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.16rem;
  line-height: 1.22;
  color: #151c32;
}

.timeline-step p {
  margin: 0;
  color: #44506a;
  font-size: 15px;
  line-height: 1.5;
}

.timeline-cta-wrap {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.footer-link-button {
  appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  display: inline;
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-link-button:hover {
  color: var(--violet);
}

.feature-visual {
  border: 1px solid #e4dff2;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0;
  overflow: hidden;
  display: inline-block;
  width: fit-content;
  justify-self: center;
  min-height: 0;
  line-height: 0;
}

.feature-visual img {
  width: auto;
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 56px 20px 4px;
}

.how-shell {
  max-width: 1320px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 26px 22px 22px;
  text-align: center;
}

.how-shell h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: #171b2f;
}

.how-shell h2 span {
  color: transparent;
  background: linear-gradient(90deg, #2D2F6E, #3D3B8A, #4A4CA0);
  -webkit-background-clip: text;
  background-clip: text;
}

.how-subtitle {
  margin: 10px auto 0;
  max-width: 820px;
  color: #374151;
  font-size: 1.12rem;
  line-height: 1.6;
}

/* Responsive fit container (no overflow ever) */
.flow-canvas {
  position: relative;
  margin-top: 18px;

  width: 100%;
  aspect-ratio: 1200 / 760;
  max-height: 740px;

  border-radius: 18px;
  border: 1px solid #e6e2f6;

  background:
    radial-gradient(circle at 20% 20%, rgba(169, 144, 252, 0.22), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(138, 163, 255, 0.2), transparent 48%),
    #f5f0ff;

  overflow: hidden;
}

.flow-scene {
  position: absolute;
  inset: 0;
  width: 1200px;
  height: 760px;
  transform-origin: top left;
  transform: translate(var(--scene-tx, 0px), var(--scene-ty, 0px)) scale(var(--scene-scale, 1));
  will-change: transform;
}

/* SVG edges */
.flow-lines {
  position: absolute;
  inset: 0;
  width: 1200px;
  height: 760px;
  pointer-events: none;
}

.flow-edge {
  fill: none;
  stroke: url(#edgeGrad);
  stroke-width: 2.1;
  opacity: 0;
  transition: opacity 240ms ease;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-edge.is-drawing {
  stroke: url(#edgeGradStrong);
  filter: url(#edgeGlow);
}

.flow-tail {
  fill: none;
  stroke: url(#edgeGradStrong);
  stroke-width: 3.0;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#edgeGlow);
  pointer-events: none;
}

.flow-comet {
  fill: rgba(255, 255, 255, 0.98);
  stroke: rgba(167, 139, 250, 0.95);
  stroke-width: 2.2;
  filter: url(#edgeGlow);
  pointer-events: none;
}

/* Cards */
.flow-card {
  position: absolute;
  width: 312px;
  min-height: 112px;
  border-radius: 20px;
  border: 1.5px solid rgba(214, 206, 239, 0.95);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 242, 255, 0.9));
  box-shadow:
    0 14px 34px rgba(96, 80, 170, 0.14),
    0 0 0 1px rgba(247, 245, 255, 0.9) inset,
    0 2px 0 rgba(255, 255, 255, 0.7) inset;
  padding: 16px 16px 16px 14px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  cursor: default;
  opacity: 0;
  transform: translateY(12px) scale(0.99);
  transition: opacity 600ms ease, transform 600ms ease, box-shadow 220ms ease;
  will-change: opacity, transform;
}

.flow-card:hover {
  box-shadow:
    0 20px 40px rgba(96, 80, 170, 0.18),
    0 0 0 1px rgba(243, 238, 255, 0.98) inset,
    0 2px 0 rgba(255, 255, 255, 0.78) inset;
  transform: translateY(0) scale(1.01);
}

.flow-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.icon-wrap {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: #fff;
  overflow: hidden;
  box-shadow: none;
}

.icon-glyph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.icon-glyph svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(52, 45, 106, 0.22));
}

.flow-card[data-icon-key="ai"] .icon-wrap {
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
}

.card-content h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.32rem;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #1f2144;
}

.card-content p {
  margin: 7px 0 0;
  color: #5b5f7a;
  font-size: 0.99rem;
  line-height: 1.4;
  font-weight: 500;
}

.mini-hint {
  margin-top: 10px !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #1f9d57 !important;
  background: linear-gradient(180deg, #ecfff3, #ddf8e8);
  border: 1px solid #b9ebcd;
  box-shadow: 0 6px 14px rgba(33, 150, 83, 0.16);
  font-weight: 800;
  font-size: 0.96rem !important;
  letter-spacing: 0.01em;
}

.metric-row {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.metric-pill {
  border-radius: 14px;
  border: 1px solid #e5defa;
  background: linear-gradient(180deg, #faf8ff, #f2eeff);
  text-align: center;
  padding: 8px 6px 7px;
  display: grid;
  gap: 2px;
}

.metric-pill strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.metric-pill em {
  font-style: normal;
  font-size: 0.76rem;
  line-height: 1.15;
  font-weight: 600;
}

.metric-good strong,
.metric-good em {
  color: #2fa865;
}

.metric-neutral strong,
.metric-neutral em {
  color: #4b5ec3;
}

.metric-basic strong,
.metric-basic em {
  color: #202233;
}

.pill-mini {
  margin-top: 8px;
  display: inline-block;
  border-radius: 999px;
  padding: 8px 16px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  background: linear-gradient(90deg, #3D3B8A, #2D2F6E);
  box-shadow: 0 8px 18px rgba(110, 84, 225, 0.26);
}

/* Final layout (no overlaps) */
.node-a {
  left: 20px;
  top: 35px;
}

.node-b {
  left: 438px;
  top: 162px;
}

.node-h {
  left: 860px;
  top: 35px;
  width: 320px;
}

.node-c {
  left: 448px;
  top: 360px;
}

.node-d {
  left: 60px;
  top: 280px;
  width: 320px;
}

.node-e {
  left: 442px;
  top: 582px;
  width: 320px;
}

.node-f {
  left: 40px;
  top: 560px;
  width: 300px;
}

.node-g {
  left: 858px;
  top: 300px;
  width: 320px;
}

/* FAQ */
.faq {
  padding: 56px 16px 28px;
}

.faq-shell {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  padding: 28px;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.06);
}

.faq-head {
  text-align: center;
  margin: 0 0 18px;
}

.faq-shell h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  letter-spacing: -0.02em;
}

.faq-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid #e8ebf4;
  border-radius: 12px;
  background: #ffffff;
  overflow: clip;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  border-color: #d7ddec;
}

.js .faq-item.is-open {
  border-color: #d7e5fb;
  box-shadow: 0 8px 22px rgba(29, 122, 203, 0.08);
  background: #fcfdff;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: 0;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.faq-question span:first-child {
  font-size: 15px;
  font-weight: 600;
  color: #1b2437;
}

.faq-plus {
  flex: 0 0 auto;
  color: var(--muted);
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid #e8ebf4;
  background: #fff;
  font-size: 16px;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-answer {
  display: block;
}

.js .faq-answer {
  display: none;
}

.js .faq-item.is-open .faq-answer {
  display: block;
}

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

.faq-answer p {
  margin: 0;
  padding: 0 16px 14px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

/* Floating footer */
.floating-footer {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: min(92vw, 860px);
  height: 196px;
  display: flex;
  align-items: flex-end;
  z-index: 45;
  pointer-events: none;
}

.floating-footer-card {
  width: 100%;
  pointer-events: auto;
  border-radius: 18px;
  border: 1px solid #d9deec;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.floating-footer-peek {
  min-height: 36px;
  max-height: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a7388;
  font-size: 13px;
  line-height: 1;
  transition: opacity 180ms ease, transform 220ms ease, max-height 220ms ease, padding 220ms ease;
}

.floating-footer-expanded {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  align-content: center;
  gap: 22px;
  padding: 0 22px;
  min-height: 0;
  max-height: 0;
  opacity: 0;
  transform: translateY(6px);
  overflow: hidden;
  transition: max-height 260ms ease, opacity 180ms ease, transform 220ms ease, padding 220ms ease;
}

.floating-footer-brand {
  display: flex;
  align-items: center;
}

.floating-footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  min-width: 0;
}

.footer-contact {
  color: #647089;
  font-size: 14px;
  white-space: nowrap;
}

.footer-contact:hover {
  color: var(--violet);
}

.floating-footer-center p {
  margin: 0;
  color: #6a7388;
  font-size: 13px;
}

.floating-footer-links {
  display: grid;
  gap: 6px;
  justify-items: end;
  align-content: center;
  color: #66728a;
  font-size: 13px;
}

.floating-footer-links a:hover {
  color: var(--violet);
}

.floating-footer.is-open .floating-footer-card,
.floating-footer-card:focus-within {
  border-color: #cfd7ea;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.floating-footer.is-open .floating-footer-peek,
.floating-footer-card:focus-within .floating-footer-peek {
  opacity: 0;
  transform: translateY(-6px);
  min-height: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.floating-footer.is-open .floating-footer-expanded,
.floating-footer-card:focus-within .floating-footer-expanded {
  min-height: 0;
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Responsive */
@media (max-width: 960px) {
  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .cta-mini {
    display: none;
  }

  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-grid,
  .feature-row.reverse .feature-visual {
    order: initial;
  }

  .hiring-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
  }

  .hiring-timeline::before {
    display: none;
  }

  .floating-footer {
    width: min(96vw, 760px);
    bottom: 10px;
    height: 210px;
  }

  .floating-footer-expanded {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    text-align: center;
  }

  .floating-footer-links {
    justify-items: center;
    grid-template-columns: repeat(2, minmax(0, auto));
    column-gap: 14px;
    row-gap: 6px;
  }
}

@media (max-width: 1180px) {
  .header-shell {
    padding: 0 14px;
    column-gap: 12px;
  }

  .header-nav {
    gap: 10px;
    font-size: 12px;
  }

  .cta-mini {
    padding: 0 14px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 148px;
  }

  .site-header {
    padding: 10px 10px 0;
  }

  .header-shell {
    height: 56px;
    border-radius: 14px;
    padding: 0 12px;
  }

  .brand-text {
    font-size: 16px;
  }

  .hero-wrap {
    padding: 12px 10px 0;
  }

  .hero-card {
    border-radius: 18px;
    padding: 30px 16px 20px;
  }

  .faq {
    padding: 28px 10px 20px;
  }

  .faq-shell {
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.05);
  }

  .faq-shell h2 {
    font-size: 28px;
  }

  .faq-question {
    padding: 12px 12px;
  }

  .faq-question span:first-child {
    font-size: 14px;
  }

  .faq-answer p {
    padding: 0 12px 12px;
    font-size: 14px;
  }

  .how-it-works {
    padding: 14px 10px 4px;
  }

  .how-shell {
    border-radius: 18px;
    padding: 18px 14px 14px;
  }

  .features {
    padding: 0 10px;
  }

  .feature-row {
    padding: 16px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hiring-timeline {
    margin-top: 22px;
    grid-template-columns: 1fr;
    text-align: left;
    gap: 16px;
  }

  .hiring-timeline::before {
    display: block;
    left: 26px;
    right: auto;
    top: 12px;
    width: 3px;
    height: calc(100% - 28px);
  }

  .timeline-step {
    padding: 0 0 0 66px;
  }

  .timeline-dot {
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 52px;
    height: 52px;
  }

  .timeline-day {
    margin-top: 2px;
  }

  .feature-visual {
    padding: 0;
    width: 100%;
    display: block;
  }

  .feature-visual img {
    width: 100%;
    max-width: 100%;
    max-height: 210px;
  }

  .floating-footer {
    width: min(96vw, 520px);
    height: auto;
  }

  .floating-footer-peek {
    display: none;
  }

  .floating-footer-expanded {
    max-height: 220px;
    min-height: 0;
    opacity: 1;
    transform: none;
    padding: 12px 14px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .floating-footer-card {
    background: rgba(255, 255, 255, 0.82);
  }

  .floating-footer .brand {
    justify-content: center;
  }
  .footer-contact {
    white-space: normal;
    word-break: break-word;
    text-align: center;
  }
}





