:root {
  --ink: #18181b;
  --muted: #70707b;
  --soft: #f9f9f9;
  --violet: #6249ff;
  --violet-100: #f0edff;
  --violet-200: #e9e5ff;
  --green: #3aa83c;
  --red: #ff4949;
  --teal: #1398b7;
  --gold: #caa11a;
  --pink: #ff49a7;
  --blue: #3468f6;
  --page-gutter: max(clamp(24px, 8.333vw, 120px), calc((100vw - 1200px) / 2));
  --shadow: 0 8px 18px 2px rgba(202, 202, 202, 0.24);
  --deep-shadow: 0 24px 45px rgba(25, 20, 71, 0.16);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

p,
h1,
h2,
h3,
h4,
dl {
  margin: 0;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 24px var(--page-gutter);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  width: 119.634px;
  height: 24px;
  align-items: center;
  justify-content: flex-start;
}

.brand-logo {
  width: 119.634px;
  height: 24px;
  max-width: none;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 100px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.nav-links a:hover {
  background: rgba(98, 73, 255, 0.08);
}

.nav-cta {
  justify-self: end;
}

.menu-button {
  display: none;
  justify-self: end;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: #111111;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-button span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-button span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.btn-primary {
  color: #ffffff;
  background: var(--violet);
}

.btn-light {
  color: #000000;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.section {
  width: 100%;
  padding: 96px var(--page-gutter);
}

.section-violet {
  background:
    linear-gradient(180deg, rgba(237, 234, 255, 0.1) 0%, var(--violet-100) 60%),
    #ffffff;
}

.eyebrow {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid #d4d4d4;
  border-radius: 999px;
  color: #0a0a0a;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.section-heading,
.split-heading {
  width: 100%;
}

.section-heading.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.section-heading h2,
.split-heading h2,
.faq-heading h2,
.how-copy h2 {
  color: var(--ink);
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}

.section-heading p {
  max-width: 530px;
  color: var(--muted);
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

.split-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.split-heading > div:first-child {
  display: flex;
  width: min(100%, 613px);
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.split-heading > div:last-child {
  display: flex;
  width: min(100%, 547px);
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 56px;
}

.split-heading p {
  color: var(--muted);
  font-size: 20px;
  line-height: 28px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

/* Hero */
.hero {
  display: flex;
  min-height: calc(100vh - 84px);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  overflow: hidden;
  padding-top: 24px;
  padding-bottom: 76px;
}

.hero-art {
  position: relative;
  width: min(670px, 92vw);
  aspect-ratio: 670 / 418;
  flex: 0 0 auto;
  animation: heroCardsSwipeUp 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  --hero-swipe-y: 0px;
}

.hero-person-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: auto;
  max-width: none;
  transform-origin: center top;
  transition:
    transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 360ms ease;
  will-change: transform, opacity, filter;
  pointer-events: none;
}

.hero-person-card.is-active {
  z-index: 3;
  opacity: 1;
  transform: translate3d(-50%, var(--hero-swipe-y), 0) scale(1);
}

.hero-person-card.is-next {
  z-index: 2;
  opacity: 0.96;
  transform: translate3d(-50%, 54px, 0) scale(0.92);
}

.hero-person-card.is-after {
  z-index: 1;
  opacity: 0.9;
  transform: translate3d(-50%, 62px, 0) scale(0.84);
}

.hero-person-card.is-past {
  z-index: 4;
  opacity: 0;
  transform: translate3d(-50%, -260px, 0) scale(0.92) rotate(-3deg);
}

.hero-art.is-dragging {
  cursor: grabbing;
}

.hero-art.is-dragging .hero-person-card.is-active {
  transition: none;
}

.hero-person-card.is-exiting {
  z-index: 4;
  opacity: 0;
  transform: translate3d(-50%, -260px, 0) scale(0.92) rotate(-3deg);
}

@keyframes heroCardsSwipeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 56px, 0) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art {
    animation: none;
  }

  .hero-person-card {
    animation: none;
    transition: none;
  }
}

.verification-card {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 634px;
  max-width: 100%;
  min-height: 342px;
  padding: 15px;
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.verification-card::before,
.verification-card::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.verification-card::before {
  left: -430px;
  top: -240px;
  width: 780px;
  height: 482px;
  background: radial-gradient(circle, rgba(98, 73, 255, 0.28), rgba(98, 73, 255, 0) 64%);
  mix-blend-mode: multiply;
}

.verification-card::after {
  left: -250px;
  top: -120px;
  width: 420px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 70%);
}

.verification-card.front {
  z-index: 4;
  transform: translate(-50%, -50%);
}

.verification-card.rear {
  opacity: 0.86;
  transform-origin: center;
}

.verification-card.rear-left {
  z-index: 2;
  transform: translate(-56%, -42%) rotate(-4deg) scale(0.92);
}

.verification-card.rear-right {
  z-index: 1;
  transform: translate(-42%, -45%) rotate(3deg) scale(0.86);
}

.candidate-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
}

.candidate-photo {
  width: 138px;
  height: 138px;
  flex: 0 0 auto;
  border-radius: 15px;
  object-fit: cover;
  object-position: center top;
  background: #8c49ff;
}

.candidate-row h3 {
  margin-top: 8px;
  color: #000000;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.candidate-row p {
  color: var(--muted);
  font-size: 19px;
  line-height: 28px;
}

.candidate-row strong {
  color: #131313;
  font-weight: 700;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
}

.status-chip::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
}

.status-verified {
  color: var(--green);
  background: rgba(209, 255, 210, 0.41);
}

.status-verified::before {
  background: var(--green);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.75);
}

.status-risk {
  color: var(--red);
  background: rgba(255, 225, 225, 0.41);
}

.status-risk::before {
  background: var(--red);
}

.check-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.check-item {
  display: grid;
  min-height: 68px;
  grid-template-columns: 20px 1fr;
  grid-template-areas:
    "icon title"
    "status status";
  column-gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 15px;
  background: #fafafa;
  overflow: hidden;
}

.check-item .service-icon {
  grid-area: icon;
}

.check-item strong {
  grid-area: title;
  min-width: 0;
  color: #262626;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.result {
  grid-area: status;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
}

.result::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: "";
}

.result.good {
  color: var(--green);
}

.result.good::before {
  background: var(--green);
}

.result.bad {
  color: var(--red);
}

.result.bad::before {
  background: var(--red);
}

.hero-copy {
  display: flex;
  width: min(876px, 100%);
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 0;
  text-align: center;
}

.hero h1 {
  width: min(900px, 100%);
  color: var(--ink);
  font-size: 64px;
  line-height: 70px;
  font-weight: 700;
}

.hero-copy p {
  width: min(720px, 100%);
  color: var(--muted);
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
}

/* Icons */
.service-icon,
.metric-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 5px;
  background: currentColor;
  color: var(--violet);
}

.service-icon::before,
.metric-icon::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid #ffffff;
  border-radius: 2px;
  content: "";
  transform: translate(-50%, -50%);
}

.service-icon.purple,
.metric-icon.purple {
  color: var(--violet);
}

.service-icon.red,
.metric-icon.red {
  color: var(--red);
}

.service-icon.green,
.metric-icon.green {
  color: #24c83d;
}

.service-icon.teal,
.metric-icon.teal {
  color: var(--teal);
}

.service-icon.gold,
.metric-icon.gold {
  color: var(--gold);
}

.service-icon.pink,
.metric-icon.pink {
  color: var(--pink);
}

.service-icon.blue,
.metric-icon.blue {
  color: var(--teal);
}

.service-icon.indigo,
.metric-icon.indigo {
  color: #342975;
}

.service-icon.orange,
.metric-icon.orange {
  color: #ff7949;
}

.service-icon.outline {
  background: transparent;
  box-shadow: inset 0 0 0 2px currentColor;
}

.service-icon.outline::before {
  border-color: currentColor;
}

.service-icon.filled::before {
  width: 5px;
  height: 5px;
  border-radius: 99px;
}

.metric-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}

.metric-icon::before {
  width: 10px;
  height: 10px;
}

/* Logo strip */
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 100px;
  padding: 20px var(--page-gutter);
  background: #f6f5ff;
}

.logo-strip p {
  flex: 1 1 auto;
  color: #737373;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

.logo-slot {
  display: flex;
  height: 60px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}

.logo-slot-greenhouse {
  width: 139px;
}

.logo-slot-workday {
  width: 91px;
}

.logo-slot-bamboo {
  width: 195px;
}

.logo-slot-zapier {
  width: 120px;
}

.logo-slot-lever {
  width: 134px;
}

.stack-logo {
  width: auto;
  max-width: none;
  object-fit: contain;
}

.logo-greenhouse {
  width: 107px;
  height: 24px;
}

.logo-workday {
  width: 59px;
  height: 28px;
}

.logo-bamboo {
  width: 163px;
  height: 24px;
}

.logo-zapier {
  width: 88px;
  height: 24px;
}

.logo-lever {
  width: 76px;
  height: 18px;
}

/* Metrics */
.metrics-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.metrics-section .section-heading h2 {
  width: min(560px, 100%);
  font-weight: 600;
}

.metrics-section .section-heading p {
  width: min(526px, 100%);
}

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

.metric-card {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  background: var(--soft);
  overflow: hidden;
}

.metric-card-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

.metric-card strong {
  color: #343434;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}

.metric-card p {
  color: #909090;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

/* How it works */
.how-section {
  position: relative;
  min-height: 1180px;
  height: 165vh;
  overflow: clip;
  background: #f6f5ff;
  padding: 0;
  --how-track-x: 0px;
  --how-track-scale: 1;
  --how-copy-opacity: 1;
}

.how-sticky {
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-width: 100%;
  height: 100vh;
  min-height: 0;
  align-items: center;
  gap: 32px;
  overflow: visible;
  padding: 96px 0 96px var(--page-gutter);
}

.how-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: 430px;
  flex: 0 0 430px;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}

.how-copy .eyebrow {
  margin-bottom: -12px;
}

.how-copy h2,
.how-copy p {
  opacity: var(--how-copy-opacity);
  transition: opacity 120ms linear;
}

.how-copy p {
  color: var(--muted);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.workflow-track {
  position: relative;
  z-index: 2;
  display: flex;
  width: max-content;
  gap: 32px;
  transform: translate3d(var(--how-track-x), 0, 0) scale(var(--how-track-scale));
  transform-origin: left center;
  will-change: transform;
  isolation: isolate;
}

.workflow-card {
  display: flex;
  width: 507px;
  flex: 0 0 507px;
  flex-direction: column;
  gap: 16px;
  padding: 12px;
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
}

.workflow-visual {
  position: relative;
  height: 217px;
  overflow: hidden;
  border-radius: 16px;
}

.workflow-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  border-radius: 20px;
  background: #fafafa;
}

.workflow-icon {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

.workflow-body h3 {
  color: #262626;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

.workflow-body p {
  color: #909090;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.stack-card {
  position: absolute;
  left: 50%;
  width: 384px;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.stack-card > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
}

.stack-card strong {
  font-size: 15px;
  line-height: 22px;
}

.stack-card span:not(.avatar) {
  color: var(--muted);
  font-size: 14px;
  line-height: 21px;
}

.stack-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  color: #909090;
  font-size: 13px;
  line-height: 18px;
}

.stack-card em {
  padding: 4px 7px;
  border-radius: 7px;
  color: var(--violet);
  background: #f3f2ff;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.stack-card.small {
  top: 96px;
  transform: translateX(-50%) rotate(-2deg) scale(0.88);
}

.stack-card.mid {
  top: 67px;
  transform: translateX(-50%) rotate(1deg) scale(0.94);
}

.stack-card.main {
  top: 38px;
  transform: translateX(-50%);
}

.faded {
  opacity: 0.55;
}

.avatar {
  display: inline-flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: #8c49ff;
  font-size: 16px;
  font-weight: 700;
}

.complete-visual {
  display: grid;
  place-items: center;
}

.flow-task {
  position: absolute;
  left: 50%;
  display: flex;
  min-width: 286px;
  align-items: center;
  gap: 9px;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.task-top {
  top: 22px;
}

.task-bottom {
  top: 124px;
}

.flow-task strong {
  font-size: 16px;
  line-height: 22px;
}

.flow-task p {
  color: var(--muted);
  font-size: 15px;
  line-height: 22px;
}

.flow-line {
  position: absolute;
  left: 50%;
  top: 88px;
  width: 3px;
  height: 42px;
  border-radius: 99px;
  background: var(--violet);
}

.flow-line::before,
.flow-line::after {
  position: absolute;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
  content: "";
  transform: translateX(-50%);
}

.flow-line::before {
  top: -2px;
}

.flow-line::after {
  bottom: -2px;
}

.round-icon {
  display: inline-flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
  color: #342975;
}

.round-icon.orange {
  color: #ff7949;
}

.round-icon.navy {
  color: #342975;
}

.round-icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.sessions-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 5px;
  background: #009faa;
}

.sessions-icon img {
  display: block;
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.sessions-card {
  position: absolute;
  left: 50%;
  top: 22px;
  width: 344px;
  padding: 16px;
  border: 1px solid rgba(228, 228, 228, 0.4);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: translateX(-50%) rotate(-3deg);
}

.sessions-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ececec;
  font-size: 14px;
  line-height: 20px;
}

.sessions-card dl {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.sessions-card dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sessions-card dt {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.sessions-card dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.tiny-avatar {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 7px;
  font-weight: 700;
}

.tiny-avatar.purple {
  background: #8c49ff;
}

.tiny-avatar.red {
  background: var(--red);
}

.tiny-avatar.blue {
  background: #49c5ff;
}

.tiny-avatar.green {
  background: #0e9610;
}

.good {
  color: #23a825;
}

.bad {
  color: var(--red);
}

/* Catalogue */
.catalogue-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: #ffffff;
}

.catalogue-section .split-heading h2 {
  font-weight: 600;
}

.catalogue-section .split-heading .btn {
  font-weight: 500;
}

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

.catalogue-grid article {
  display: flex;
  min-height: 158px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 20px;
  border-radius: 24px;
  background: var(--soft);
}

.catalogue-card-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  margin-bottom: 28px;
  object-fit: contain;
}

.catalogue-grid h3 {
  margin-bottom: 8px;
  color: #262626;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

.catalogue-grid p {
  color: #909090;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

/* Platform */
.platform-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.platform-section .section-heading h2 {
  max-width: 560px;
}

.experience-row {
  display: grid;
  width: min(100%, 1200px);
  grid-template-columns: minmax(0, 621px) 547px;
  align-items: center;
  justify-content: start;
  gap: 32px;
  margin-inline: auto;
}

.experience-row.reverse {
  grid-template-columns: 547px minmax(0, 621px);
}

.dashboard-illustration {
  position: relative;
  aspect-ratio: 621 / 550;
  height: auto;
  overflow: hidden;
  border-radius: 24px;
  background: #fafafa;
}

.platform-dashboard-art {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.report-card {
  position: absolute;
  left: 50%;
  top: 70px;
  z-index: 2;
  width: 363px;
  min-height: 520px;
  padding: 14px;
  border: 1px solid #f0f0f0;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(202, 202, 202, 0.24);
  transform: translateX(-35%) rotate(-4deg);
}

.risk-list.tilted.back {
  position: absolute;
  left: 38px;
  top: 294px;
  z-index: 1;
  width: 422px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.donut-card {
  padding: 14px;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
}

.donut-card h4,
.report-card > h4 {
  color: #3d3d3d;
  font-size: 13px;
  line-height: 19px;
  font-weight: 700;
}

.donut {
  position: relative;
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  margin: 24px auto 16px;
  border-radius: 50%;
  background: conic-gradient(#18bdb0 0 42%, #f4cb1f 42% 61%, #3468f6 61% 100%);
}

.donut::before {
  position: absolute;
  inset: 32px;
  border-radius: 50%;
  background: #ffffff;
  content: "";
}

.donut span {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #737373;
  font-size: 11px;
  line-height: 14px;
}

.donut strong {
  color: #0a0a0a;
  font-size: 25px;
  line-height: 28px;
}

.donut-card p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: #404040;
  font-size: 9px;
  line-height: 14px;
}

.legend {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.legend.teal {
  background: #18bdb0;
}

.legend.blue {
  background: #3468f6;
}

.legend.gold {
  background: #f4cb1f;
}

.risk-list {
  display: flex;
  flex-direction: column;
}

.risk-list div {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 11px 15px;
  border-bottom: 1px solid #f0f0f0;
  background: #ffffff;
}

.risk-list strong {
  display: inline-flex;
  justify-content: center;
  padding: 2px 4px;
  border: 1px solid #cd7e7e;
  border-radius: 6px;
  color: #ac3737;
  background: #fff4f4;
  font-size: 13px;
  line-height: 18px;
}

.risk-list strong.ok {
  color: #549a4b;
  border-color: #88cd7e;
  background: #f9fcf9;
}

.risk-list span {
  color: #131313;
  font-size: 13px;
  font-weight: 700;
}

.risk-list em {
  color: #717171;
  font-size: 13px;
  font-style: normal;
  white-space: nowrap;
}

.experience-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.experience-copy h3 {
  color: var(--ink);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.experience-copy p {
  color: var(--muted);
  font-size: 20px;
  line-height: 28px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 44px;
  color: var(--muted);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 9px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  content: "";
  transform: rotate(-45deg);
}

@media (min-width: 901px) {
  .experience-row:not(.reverse) .check-list li {
    white-space: nowrap;
  }
}

.candidate-image {
  width: 100%;
  height: 550px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
}

/* CTA */
.cta-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.purple-panel {
  position: relative;
  display: flex;
  width: min(100%, 1200px);
  min-height: 0;
  aspect-ratio: 1200 / 429;
  align-items: stretch;
  overflow: hidden;
  margin-inline: auto;
  border-radius: 32px;
  background: linear-gradient(90deg, var(--violet) 0 47%, #ffffff 47% 100%);
  container-type: inline-size;
}

.panel-copy {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(53.6%, 643px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(32px, 3.667cqw, 44px);
}

.panel-copy h2 {
  max-width: 555px;
  color: #ffffff;
  font-size: clamp(44px, 4.667cqw, 56px);
  line-height: 1.2;
  font-weight: 500;
}

.panel-copy strong {
  font-weight: 800;
}

.cta-art-crop {
  position: absolute;
  left: 46.9%;
  top: 0;
  z-index: 1;
  width: 53.1%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.cta-art-crop img {
  position: absolute;
  left: -88.4%;
  top: 0;
  width: 188.4%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.tablet-scene {
  position: absolute;
  right: -50px;
  top: 45px;
  width: 650px;
  height: 460px;
}

.tablet {
  position: absolute;
  right: 0;
  top: 0;
  width: 560px;
  height: 420px;
  padding: 32px 24px 24px;
  border: 22px solid #141414;
  border-radius: 42px 42px 0 0;
  background: #141414;
  box-shadow: var(--deep-shadow);
}

.tablet::before {
  position: absolute;
  left: 24px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #050505;
  box-shadow: 0 24px 0 #050505, 0 48px 0 #050505;
  content: "";
}

.tablet-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #ffffff;
}

.tablet-screen header {
  display: flex;
  gap: 10px;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
  color: #717171;
  font-size: 14px;
}

.tablet-screen header strong {
  color: #131313;
}

.tablet-dashboard {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 24px;
  padding: 24px;
}

.tablet-donut {
  position: relative;
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  margin: 28px auto;
  border-radius: 50%;
  background: conic-gradient(#15bdb2 0 46%, #6249ff 46% 100%);
}

.tablet-donut::before {
  position: absolute;
  inset: 42px;
  border-radius: 50%;
  background: #ffffff;
  content: "";
}

.tablet-donut span {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #737373;
  font-size: 13px;
}

.tablet-donut strong {
  color: #0a0a0a;
  font-size: 34px;
}

.tablet-dashboard aside {
  padding-top: 18px;
  color: #717171;
  font-size: 14px;
}

.mini-profile {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7b090, #734328);
}

.tablet-dashboard aside strong {
  display: block;
  color: #131313;
  font-size: 18px;
}

.risk-box {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
}

.risk-box strong {
  color: #0f9f42;
}

.float-badge {
  position: absolute;
  display: inline-flex;
  width: 98px;
  height: 98px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.1);
  font-size: 0;
}

.float-badge::before {
  width: 34px;
  height: 34px;
  border: 4px solid #ffffff;
  border-radius: 8px;
  content: "";
}

.float-badge::after {
  position: absolute;
  left: 50%;
  top: calc(100% - 8px);
  padding: 5px 7px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  color: currentColor;
  content: attr(class);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  transform: translateX(-50%);
}

.float-badge.teal {
  left: 242px;
  top: 0;
  color: var(--teal);
  background: var(--teal);
}

.float-badge.red {
  left: 100px;
  top: 90px;
  width: 68px;
  height: 68px;
  color: var(--red);
  background: var(--red);
}

.float-badge.red::before {
  width: 24px;
  height: 24px;
  border-width: 3px;
}

.float-badge.purple {
  left: 236px;
  top: 158px;
  width: 133px;
  height: 133px;
  color: var(--violet);
  background: var(--violet);
}

.float-badge.purple::before {
  width: 48px;
  height: 48px;
}

.float-badge.teal::after {
  content: "Reference checks";
}

.float-badge.red::after {
  content: "Right to work";
}

.float-badge.purple::after {
  content: "Background check";
}

/* FAQ */
.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 830px;
  gap: 32px;
  align-items: flex-start;
}

.faq-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.faq-heading h2 {
  max-width: 512px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  overflow: hidden;
  border-radius: 16px;
  background: var(--violet-200);
}

.faq-item.open {
  background: #d9d3f9;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}

.faq-item button strong {
  min-width: 20px;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
}

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

.faq-answer p {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

/* FAQ page */
.faq-page {
  display: flex;
  min-height: calc(100svh - 84px);
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 96px var(--page-gutter);
  background:
    linear-gradient(180deg, rgba(237, 234, 255, 0.1) 0%, #f0edff 80%),
    #ffffff;
}

.faq-page-heading {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.faq-page-heading h1 {
  width: min(560px, 100%);
  color: #171717;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}

.faq-tabs {
  display: flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  padding: 6px 12px 6px 6px;
  border: 0.774px solid rgba(228, 228, 228, 0.7);
  border-radius: 100px;
  background: #fafafa;
  scrollbar-width: none;
}

.faq-tabs::-webkit-scrollbar {
  display: none;
}

.faq-tabs button {
  flex: 0 0 auto;
  padding: 8px;
  border: 0;
  border-radius: 18.564px;
  color: #404040;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.faq-tabs button.active {
  color: #ffffff;
  background: var(--violet);
}

.faq-page-accordion {
  width: min(830px, 100%);
}

.faq-panel {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 8px;
}

.faq-panel[hidden] {
  display: none;
}

.faq-page .faq-item {
  border-radius: 16px;
  background: #e9e5ff;
}

.faq-page .faq-item.open {
  background: #d9d3f9;
}

.faq-page .faq-item button {
  padding: 24px;
}

.faq-page .faq-item button span {
  color: var(--ink);
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
}

.faq-page .faq-item button strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
}

.faq-page .faq-answer {
  padding: 0 24px 24px;
}

.faq-page .faq-answer p,
.faq-page .faq-answer li {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.faq-page .faq-answer ul {
  margin: 0;
  padding-left: 24px;
}

/* Footer */
.footer {
  position: relative;
  display: flex;
  min-height: 614px;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  overflow: hidden;
  padding: 64px var(--page-gutter) 40px;
  color: #fafafa;
  background: #050315;
}

.footer-top,
.footer-bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand {
  width: min(100%, 404px);
}

.footer-logo-link {
  display: inline-flex;
  width: 119.634px;
  height: 24px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.footer-logo {
  width: 119.634px;
  height: 24px;
  max-width: none;
  object-fit: contain;
}

.footer-brand p {
  color: #fafafa;
  font-size: 16px;
  line-height: 24px;
}

.footer-columns {
  display: flex;
  gap: 40px;
}

.footer-columns nav {
  display: flex;
  width: 120px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-columns h2 {
  color: #525252;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.footer-columns a {
  color: #a3a3a3;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: #a3a3a3;
  font-size: 14px;
  line-height: 20px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 9px;
}

.socials a {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #a3a3a3;
  font-size: 11px;
  font-weight: 800;
}

.footer-watermark {
  position: absolute;
  top: 415px;
  left: 50%;
  z-index: 1;
  width: 1612px;
  height: 258px;
  transform: translateX(-50%);
  pointer-events: none;
}

.footer-watermark img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
}

@media (min-width: 1441px) {
  .how-section {
    padding-left: calc((100vw - 1200px) / 2);
  }
}

@media (max-width: 1180px) {
  .section {
    padding: 80px 48px;
  }

  .top-nav {
    padding-inline: 48px;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 56px;
    line-height: 62px;
  }

  .logo-strip {
    padding-inline: 48px;
  }

  .logo-row {
    gap: 12px;
  }

  .how-sticky {
    padding-left: 48px;
  }

  .catalogue-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .experience-copy {
    max-width: 680px;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .accordion {
    width: 100%;
  }

  .faq-page {
    padding: 72px 24px 80px;
  }

  .faq-tabs {
    width: 100%;
    justify-content: flex-start;
  }

  .purple-panel {
    min-height: 620px;
  }

  .panel-copy {
    width: 62%;
    min-height: 360px;
  }

  .cta-art-crop {
    left: 34%;
    top: auto;
    bottom: 0;
    width: 66%;
    height: 429px;
  }
}

@media (max-width: 900px) {
  .top-nav {
    grid-template-columns: 1fr auto;
    padding: 18px 24px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .menu-open .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 74px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--deep-shadow);
  }

  .menu-open .nav-links a {
    padding: 14px 16px;
  }

  .section {
    padding: 72px 24px;
  }

  .section-heading h2,
  .split-heading h2,
  .faq-heading h2,
  .how-copy h2 {
    font-size: 38px;
    line-height: 42px;
  }

  .split-heading {
    flex-direction: column;
  }

  .split-heading > div:last-child {
    padding-top: 0;
  }

  .hero {
    gap: 24px;
    padding-top: 72px;
  }

  .hero-art {
    width: min(670px, 94vw);
  }

  .verification-card {
    width: 560px;
    min-height: 306px;
    padding: 12px;
    border-radius: 24px;
  }

  .candidate-photo {
    width: 112px;
    height: 112px;
  }

  .candidate-row h3,
  .candidate-row p {
    font-size: 16px;
    line-height: 23px;
  }

  .check-grid {
    gap: 8px;
  }

  .check-item {
    min-height: 60px;
    padding: 8px;
  }

  .check-item strong,
  .result {
    font-size: 12px;
    line-height: 16px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 50px;
  }

  .hero-copy p,
  .section-heading p,
  .split-heading p,
  .how-copy p,
  .experience-copy p,
  .check-list li {
    font-size: 18px;
    line-height: 27px;
  }

  .logo-strip {
    align-items: flex-start;
    padding: 24px;
  }

  .logo-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

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

  .how-section {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 72px 24px;
  }

  .how-sticky {
    position: relative;
    top: auto;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .how-copy {
    width: 100%;
    flex-basis: auto;
  }

  .workflow-track {
    width: min(100%, calc(100vw - 48px));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    transform: none;
    -webkit-overflow-scrolling: touch;
  }

  .workflow-track::-webkit-scrollbar {
    display: none;
  }

  .workflow-card {
    width: min(507px, calc(100vw - 48px));
    flex-basis: min(507px, calc(100vw - 48px));
    scroll-snap-align: start;
  }

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

  .candidate-image {
    height: 460px;
  }

  .dashboard-illustration {
    height: auto;
  }

  .report-card {
    transform: translateX(-46%) rotate(-4deg) scale(0.88);
  }

  .risk-list.tilted.back {
    left: 12px;
    transform: rotate(-4deg) scale(0.86);
    transform-origin: left top;
  }

  .panel-copy h2 {
    font-size: 44px;
  }

  .cta-art-crop {
    left: 30%;
    width: 78%;
  }

  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .brand {
    width: auto;
  }

  .section {
    padding: 64px 18px;
  }

  .eyebrow,
  .btn {
    font-size: 13px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-art {
    width: min(670px, 112vw);
  }

  .verification-card {
    width: 520px;
  }

  .verification-card.rear-left,
  .verification-card.rear-right {
    display: none;
  }

  .hero-copy {
    margin-top: -40px;
    padding: 16px 0 0;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 40px;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 25px;
  }

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

  .logo-strip {
    flex-direction: column;
  }

  .logo-row {
    justify-content: flex-start;
  }

  .section-heading h2,
  .split-heading h2,
  .faq-heading h2,
  .how-copy h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .faq-page-heading h1 {
    font-size: 32px;
    line-height: 36px;
  }

  .faq-page {
    padding: 56px 18px 64px;
  }

  .faq-page .faq-item button {
    padding: 20px;
  }

  .faq-page .faq-answer {
    padding: 0 20px 20px;
  }

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

  .workflow-visual {
    height: 202px;
  }

  .stack-card,
  .sessions-card {
    width: 320px;
  }

  .stack-card p {
    overflow: hidden;
  }

  .flow-task {
    min-width: 286px;
  }

  .dashboard-illustration {
    height: auto;
  }

  .report-card {
    left: 44%;
    top: 38px;
    transform: translateX(-50%) rotate(-4deg) scale(0.72);
    transform-origin: top center;
  }

  .risk-list.tilted.back {
    top: 244px;
    transform: rotate(-4deg) scale(0.7);
  }

  .candidate-image {
    height: 420px;
  }

  .purple-panel {
    min-height: 560px;
    border-radius: 24px;
  }

  .panel-copy {
    width: 100%;
    min-height: 300px;
    padding: 28px;
  }

  .panel-copy h2 {
    font-size: 36px;
  }

  .cta-art-crop {
    left: 18%;
    width: 120%;
    height: 300px;
  }

  .faq-item button span {
    font-size: 19px;
    line-height: 24px;
  }

  .footer {
    gap: 56px;
    padding: 48px 24px 32px;
  }

  .footer-columns {
    width: 100%;
    justify-content: space-between;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-watermark {
    top: auto;
    left: 50%;
    bottom: -24px;
    width: max(520px, 112vw);
    height: auto;
    aspect-ratio: 1612 / 258;
  }
}

/* ============ Subpages (checks, blog, legal, company) ============ */
.page-hero {
  padding: 96px var(--page-gutter) 56px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(237, 234, 255, 0.1) 0%, #f0edff 90%),
    #ffffff;
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 {
  margin: 0 auto;
  max-width: 720px;
  color: #171717;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.page-hero .lede {
  margin: 20px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.page-hero .button-row { justify-content: center; margin-top: 28px; }
.crumbs {
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--muted);
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--violet); }

.prose { max-width: 720px; margin: 0 auto; color: #3f3f46; font-size: 16.5px; line-height: 1.75; }
.prose > * + * { margin-top: 18px; }
.prose h2 { margin-top: 44px; color: #171717; font-size: 26px; line-height: 1.2; font-weight: 700; }
.prose h3 { margin-top: 30px; color: #171717; font-size: 19px; font-weight: 700; }
.prose a { color: var(--violet); }
.prose ul, .prose ol { padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.prose blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--violet);
  border-radius: 0 12px 12px 0;
  background: #f0edff;
  color: #171717;
  font-weight: 500;
}
.prose .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e4e4e7;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.post-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  background: #ffffff;
  text-decoration: none;
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}
.post-card:hover { border-color: #c9beff; box-shadow: var(--deep-shadow); transform: translateY(-3px); }
.post-card .post-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet); }
.post-card h3 { color: #171717; font-size: 19px; line-height: 1.25; font-weight: 700; }
.post-card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.post-card .post-meta { margin-top: auto; color: #a1a1aa; font-size: 12.5px; font-weight: 600; }

.info-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.info-card {
  padding: 28px;
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  background: #ffffff;
}
.info-card h3 { margin-bottom: 12px; color: #171717; font-size: 18px; font-weight: 700; }
.info-card p, .info-card li { color: var(--muted); font-size: 15px; line-height: 1.6; }
.info-card ul { margin-top: 8px; padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.info-card .eyebrow { margin-bottom: 14px; }

.related-strip { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 10px; }
.related-strip a {
  padding: 8px 14px;
  border: 1px solid #d4d4d4;
  border-radius: 999px;
  color: #171717;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  background: #ffffff;
}
.related-strip a:hover { border-color: var(--violet); color: var(--violet); }

.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.price-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px;
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  background: #ffffff;
}
.price-card.featured { border-color: var(--violet); box-shadow: var(--deep-shadow); }
.price-card h3 { color: #171717; font-size: 20px; font-weight: 700; }
.price-card .price-note { color: var(--violet); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.price-card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.price-card ul { padding-left: 18px; display: flex; flex-direction: column; gap: 8px; color: var(--muted); font-size: 14.5px; }
.price-card .btn { margin-top: auto; justify-content: center; text-align: center; }

.catalogue-grid h3 a { color: inherit; text-decoration: none; }
.catalogue-grid h3 a:hover { color: var(--violet); text-decoration: underline; }
