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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  direction: ltr;
  color-scheme: dark only;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100%;
}

body {
  background: var(--surface);
  color: var(--on-surface);
  font-family: "General Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

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

a:not(.btn) { color: var(--violet-light); text-decoration: none; transition: color 0.2s; }
a:not(.btn):hover { color: var(--white); }

.mono {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1, h2, h3, h4, .display {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.em {
  color: var(--violet-light);
  background-image: var(--grad);
  background-size: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
  .em {
    background-image: none;
    -webkit-text-fill-color: currentColor;
    color: var(--violet-light);
  }
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); width: 100%; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

section { padding: clamp(72px, 10vw, 100px) 0; position: relative; }
.section-compact { padding: clamp(56px, 8vw, 72px) 0; }

.kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--violet-light);
  opacity: 0.7;
}

.kicker-dark { color: var(--violet-light); }
.kicker-dark::before { background: var(--violet-light); }

.sec-title { font-size: clamp(28px, 4.5vw, 48px); margin-bottom: 16px; }
.sec-title-dark { color: var(--ink-100); }
.sec-lead { max-width: 58ch; font-size: 18px; line-height: 1.6; }
.sec-lead-dark { color: var(--ink-300); }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head .sec-lead { margin-inline: auto; }
.section-cta-row { text-align: center; margin-top: 40px; }

.section-light { background: var(--surface); color: var(--on-surface); }
.section-muted { background: var(--surface-alt); color: var(--on-surface); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 7, 19, 0.92);
  border-bottom: 1px solid var(--hairline);
}

@supports ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .site-header {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

.site-header .wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header .logo-link img {
  height: 32px;
  width: auto;
  max-width: min(200px, 50vw);
}

.nav-main { display: flex; align-items: center; gap: clamp(16px, 2vw, 24px); flex-wrap: wrap; justify-content: flex-end; }

.nav-main a.is-active {
  color: var(--ink-100);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-300);
  margin-bottom: clamp(16px, 3vw, 24px);
}

.breadcrumbs a {
  color: var(--ink-300);
}

.breadcrumbs a:hover {
  color: var(--violet-light);
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink-200);
}

.breadcrumbs-sep {
  color: var(--ink-500);
  user-select: none;
}

.footer-col-subhead {
  margin-top: 24px;
}

.nav-main a,
.nav-dropdown-trigger {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink-300);
  letter-spacing: 0.02em;
}

.nav-main a:hover { color: var(--ink-100); }

.nav-main a.btn-primary,
.nav-main a.btn-primary:hover {
  color: var(--white);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  text-align: inherit;
}

.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger {
  color: var(--ink-100);
}

.nav-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 6px;
  min-width: 248px;
  background: rgba(15, 11, 24, 0.96);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.18),
    0 20px 48px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

@supports ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .nav-dropdown-menu {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown-menu li {
  margin: 0;
}

.nav-dropdown-menu a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 11px 14px;
  border-radius: calc(var(--radius) - 4px);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-300);
  letter-spacing: 0.02em;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-item-label {
  color: var(--ink-100);
  font-weight: 600;
  line-height: 1.35;
}

.nav-dropdown-item-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-500);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(122, 47, 242, 0.12);
}

.nav-dropdown-menu a:hover .nav-dropdown-item-label,
.nav-dropdown-menu a:focus-visible .nav-dropdown-item-label,
.nav-dropdown-menu a.is-active .nav-dropdown-item-label {
  color: var(--white);
}

.nav-dropdown-menu a:hover .nav-dropdown-item-desc,
.nav-dropdown-menu a:focus-visible .nav-dropdown-item-desc {
  color: var(--ink-300);
}

.nav-dropdown-menu a.is-active {
  background: rgba(122, 47, 242, 0.16);
  box-shadow: inset 3px 0 0 var(--violet-light);
}

.nav-dropdown-menu a.is-active .nav-dropdown-item-desc {
  color: var(--ink-400);
}

@media (min-width: 901px) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown:has(.nav-dropdown-menu a.is-active) .nav-dropdown-trigger {
    color: var(--ink-100);
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid var(--border-light-strong);
  color: var(--ink-100);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header .header-mobile-cta {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 11px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  text-decoration: none;
  font-family: inherit;
}

.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-primary {
  background: var(--grad-flat);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(122, 47, 242, 0.28);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(122, 47, 242, 0.38);
}

.btn-light {
  background: var(--white);
  color: var(--ink-950);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
}

.btn-light:hover {
  color: var(--ink-950);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--violet-light);
  border: 1px solid var(--border-light-strong);
}

.btn-ghost:hover { color: var(--white); border-color: var(--violet-light); }

.btn-ghost-light {
  background: transparent;
  color: var(--ink-200);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-ghost-light:hover { color: var(--white); border-color: rgba(255, 255, 255, 0.5); }

.btn-sm { padding: 11px 20px; font-size: 14px; }

/* Hero (Layout 2) */
.hero-stack {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(
    155deg,
    #120a1f 0%,
    var(--surface-dark) 52%,
    var(--surface) 100%
  );
}

@media (min-width: 1025px) {
  .hero-stack {
    min-height: 100svh;
    min-height: 100dvh;
  }
}

.hero-stack::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(88px, 11vh, 132px);
  background: linear-gradient(to bottom, transparent, var(--surface));
  pointer-events: none;
  z-index: 2;
}

/* Ambient violet wash — off-center radials (background, not a solid beam) */
.hero-light {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 94%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 94%);
  background:
    radial-gradient(
      ellipse 130% 110% at 94% -18%,
      rgba(155, 92, 255, 0.22) 0%,
      rgba(122, 47, 242, 0.11) 34%,
      rgba(69, 19, 184, 0.04) 56%,
      transparent 74%
    ),
    radial-gradient(
      ellipse 90% 100% at 112% 38%,
      rgba(155, 92, 255, 0.14) 0%,
      rgba(122, 47, 242, 0.07) 40%,
      transparent 70%
    ),
    linear-gradient(
      125deg,
      transparent 38%,
      rgba(122, 47, 242, 0.04) 58%,
      rgba(155, 92, 255, 0.1) 76%,
      rgba(122, 47, 242, 0.05) 90%,
      transparent 100%
    );
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.92;
}

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

.hero-dark {
  position: relative;
  z-index: 1;
  background: transparent;
  color: var(--ink-100);
  padding: calc(var(--header-h) + clamp(72px, 8vh, 104px)) 0 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
}

.hero-copy {
  max-width: none;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: clamp(32px, 4vh, 48px);
}

.hero-seo-heading {
  margin: 0;
  padding: 0;
  font: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  max-width: 100%;
}

.hero-seo-title.kicker {
  margin-bottom: 36px;
  max-width: 100%;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.22em;
  white-space: normal;
  overflow-wrap: break-word;
}

.hero-seo-title.kicker::before {
  margin-top: 0.62em;
  align-self: start;
}

@media (min-width: 1280px) {
  .hero-seo-title.kicker {
    white-space: nowrap;
  }
}

.hero-title {
  font-size: clamp(28px, 3.75vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--ink-100);
}

/* Hero H1 accents — solid colors (no gradient; wraps cleanly). Gold = proof, violet = dream. */
.hero-title .em {
  background-image: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: currentColor;
  white-space: normal;
}

.hero-title .em-proof { color: var(--gold); }
.hero-title .em-dream { color: var(--violet-light); }
.hero-title .em-nowrap { white-space: nowrap; }

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

.hero-benefits li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.hero-benefit-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--grad-flat);
  position: relative;
}

.hero-benefit-mark::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hero-benefit-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-200);
}

.hero-benefit-text strong {
  color: var(--white);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.hero-dark .hero-actions .btn-primary,
.hero-dark .hero-actions .btn-primary:hover {
  color: var(--white);
}

.hero-dark .hero-actions .btn-ghost-light {
  color: var(--ink-100);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-dark .hero-actions .btn-ghost-light:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.hero-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-100);
  line-height: 1.4;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-mark {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--grad-flat);
  position: relative;
}

.hero-trust-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 4px;
  height: 7px;
  border: solid var(--white);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

@media (min-width: 1025px) {
  .hero-trust {
    flex-wrap: nowrap;
    font-size: 13px;
    gap: 16px;
  }
}

.hero-proof {
  font-size: 14px;
  color: var(--ink-300);
  max-width: 42ch;
  line-height: 1.5;
}

.hero-proof a { color: var(--violet-light); }
.hero-proof a:hover { color: var(--white); }

.hero-visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  height: 100%;
  min-height: 0;
  position: relative;
  z-index: 1;
}

.hero-founder-img {
  display: block;
  width: min(480px, 100%);
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 0;
}

/* Savings calculator */
.savings-calc-panel {
  position: relative;
  overflow: visible;
  container-type: inline-size;
  container-name: savings-calc;
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  background: var(--surface-elevated);
}

.savings-calc-head {
  margin-bottom: 24px;
}

.savings-calc-kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 10px;
}

.savings-calc-intro {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-300);
  margin: 0;
}

.savings-calc-control {
  margin-bottom: 24px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  background: rgba(11, 7, 19, 0.35);
}

.savings-calc-control-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.savings-calc-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-300);
}

.savings-calc-salary {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink-100);
  letter-spacing: -0.03em;
}

.savings-calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--violet) 0%,
    var(--violet-light) var(--slider-pct, 25%),
    var(--border-light-strong) var(--slider-pct, 25%),
    var(--border-light-strong) 100%
  );
  outline: none;
  cursor: pointer;
}

.savings-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--surface-elevated);
  background: var(--violet-light);
  box-shadow: 0 2px 8px rgba(122, 47, 242, 0.45);
  cursor: pointer;
}

.savings-calc-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--surface-elevated);
  background: var(--violet-light);
  box-shadow: 0 2px 8px rgba(122, 47, 242, 0.45);
  cursor: pointer;
}

.savings-calc-slider:focus-visible::-webkit-slider-thumb,
.savings-calc-slider:focus-visible::-moz-range-thumb {
  outline: 2px solid var(--violet-light);
  outline-offset: 2px;
}

.savings-calc-comparison-label {
  margin: 0 0 12px;
}

.savings-calc-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
}

.savings-calc.has-tooltip-open .savings-calc-rows {
  z-index: 30;
}

.savings-calc-row {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  background: rgba(11, 7, 19, 0.25);
}

.savings-calc-row.is-tooltip-open {
  z-index: 30;
  border-color: rgba(155, 92, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(155, 92, 255, 0.12);
}

.savings-calc-row-savings {
  border-color: rgba(52, 199, 123, 0.28);
  background: linear-gradient(
    155deg,
    rgba(52, 199, 123, 0.08) 0%,
    rgba(11, 7, 19, 0.2) 100%
  );
}

.savings-calc-row-savings.is-tooltip-open {
  border-color: rgba(52, 199, 123, 0.45);
  box-shadow: 0 0 0 1px rgba(52, 199, 123, 0.15);
}

.savings-calc-row-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.savings-calc-row-trigger::after {
  content: "+";
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  line-height: 1;
  color: var(--ink-500);
  transition: color 0.15s;
}

.savings-calc-row.is-tooltip-open .savings-calc-row-trigger::after {
  color: var(--violet-light);
}

.savings-calc-row-trigger:hover,
.savings-calc-row-trigger:focus-visible {
  background: rgba(155, 92, 255, 0.06);
  outline: none;
}

.savings-calc-row-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-300);
  line-height: 1.35;
}

.savings-calc-row-value {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink-100);
  letter-spacing: -0.02em;
  line-height: 1;
}

.savings-calc-row-value-savings {
  color: var(--ok);
}

@media (max-width: 900px) {
  .savings-calc-control-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .savings-calc-row-trigger {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    row-gap: 6px;
  }

  .savings-calc-row-label {
    grid-column: 1;
    grid-row: 1;
  }

  .savings-calc-row-value {
    grid-column: 1;
    grid-row: 2;
  }

  .savings-calc-row-trigger::after {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: center;
  }
}

.savings-calc-row-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 35;
  border-radius: 12px;
  border: 1px solid rgba(155, 92, 255, 0.32);
  background: linear-gradient(
    168deg,
    rgba(32, 22, 52, 0.98) 0%,
    rgba(11, 7, 19, 0.98) 100%
  );
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 40px rgba(155, 92, 255, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}

.savings-calc-row.is-tooltip-open .savings-calc-row-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.savings-calc-row-tooltip--above {
  top: auto;
  bottom: calc(100% + 10px);
  transform: translateY(6px) scale(0.98);
}

.savings-calc-row.is-tooltip-open .savings-calc-row-tooltip--above {
  transform: translateY(0) scale(1);
}

.savings-calc-tooltip-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink-400);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.savings-calc-tooltip-close:hover,
.savings-calc-tooltip-close:focus-visible {
  background: rgba(155, 92, 255, 0.18);
  color: var(--ink-100);
  outline: none;
}

.savings-calc-tooltip-body {
  padding: 14px 44px 14px 14px;
}

.savings-calc-tooltip-body p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-300);
}

.savings-calc-tooltip-body p:last-child {
  margin-bottom: 0;
}

.savings-calc-tooltip-body strong {
  color: var(--ink-100);
  font-weight: 600;
}

.savings-calc-tooltip-backdrop {
  position: absolute;
  inset: 0;
  z-index: 20;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: inherit;
  background: rgba(11, 7, 19, 0.62);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s;
  cursor: default;
}

.savings-calc.has-tooltip-open .savings-calc-tooltip-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.savings-calc-row-list {
  margin: 0;
  padding: 0 0 0 16px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-500);
}

.savings-calc-row-list li {
  margin-bottom: 6px;
}

.savings-calc-row-list li:last-child {
  margin-bottom: 0;
}

.savings-calc-row-list strong {
  font-weight: 600;
  color: var(--ink-300);
}

.savings-calc-footnote {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-500);
}

.hero-benefits-compact { margin-bottom: 24px; }

/* Proof bar */
.proof-bar {
  position: relative;
  z-index: 3;
  background: transparent;
  border: none;
  padding: 0 0 clamp(48px, 7vh, 80px);
  margin-top: 0;
}

.proof-bar-card {
  background: var(--surface-elevated);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 28px) clamp(12px, 2vw, 20px);
}

.proof-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.proof-stat {
  position: relative;
  padding: 6px clamp(12px, 2vw, 24px);
}

.proof-stat:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(155, 92, 255, 0.55) 22%,
    rgba(228, 193, 106, 0.45) 78%,
    transparent 100%
  );
}

.proof-stat strong {
  display: block;
  font-family: "Clash Display", sans-serif;
  font-size: clamp(26px, 3.5vw, 34px);
  color: var(--ink-100);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.proof-stat span {
  font-size: 13px;
  color: var(--ink-300);
  line-height: 1.4;
  display: block;
  max-width: 20ch;
  margin-inline: auto;
}

/* Split blocks */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.split-block-reverse .split-copy { order: 2; }
.split-block-reverse .split-media { order: 1; }

.split-copy p {
  color: var(--ink-300);
  margin-bottom: 16px;
  max-width: 52ch;
}

.split-copy strong { color: var(--ink-100); }

.split-copy .btn { margin-top: 12px; }

#problem .split-media {
  min-width: 0;
  width: 100%;
}

#problem .split-block-cta {
  width: 100%;
  margin-top: 12px;
}

#book .final-cta-grid {
  display: flex;
  justify-content: center;
}

#book .final-cta-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(100%, 640px);
}

#book .final-cta-copy h2 {
  max-width: 28ch;
}

#book .final-cta-copy > p {
  max-width: 100%;
  margin-inline: auto;
}

#book .hero-benefits {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  text-align: left;
}

#book .final-cta-btn {
  width: 100%;
  max-width: 360px;
  margin-top: 8px;
}

@media (min-width: 1025px) {
  #problem .split-block {
    grid-template-areas:
      "copy media"
      "cta media";
    align-items: center;
  }

  #problem .split-copy { grid-area: copy; }
  #problem .split-media { grid-area: 1 / 2 / 3 / 3; }
  #problem .split-block-cta { grid-area: cta; align-self: start; }
}

.pain-list {
  list-style: none;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain-list li {
  padding-left: 28px;
  position: relative;
  color: var(--ink-300);
  font-size: 16px;
}

.pain-list li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--surface-elevated);
  color: var(--violet-light);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Clash Display", sans-serif;
}

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

.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--ink-300);
  font-size: 15px;
}

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

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 4px;
  height: 7px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cost-list {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cost-list li {
  padding-left: 18px;
  position: relative;
  color: var(--ink-300);
  font-size: 15px;
  max-width: 52ch;
}

.cost-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--violet-light);
  font-weight: 700;
}

/* Credibility grid */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cred-card {
  background: var(--surface-elevated);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.cred-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--ink-100);
}

.cred-card p {
  font-size: 15px;
  color: var(--ink-300);
  line-height: 1.55;
}

/* Value props — pillar cards (contact page) */
.home-grow-split.split-block {
  align-items: center;
}

.home-grow-split .split-copy {
  text-align: left;
}

.home-grow-split .split-copy .sec-title {
  text-align: left;
}

.home-grow-split .split-copy .sec-lead {
  max-width: 52ch;
  margin-inline: 0;
}

.home-grow-outcomes-panel {
  min-width: 0;
  width: 100%;
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  background: var(--surface-elevated);
}

.home-grow-outcomes-kicker {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink-100);
}

.home-grow-outcomes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-grow-outcome {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  background: rgba(11, 7, 19, 0.35);
}

.home-grow-outcome-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  background: linear-gradient(155deg, var(--surface-elevated) 0%, rgba(155, 92, 255, 0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-light);
}

.home-grow-outcome-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.home-grow-outcome-body {
  min-width: 0;
}

.home-grow-outcome-title {
  margin: 0 0 4px;
  font-family: "Clash Display", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-100);
}

.home-grow-outcome-proof {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-300);
}

/* Homepage — remote staffing value props */
.staffing-vp-head .sec-lead {
  max-width: 62ch;
}

.staffing-vp-marquee {
  position: relative;
  width: 100%;
  margin-bottom: clamp(8px, 2vw, 16px);
}

.staffing-vp-marquee__shell {
  position: relative;
}

.staffing-vp-marquee__viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.staffing-vp-marquee:not(.staffing-vp-marquee--manual):hover .staffing-vp-marquee__track {
  animation-play-state: paused;
}

.staffing-vp-marquee__nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(11, 7, 19, 0.92);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  opacity: 1;
  transform: translateY(-50%);
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.staffing-vp-marquee__nav svg {
  width: 18px;
  height: 18px;
}

.staffing-vp-marquee__nav:hover,
.staffing-vp-marquee__nav:focus-visible {
  background: var(--violet-deep);
  border-color: var(--violet-light);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transform: translateY(-50%) scale(1.05);
  outline: none;
}

.staffing-vp-marquee__nav--prev {
  left: clamp(8px, 2vw, 20px);
}

.staffing-vp-marquee__nav--next {
  right: clamp(8px, 2vw, 20px);
}

.staffing-vp-marquee__track {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 2vw, 24px);
  width: max-content;
  margin: 0;
  padding: 4px 0 8px;
  list-style: none;
  animation: staffing-vp-marquee 120s linear infinite;
  will-change: transform;
}

.staffing-vp-marquee__slide {
  flex: 0 0 auto;
  width: clamp(280px, 32vw, 380px);
  margin: 0;
}

.staffing-vp-marquee__slide .staffing-vp-card {
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.staffing-vp-marquee__slide:hover .staffing-vp-card,
.staffing-vp-marquee__slide:focus-within .staffing-vp-card {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

@keyframes staffing-vp-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .staffing-vp-marquee__track {
    animation: none;
  }

  .staffing-vp-marquee__viewport {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .staffing-vp-marquee__viewport::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 720px) {
  .staffing-vp-marquee__slide {
    width: clamp(260px, 78vw, 340px);
  }
}

.staffing-vp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(22px, 2.5vw, 28px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  background: var(--surface-elevated);
  text-align: left;
}

.staffing-vp-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid rgba(155, 92, 255, 0.18);
  background: rgba(155, 92, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-light);
}

.staffing-vp-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.staffing-vp-card-title {
  margin: 0 0 12px;
  font-family: "Clash Display", sans-serif;
  font-size: clamp(17px, 1.8vw, 19px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink-100);
}

.staffing-vp-card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-300);
}

.staffing-vp-close {
  max-width: none;
  margin: clamp(28px, 4vw, 36px) auto 0;
  text-align: center;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.staffing-vp-outcomes {
  margin: 0 auto;
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-300);
}

.staffing-vp-cta {
  margin-top: clamp(28px, 4vw, 36px);
}

@media (max-width: 900px) {
  .staffing-vp-outcomes {
    max-width: 38ch;
  }
}

.home-agency-close-lead {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-300);
}

.home-agency-close-lead:last-child {
  margin-bottom: 0;
}

/* Homepage — common roles */
.roles-section-head .sec-lead {
  max-width: 52ch;
}

.roles-section-kicker {
  margin: clamp(16px, 2.5vw, 20px) auto 0;
  max-width: 52ch;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink-100);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 28px);
  align-items: stretch;
}

.roles-panel {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  padding: clamp(22px, 3vw, 28px);
  background: var(--surface-elevated);
}

.roles-panel-title {
  margin: 0 0 16px;
  font-family: "Clash Display", sans-serif;
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink-100);
}

.roles-list {
  list-style: none;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.roles-list li {
  padding-left: 16px;
  position: relative;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-300);
}

.roles-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet-light);
}

.roles-panel-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--violet-light);
  text-decoration: none;
}

.roles-panel-link:hover,
.roles-panel-link:focus-visible {
  text-decoration: underline;
}

.roles-cta {
  margin-top: clamp(28px, 4vw, 36px);
}

.roles-cta-note {
  max-width: 38ch;
  margin: 12px auto 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-500);
}

.why-staffing-head {
  margin-bottom: clamp(24px, 4vw, 32px);
}

.why-staffing-head .sec-lead {
  max-width: 46ch;
}

.why-staffing-accordion {
  max-width: 760px;
  margin-inline: auto;
}

.why-staffing-accordion .faq-list {
  margin-top: 0;
}

.why-staffing-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(24px, 4vw, 32px);
  text-align: center;
}

.why-staffing-cta {
  margin-top: clamp(24px, 4vw, 32px);
}

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

.vp-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 28px);
}

.vp-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.vp-pillar-media {
  width: 100%;
  margin-bottom: 0;
  position: relative;
}

.vp-pillar-expand-trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: zoom-in;
}

.vp-pillar-expand-trigger:focus-visible {
  outline: 2px solid var(--violet-light);
  outline-offset: 4px;
  border-radius: var(--radius-lg);
}

.vp-pillar-expand-hint {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(11, 7, 19, 0.72);
  color: var(--ink-100);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.vp-pillar-expand-trigger:hover .vp-pillar-expand-hint,
.vp-pillar-expand-trigger:focus-visible .vp-pillar-expand-hint {
  opacity: 1;
}

.vp-pillar-expand-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s;
}

.vp-pillar-expand-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vp-pillar-expand-overlay[hidden] {
  display: none;
}

.vp-pillar-expand-backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(11, 7, 19, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: default;
}

.vp-pillar-expand-dialog {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: min(640px, calc(100% - 32px));
  max-width: 100%;
  max-height: min(72vh, 520px);
  margin-inline: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(155, 92, 255, 0.32);
  background: linear-gradient(
    168deg,
    rgba(32, 22, 52, 0.98) 0%,
    rgba(11, 7, 19, 0.98) 100%
  );
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 40px rgba(155, 92, 255, 0.14);
  overflow: auto;
}

.vp-pillar-expand-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(11, 7, 19, 0.88);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.vp-pillar-expand-close svg {
  width: 16px;
  height: 16px;
}

.vp-pillar-expand-close:hover,
.vp-pillar-expand-close:focus-visible {
  background: var(--violet-deep);
  border-color: var(--violet-light);
  color: var(--white);
  transform: scale(1.05);
}

.vp-pillar-expand-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

body.vp-pillar-expand-open {
  overflow: hidden;
}

.vp-pillar-media .img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 200px;
}

.vp-pillar-title {
  order: 1;
  font-family: "Clash Display", sans-serif;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--ink-100);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.vp-pillar-proof {
  order: 3;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-300);
  max-width: 26ch;
  margin: 12px 0 0;
}

.vp-pillar-expand-trigger,
.vp-pillar > .vp-pillar-media {
  order: 2;
  margin-top: 12px;
}

.vp-pillar-media .img-placeholder:has(img) {
  background: #f0eef5;
}

.vp-pillar-media .img-placeholder img {
  object-fit: contain;
}

@media (max-width: 768px) {
  .vp-pillar-grid {
    grid-template-columns: 1fr;
    gap: clamp(36px, 10vw, 48px);
  }

  .vp-pillar-media .img-placeholder {
    max-height: none;
  }

  .vp-pillar-proof {
    max-width: 36ch;
  }
}

/* Talent pool profiles */
#talent .section-head .sec-lead {
  max-width: 68ch;
}

.talent-profile {
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    168deg,
    rgba(34, 27, 48, 0.98) 0%,
    rgba(21, 16, 31, 0.98) 100%
  );
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.talent-profile-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.talent-profile-head-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.talent-profile-id {
  min-width: 0;
  flex: 1;
}

.talent-profile-name {
  margin: 0;
  font-family: "Clash Display", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink-100);
  letter-spacing: -0.01em;
}

.talent-profile-role {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--violet-light);
}

.talent-profile-highlight {
  margin: 0;
  width: 100%;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-200);
}

.talent-profile-industry {
  flex-shrink: 0;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}

.talent-profile-industry-healthcare {
  background: rgba(155, 92, 255, 0.14);
  border: 1px solid rgba(155, 92, 255, 0.32);
  color: #c9a8ff;
}

.talent-profile-industry-legal {
  background: rgba(228, 193, 106, 0.12);
  border: 1px solid rgba(228, 193, 106, 0.32);
  color: #e8d08a;
}

.talent-profile-meta {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: grid;
  gap: 12px;
}

.talent-profile-meta > div,
.talent-profile-meta-row {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 10px 20px;
  align-items: start;
}

.talent-profile-meta > div.talent-profile-meta-row-stack,
.talent-profile-meta-row-stack {
  display: block;
  width: 100%;
}

.talent-profile-meta > div.talent-profile-meta-row-stack dt,
.talent-profile-meta-row-stack dt {
  display: block;
  margin-bottom: 6px;
}

.talent-profile-meta > div.talent-profile-meta-row-stack dd,
.talent-profile-meta-row-stack dd {
  display: block;
  width: 100%;
  max-width: none;
  text-align: left;
}

.talent-profile-meta-row-tools dd {
  min-height: calc(1.45em * 3);
}

.talent-profile-meta dt {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
  line-height: 1.35;
}

.talent-profile-meta dd {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-200);
  text-align: right;
  line-height: 1.45;
  min-width: 0;
}

.talent-profile-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: center;
}

.talent-profile-avail {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #5ee09f;
  white-space: nowrap;
}

#talent .section-cta-row {
  margin-top: clamp(28px, 4vw, 40px);
}

.testimonial-placeholder {
  margin-top: 32px;
  padding: 32px;
  border: 1px dashed var(--border-light-strong);
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--surface-elevated);
}

.placeholder-label {
  font-family: "Clash Display", sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--ink-100);
}

.placeholder-note {
  font-size: 13px;
  color: var(--ink-300);
  font-style: italic;
}

/* Comparison table */
.compare-table-wrap { overflow-x: auto; }

.compare-split.split-block {
  align-items: start;
}

#compare .split-copy {
  text-align: left;
}

#compare .split-copy .sec-title {
  text-align: left;
}

#compare .split-copy .sec-lead {
  max-width: none;
  margin-inline: 0;
}

#compare .split-media {
  min-width: 0;
  width: 100%;
}

#compare .split-copy .home-agency-close-lead {
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 500px;
}

.compare-table th,
.compare-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  font-family: "Clash Display", sans-serif;
  font-size: 15px;
  background: var(--surface-elevated);
  color: var(--ink-100);
  text-align: center;
}

.compare-table thead th.compare-table-corner {
  padding-inline: 8px;
}

.compare-table thead th:first-child {
  text-align: left;
  line-height: 1.25;
}

.compare-table thead th:first-child,
.compare-table tbody th[scope="row"] {
  width: 5.75rem;
  max-width: 5.75rem;
  min-width: 5.75rem;
  padding-inline: 8px 10px;
  white-space: normal;
  vertical-align: middle;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.compare-table tbody th[scope="row"] {
  color: var(--ink-100);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.compare-table thead th.compare-col-head {
  width: 3.875rem;
  max-width: 3.875rem;
  padding-inline: 6px;
  line-height: 1.25;
  vertical-align: middle;
  white-space: normal;
}

.compare-table td.compare-cell-mark {
  width: 3.875rem;
  max-width: 3.875rem;
  padding-inline: 6px;
  text-align: center;
  vertical-align: middle;
}

.compare-table td.compare-cell-mark .mark {
  margin-right: 0;
}

.compare-table td { color: var(--ink-300); }

.compare-table .col-kiustar {
  background: rgba(122, 47, 242, 0.12);
  color: var(--ink-100);
  font-weight: 500;
}

.compare-table thead .col-kiustar {
  background: var(--violet);
  color: var(--white);
}

.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  margin-right: 8px;
  vertical-align: middle;
}

.mark.good { background: rgba(52, 199, 123, 0.18); color: #5ee09a; }
.mark.bad { background: rgba(220, 80, 80, 0.16); color: #ff8a8a; }
.mark.ok { background: rgba(228, 193, 106, 0.16); color: var(--gold); }

@media (max-width: 768px) {
  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-inline: calc(-1 * clamp(20px, 5vw, 48px));
    padding-inline: clamp(20px, 5vw, 48px);
  }

  .compare-table {
    min-width: 280px;
    font-size: 13px;
    table-layout: fixed;
  }

  .compare-table thead th:first-child,
  .compare-table tbody th[scope="row"] {
    width: 4.25rem;
    max-width: 4.25rem;
    min-width: 4.25rem;
    line-height: 1.25;
    padding-block: 10px;
    padding-inline: 4px 5px;
  }

  .compare-table tbody th[scope="row"] {
    font-size: 12px;
    line-height: 1.25;
    position: sticky;
    left: 0;
    z-index: 1;
    background: var(--surface);
    box-shadow: 1px 0 0 var(--border-light);
  }

  .compare-table thead th.compare-col-head,
  .compare-table td.compare-cell-mark {
    width: 3.25rem;
    max-width: 3.25rem;
    padding-inline: 4px;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 6px;
  }

  .compare-table thead th {
    font-size: 13px;
  }
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 40px);
  counter-reset: step;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: var(--border-light-strong);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 clamp(8px, 2vw, 20px);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 1px solid var(--border-light-strong);
  background: var(--surface-elevated);
  font-family: "Clash Display", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-100);
}

.step h4 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 10px;
  color: var(--ink-100);
}

.step p {
  font-size: 15px;
  color: var(--ink-300);
  line-height: 1.55;
  max-width: 34ch;
  margin-inline: auto;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card-light {
  background: var(--surface-elevated);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.card-light h3 { font-size: 22px; margin-bottom: 10px; color: var(--ink-100); }
.card-light p { font-size: 15px; color: var(--ink-300); margin-bottom: 16px; }
.card-link { font-weight: 600; font-size: 14px; }

/* FAQ */
.faq-toolbar {
  display: flex;
  justify-content: flex-end;
  margin: 16px 0 8px;
}

.faq-toggle-all,
.faq-toolbar [data-faq-toggle] {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  border: none;
  background: none;
  color: var(--ink-300);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.faq-toolbar [data-faq-toggle]:hover,
.faq-toolbar [data-faq-toggle]:focus-visible {
  color: var(--ink-100);
}

.faq-toolbar [data-faq-toggle]:focus-visible {
  outline: 2px solid var(--violet-light);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-list { margin-top: 16px; max-width: 800px; }
.faq-list.wide { max-width: none; }

.faq-item { border-bottom: 1px solid var(--hairline); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--ink-100);
  font-family: "Clash Display", sans-serif;
  font-size: 17px;
  font-weight: 600;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: "+";
  color: var(--violet);
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item.open .faq-q::after { content: "−"; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  padding: 0 0 20px;
  color: var(--ink-300);
  font-size: 16px;
  max-width: 72ch;
}

.faq-a-inner p {
  margin: 0 0 14px;
  line-height: 1.6;
}

.faq-a-inner p:last-child {
  margin-bottom: 0;
}

.faq-a-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-a-list li {
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}

.faq-a-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--violet-light);
  font-weight: 700;
}

.final-cta {
  background: linear-gradient(155deg, #120a1f 0%, var(--surface-dark) 100%);
  color: var(--ink-100);
  padding: clamp(72px, 10vw, 100px) 0;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-proof-dark { margin-top: 16px; }

.final-cta-copy h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  color: var(--white);
}

.final-cta-copy > p {
  color: var(--ink-200);
  max-width: 48ch;
  margin-bottom: 8px;
}

.final-cta .kicker { color: var(--violet-light); }
.final-cta .kicker::before { background: var(--violet-light); }

/* Footer */
.site-footer-light {
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.content-placeholder {
  margin-top: 20px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px dashed var(--border-light-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-elevated);
}

.content-placeholder-label {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 10px;
}

.content-placeholder p {
  color: var(--ink-300);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.content-placeholder p + p {
  margin-top: 10px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.contact-card {
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  background: var(--surface-elevated);
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--ink-100);
}

.contact-card p {
  color: var(--ink-300);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.contact-card a {
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* Contact page */
.contact-page {
  padding: calc(var(--header-h) + 48px) 0 clamp(48px, 6vw, 64px);
  background: var(--surface);
  color: var(--on-surface);
}

.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

.contact-hero-title {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink-100);
  margin-bottom: 18px;
}

.contact-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-300);
  max-width: 420px;
  margin-bottom: 0;
}

.contact-hero-benefits {
  margin-top: 24px;
  margin-bottom: 0;
}

.contact-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.contact-hero-stat {
  padding: clamp(16px, 2.5vw, 20px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  background: var(--surface-elevated);
}

.contact-hero-stat strong {
  display: block;
  font-family: "Clash Display", sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink-100);
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.contact-hero-stat span {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-300);
}

.contact-form-panel {
  background: var(--surface-elevated);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
}

.contact-form {
  display: block;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.contact-field label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-light);
}

.contact-label-optional {
  color: var(--ink-500);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-family: inherit;
  font-size: 12px;
}

.contact-control,
.contact-field input,
.contact-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  background: var(--surface-alt);
  color: var(--ink-100);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-field textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 14px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--ink-500);
}

.contact-field input:hover,
.contact-field textarea:hover {
  border-color: var(--hairline-strong);
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(155, 92, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(155, 92, 255, 0.16);
  background: var(--surface-elevated);
}

/* Custom select */
.contact-select {
  position: relative;
}

.contact-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-select-trigger {
  position: relative;
  width: 100%;
  min-height: 48px;
  padding: 13px 44px 13px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  background: var(--surface-alt);
  color: var(--ink-100);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-select-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-select-value.is-placeholder {
  color: var(--ink-500);
}

.contact-select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--violet-light);
  display: flex;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.contact-select.is-open .contact-select-chevron {
  transform: translateY(-50%) rotate(180deg);
}

.contact-select-trigger:hover {
  border-color: var(--hairline-strong);
  background: var(--surface-elevated);
}

.contact-select-trigger:focus-visible {
  outline: none;
  border-color: rgba(155, 92, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(155, 92, 255, 0.16);
  background: var(--surface-elevated);
}

.contact-select.is-open .contact-select-trigger {
  border-color: rgba(155, 92, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(155, 92, 255, 0.16);
  background: var(--surface-elevated);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.contact-select.is-invalid .contact-select-trigger {
  border-color: rgba(228, 193, 106, 0.55);
  box-shadow: 0 0 0 3px rgba(228, 193, 106, 0.12);
}

.contact-select-menu {
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  top: 100%;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid rgba(155, 92, 255, 0.45);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--surface-elevated);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  max-height: 260px;
  overflow-y: auto;
}

.contact-select-menu[hidden] {
  display: none !important;
}

.contact-select-group-label {
  padding: 10px 12px 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-light);
  pointer-events: none;
}

.contact-select-option {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-200);
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}

.contact-select-option:hover,
.contact-select-option[aria-selected="true"] {
  background: rgba(155, 92, 255, 0.14);
  color: var(--ink-100);
}

.contact-select-option[aria-selected="true"] {
  font-weight: 600;
}

.contact-form-submit {
  width: 100%;
  margin-top: 6px;
  justify-content: center;
}

.contact-form-note {
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-500);
  margin: 14px 0 0;
}

.contact-form-note a {
  color: var(--ink-300);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form-note a:hover {
  color: var(--ink-100);
}

.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 16px;
  gap: 16px;
}

.contact-success[hidden],
.contact-form-panel-inner[hidden] {
  display: none !important;
}

.contact-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(52, 199, 123, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-success-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--ok);
}

.contact-success-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-100);
  margin: 0;
}

.contact-success-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-300);
  max-width: 300px;
  margin: 0;
}

@media (max-width: 960px) {
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-hero-sub {
    max-width: none;
  }

  .contact-hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* Homepage — trust / client testimonials */
.trust-carousel-marquee {
  position: relative;
  width: 100%;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.trust-carousel-marquee__shell {
  position: relative;
}

.trust-carousel-viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.trust-carousel-marquee:not(.trust-carousel-marquee--manual):hover .trust-carousel-track {
  animation-play-state: paused;
}

.trust-carousel-marquee__nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(11, 7, 19, 0.92);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  opacity: 1;
  transform: translateY(-50%);
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.trust-carousel-marquee__nav svg {
  width: 18px;
  height: 18px;
}

.trust-carousel-marquee__nav:hover,
.trust-carousel-marquee__nav:focus-visible {
  background: var(--violet-deep);
  border-color: var(--violet-light);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transform: translateY(-50%) scale(1.05);
  outline: none;
}

.trust-carousel-marquee__nav--prev {
  left: clamp(8px, 2vw, 20px);
}

.trust-carousel-marquee__nav--next {
  right: clamp(8px, 2vw, 20px);
}

.trust-carousel-track {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 2vw, 24px);
  width: max-content;
  margin: 0;
  padding: 4px 0 8px;
  list-style: none;
  animation: trust-carousel-marquee 76s linear infinite;
  will-change: transform;
}

.trust-carousel-slide {
  flex: 0 0 auto;
  width: clamp(252px, 30vw, 352px);
  margin: 0;
}

.trust-carousel-trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  background: none;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: zoom-in;
}

.trust-carousel-trigger:focus-visible {
  outline: 2px solid var(--violet-light);
  outline-offset: 4px;
}

.trust-carousel-trigger .contact-message-shot {
  aspect-ratio: 3 / 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-carousel-trigger .contact-message-shot img {
  transform: scale(1.28);
  transform-origin: top left;
  object-position: top left;
}

.trust-carousel-trigger:hover .contact-message-shot,
.trust-carousel-trigger:focus-visible .contact-message-shot {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.trust-carousel-trigger:hover .vp-pillar-expand-hint,
.trust-carousel-trigger:focus-visible .vp-pillar-expand-hint {
  opacity: 1;
}

@keyframes trust-carousel-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-carousel-track {
    animation: none;
  }

  .trust-carousel-viewport {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .trust-carousel-viewport::-webkit-scrollbar {
    display: none;
  }
}

.trust-carousel-lightbox {
  gap: clamp(8px, 1.5vw, 16px);
  align-items: center;
  justify-content: center;
}

.trust-carousel-lightbox-dialog {
  margin-inline: clamp(52px, 8vw, 72px);
  overflow: hidden;
  max-height: min(85vh, 720px);
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.trust-carousel-lightbox-dialog .vp-pillar-expand-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(85vh, 720px);
  object-fit: contain;
  vertical-align: top;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(155, 92, 255, 0.32);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(155, 92, 255, 0.14);
}

.trust-carousel-nav {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(11, 7, 19, 0.88);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.trust-carousel-nav svg {
  width: 18px;
  height: 18px;
}

.trust-carousel-nav:hover,
.trust-carousel-nav:focus-visible {
  background: var(--violet-deep);
  border-color: var(--violet-light);
  transform: scale(1.05);
}

@media (max-width: 720px) {
  .trust-carousel-slide {
    width: clamp(232px, 70vw, 300px);
  }

  .trust-carousel-lightbox {
    flex-direction: column;
    justify-content: center;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }

  .trust-carousel-lightbox-dialog {
    order: 1;
    width: min(640px, calc(100% - 24px));
    max-height: min(72vh, 560px);
    margin-inline: auto;
  }

  .trust-carousel-lightbox-dialog .vp-pillar-expand-img {
    max-height: min(72vh, 560px);
  }

  .trust-carousel-nav {
    position: absolute;
    bottom: max(20px, env(safe-area-inset-bottom));
    top: auto;
    transform: none;
    width: 48px;
    height: 48px;
  }

  .trust-carousel-nav--prev {
    left: max(16px, env(safe-area-inset-left));
  }

  .trust-carousel-nav--next {
    right: max(16px, env(safe-area-inset-right));
  }
}

/* Contact page — post-hero sections */
.contact-messages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.contact-message-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-message-trigger {
  border-radius: var(--radius-lg);
}

.contact-message-shot {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  background: var(--surface-elevated);
  overflow: hidden;
}

.contact-message-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.contact-message-shot--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
  border-style: dashed;
  background: rgba(167, 139, 250, 0.04);
}

.contact-message-placeholder-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-300);
}

.contact-message-placeholder-type {
  font-size: 12px;
  color: var(--violet-light);
}

.contact-message-channel {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet-light);
}

.contact-message-caption {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-300);
}

.contact-faq .sec-title,
.about-faq .sec-title {
  margin-bottom: 0;
}

.contact-faq .section-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(40px, 6vw, 56px);
}

@media (max-width: 960px) {
  .contact-messages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .contact-messages-grid {
    grid-template-columns: 1fr;
  }
}

/* About page */
.about-guide-leads {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 62ch;
  margin-bottom: 28px;
}

.about-guide-empathy,
.about-guide-authority {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-300);
  margin: 0;
}

.about-guide-authority {
  padding-left: 18px;
  border-left: 3px solid var(--violet);
  color: var(--ink-200);
}

.about-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 52ch;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
  color: var(--ink-300);
  line-height: 1.5;
}

.about-callout strong {
  color: var(--ink-100);
}

.about-draft-field {
  display: inline;
  padding: 0 6px;
  border-radius: 4px;
  background: rgba(167, 139, 250, 0.12);
  border-bottom: 1px dashed var(--violet-light);
  color: var(--violet-light);
  font-size: 0.95em;
  white-space: nowrap;
}

.about-story-prose {
  max-width: 68ch;
}

.about-story-prose p {
  color: var(--ink-300);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.about-story-prose p:last-child {
  margin-bottom: 0;
}

.about-proof-note {
  max-width: 62ch;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-300);
}

.about-proof-extra {
  max-width: 480px;
  margin: 24px auto 0;
}

.about-leader-section .section-head {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.about-founder-layout {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 2.35fr);
  column-gap: clamp(32px, 4vw, 56px);
  align-items: stretch;
}

.about-founder-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  min-width: 0;
  min-height: 0;
  align-self: start;
  container-type: inline-size;
  container-name: founder-aside;
}

.about-founder-photo {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
}

.about-founder-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.about-founder-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
  width: 100%;
  min-height: calc(100cqw * 3 / 4);
  overflow: hidden;
  background: var(--surface-alt);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2vw, 24px);
}

.about-founder-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.about-founder-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.about-founder-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.about-founder-header {
  flex-shrink: 0;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.about-founder-main {
  min-width: 0;
}

.about-founder-name {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--ink-100);
}

.about-founder-header .about-founder-name {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 4px;
  color: var(--ink-200);
}

.about-founder-header .about-leader-title {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 400;
  color: var(--ink-500);
  margin: 0;
}

.about-founder-card-quote {
  margin: 0 0 10px;
  font-size: clamp(16px, 1.75vw, 20px);
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink-100);
}

.about-founder-connect {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ok);
  text-decoration: none;
  transition: color 0.15s ease;
}

.about-founder-connect:hover {
  color: #4ade94;
  text-decoration: underline;
}

.about-founder-connect svg {
  flex-shrink: 0;
}

.about-founder-intro {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-200);
}

.about-founder-prose p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-300);
}

.about-founder-prose p:last-child {
  margin-bottom: 0;
}

.about-founder-chapter {
  margin-bottom: 28px;
}

.about-founder-chapter:last-child {
  margin-bottom: 0;
}

.about-founder-chapter-label {
  margin: 0 0 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-light);
}

.about-founder-chapter h3 {
  margin: 0 0 10px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
  color: var(--ink-100);
}

.about-founder-chapter p {
  margin: 0;
}

.about-leader-split {
  align-items: end;
}

.about-leader-split .split-copy {
  padding-bottom: clamp(48px, 6vw, 72px);
}

.about-leader-split .split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
}

.about-leader-split .split-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 4 / 5;
}

.about-leader-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 10px;
}

.about-leader-split h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 8px;
  color: var(--ink-100);
}

.about-leader-title {
  font-size: 17px;
  color: var(--ink-300);
  margin-bottom: 24px;
}

.about-leader-bio {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-300);
  margin-bottom: 20px;
}

.about-leader-bio p {
  margin: 0 0 14px;
}

.about-leader-bio p:last-child {
  margin-bottom: 0;
}

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

.team-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-elevated);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.team-card.is-lead {
  border-color: rgba(167, 139, 250, 0.45);
}

.team-card-photo {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--surface-elevated), var(--surface-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  text-align: center;
  width: 100%;
  height: 100%;
  border-bottom: 1px dashed var(--border-light-strong);
}

.team-card-photo-placeholder span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.team-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-card-body h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--ink-100);
}

.team-card-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--violet-light);
  margin-bottom: 10px;
}

.team-card-body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-300);
  margin: 0;
  flex: 1;
}

.team-card-body .content-placeholder {
  margin-top: 12px;
  padding: 14px;
}

.team-card-body .content-placeholder p {
  font-size: 13px;
}

.about-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-diff-card {
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  background: var(--surface-elevated);
}

.about-diff-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--ink-100);
}

.about-diff-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-300);
  margin: 0 0 16px;
}

.about-trust-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-trust-compact li {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  background: var(--surface-elevated);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-300);
}

.about-trust-compact a {
  font-weight: 600;
  color: var(--ink-100);
}

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

.about-result-card {
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  background: var(--surface-elevated);
  text-align: center;
}

.about-result-card strong {
  display: block;
  font-family: "Clash Display", sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink-100);
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}

.about-result-card span {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-300);
  max-width: 22ch;
  margin-inline: auto;
}

.about-founder-quote {
  margin: 0 0 24px;
  padding: 0;
  border: none;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink-100);
  font-style: normal;
}

.about-leader-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-story-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 28px);
}

.about-story-step {
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  background: var(--surface-elevated);
}

.about-story-step-label {
  margin: 0 0 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-light);
}

.about-story-step h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--ink-100);
}

.about-story-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-300);
}

.about-journey-steps {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin-inline: auto;
}

.about-story-step-payoff {
  border-color: rgba(122, 47, 242, 0.28);
  background: linear-gradient(
    155deg,
    rgba(122, 47, 242, 0.08) 0%,
    var(--surface-elevated) 100%
  );
}

.about-mvv-section .section-head {
  margin-bottom: clamp(32px, 4vw, 44px);
}

.about-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 18px);
}

.about-mvv-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(20px, 2vw, 24px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  background: var(--surface-elevated);
}

.about-mvv-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid rgba(155, 92, 255, 0.18);
  background: rgba(155, 92, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-light);
}

.about-mvv-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.about-mvv-card-title {
  margin: 0 0 10px;
  font-family: "Clash Display", sans-serif;
  font-size: clamp(17px, 1.5vw, 19px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink-100);
}

.about-mvv-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-300);
}

.about-mission-block {
  max-width: 62ch;
  margin-bottom: clamp(28px, 4vw, 40px);
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  background: var(--surface-elevated);
}

.about-mission-title {
  margin: 0 0 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-light);
}

.about-mission-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-200);
}

.about-values-grid,
.about-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.about-value-card,
.about-service-card {
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  background: var(--surface-elevated);
}

.about-value-label {
  margin: 0 0 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-light);
}

.about-value-card h3,
.about-service-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--ink-100);
}

.about-value-card p,
.about-service-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-300);
}

.about-service-card .card-link {
  display: inline-block;
  margin-top: 16px;
}

.about-faq .section-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(40px, 6vw, 56px);
}

.page-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.final-cta .hero-actions {
  margin-top: 24px;
}

@media (max-width: 960px) {
  .about-founder-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-founder-story {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .about-founder-aside {
    display: grid;
    grid-template-columns: minmax(112px, 32%) minmax(0, 1fr);
    gap: clamp(12px, 3vw, 16px);
    align-items: stretch;
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
  }

  .about-founder-photo {
    width: 100%;
    max-width: none;
    aspect-ratio: 4 / 5;
    max-height: 168px;
    height: auto;
  }

  .about-founder-card {
    margin-top: 0;
    min-height: 0;
    height: auto;
    align-self: stretch;
    justify-content: space-between;
    padding: clamp(14px, 3.5vw, 18px);
  }

  .about-founder-card-quote {
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .about-founder-connect {
    font-size: 14px;
  }

  .about-founder-header {
    margin-bottom: 36px;
  }

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

  .team-grid,
  .about-diff-grid,
  .about-trust-compact,
  .about-story-steps,
  .about-values-grid,
  .about-services-grid,
  .about-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-founder-aside {
    grid-template-columns: 96px minmax(0, 1fr);
    max-width: 100%;
    gap: 12px;
  }

  .about-founder-photo {
    max-height: 140px;
    aspect-ratio: 4 / 5;
  }

  .about-founder-card {
    padding: 14px;
  }

  .about-founder-card-quote {
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .about-founder-connect {
    font-size: 13px;
    gap: 6px;
  }

  .about-founder-connect svg {
    width: 18px;
    height: 18px;
  }

  .team-grid,
  .about-diff-grid,
  .about-trust-compact,
  .about-story-steps,
  .about-values-grid,
  .about-mvv-grid,
  .about-services-grid,
  .about-results-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand img { height: 44px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: var(--ink-300); font-size: 14px; max-width: 28ch; }

.footer-col h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--ink-300); font-size: 14px; }
.footer-col a:hover { color: var(--ink-100); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--ink-500);
}

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

.footer-legal a {
  color: var(--ink-500);
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--ink-300);
}

.footer-legal-sep {
  color: var(--ink-500);
  user-select: none;
}

/* Image placeholders */
.img-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-light-strong);
  background: linear-gradient(145deg, var(--surface-elevated), var(--surface-alt));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.hero-dark .img-placeholder {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.hero-dark .img-placeholder .ph-label { color: var(--ink-300); }
.hero-dark .img-placeholder .ph-file { color: var(--ink-500); }

.img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.img-placeholder:has(img) {
  border-style: solid;
  border-color: var(--hairline);
  background: var(--surface-elevated);
}

.img-placeholder .ph-icon {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--violet-light);
  letter-spacing: 0.15em;
}

.img-placeholder .ph-label {
  font-size: 13px;
  color: var(--ink-300);
  max-width: 24ch;
  line-height: 1.4;
}

.img-placeholder .ph-file {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--ink-500);
  opacity: 0.9;
}

/* Inner pages (healthcare, legal, privacy) — dark hero legacy */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 64px;
  background: var(--surface-dark);
  color: var(--ink-100);
}

.page-hero .kicker { color: var(--violet-light); }
.page-hero .sec-title,
.page-hero h1 { color: var(--ink-100); }
.page-hero .hero-lead,
.page-hero .sec-lead { color: var(--ink-300); }

.page-hero-centered .wrap {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.page-hero-centered .hero-lead {
  margin-inline: auto;
}

.page-hero-centered .industry-hero-benefits {
  max-width: 38ch;
  margin-inline: auto;
  text-align: left;
}

.page-hero-centered .hero-actions {
  justify-content: center;
}

.page-hero h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 16px; }
.page-hero .hero-lead { font-size: 19px; max-width: 54ch; margin-bottom: 24px; }

.section-alt { background: var(--surface-alt); }

.card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--on-surface-muted); }

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

.card-grid:not(.industries) {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .card-grid.industries {
    grid-template-columns: 1fr;
  }
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.compare-col {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--surface);
}

.compare-col.highlight {
  border-color: rgba(122, 47, 242, 0.3);
  background: rgba(122, 47, 242, 0.04);
}

.compare-col h3 { font-size: 18px; margin-bottom: 16px; }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.compare-col li { font-size: 14px; color: var(--on-surface-muted); padding-left: 18px; position: relative; }
.compare-col li::before { content: "·"; position: absolute; left: 0; color: var(--violet); font-weight: 700; }

.savings-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--surface-alt);
}

.savings-banner h3 { font-size: clamp(20px, 3vw, 26px); max-width: 24ch; }
.savings-banner p { color: var(--on-surface-muted); font-size: 14px; margin-top: 8px; }

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.role-tags--full {
  margin-top: 20px;
}

.role-tags--full .role-tag {
  list-style: none;
}

.role-tag {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  background: var(--surface-elevated);
  border: 1px solid var(--hairline);
  color: var(--ink-200);
}

.industry-hero-benefits {
  margin-bottom: 24px;
}

.industry-crosslink {
  margin-top: clamp(32px, 5vw, 48px);
  padding-top: clamp(32px, 5vw, 48px);
  border-top: 1px solid var(--hairline);
  text-align: center;
}

.industry-crosslink p {
  color: var(--ink-300);
  font-size: 15px;
  margin-bottom: 12px;
}

.industry-crosslink-sep {
  margin: 0 10px;
  color: var(--ink-500);
  font-size: 14px;
}

.prose { max-width: 72ch; }
.prose h2 { font-size: 24px; margin: 40px 0 12px; color: var(--on-surface); }
.prose p, .prose li { color: var(--on-surface-muted); margin-bottom: 14px; font-size: 16px; }
.prose ul { margin-left: 20px; margin-bottom: 20px; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner,
  .split-block {
    grid-template-columns: 1fr;
  }

  .split-block-reverse .split-copy,
  .split-block-reverse .split-media { order: unset; }

  #problem .split-block-cta {
    margin-top: clamp(20px, 4vw, 28px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    width: 100%;
  }

  .hero-copy {
    order: 1;
    max-width: 100%;
    width: 100%;
    padding-bottom: 28px;
    justify-content: flex-start;
  }

  .hero-seo-title.kicker {
    margin-bottom: 24px;
    letter-spacing: 0.18em;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero-visual {
    order: 2;
    width: 100%;
    height: auto;
    justify-content: center;
    z-index: 0;
    line-height: 0;
  }

  .hero-founder-img {
    width: min(280px, 76vw);
    height: auto;
    aspect-ratio: unset;
    max-width: none;
    margin-inline: auto;
    object-fit: contain;
    object-position: center center;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .hero-dark {
    padding-bottom: 0;
  }

  .proof-bar {
    padding-top: 0;
    margin-top: 0;
  }

  .proof-bar-card {
    border-radius: var(--radius-lg);
  }

  .proof-bar-inner { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .proof-stat:nth-child(3)::before { display: none; }
  .hero-light {
    background:
      radial-gradient(
        ellipse 120% 90% at 72% -12%,
        rgba(155, 92, 255, 0.2) 0%,
        rgba(122, 47, 242, 0.09) 36%,
        transparent 72%
      ),
      radial-gradient(
        ellipse 85% 80% at 108% 30%,
        rgba(155, 92, 255, 0.12) 0%,
        transparent 68%
      ),
      radial-gradient(
        ellipse 70% 50% at 50% 98%,
        rgba(122, 47, 242, 0.07) 0%,
        transparent 70%
      );
  }
  .cred-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    order: 1;
  }

  .logo-link {
    display: none;
  }

  .site-header .header-mobile-cta {
    display: inline-flex;
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    margin-left: auto;
    padding: 10px clamp(10px, 3vw, 16px);
    font-size: clamp(11px, 3.1vw, 14px);
    white-space: nowrap;
  }

  .nav-main {
    order: 3;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 16px;
    display: none;
  }

  .nav-main.open { display: flex; }
  .nav-main .btn { display: none; }

  .nav-main > a {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink-300);
  }

  .nav-main > a.is-active {
    color: var(--ink-100);
  }

  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink-300);
    text-align: left;
  }

  .nav-dropdown.open .nav-dropdown-trigger {
    color: var(--ink-100);
  }

  .nav-dropdown:focus-within:not(.open) .nav-dropdown-trigger {
    color: var(--ink-300);
  }

  .nav-dropdown-trigger::after {
    content: "";
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    margin-left: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    opacity: 0.7;
  }

  .nav-dropdown.open .nav-dropdown-trigger::after {
    transform: rotate(-135deg);
    opacity: 1;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 4px 0 12px 16px;
    margin: 0 0 0 4px;
    min-width: 0;
    display: none;
    transition: none;
    border-left: 2px solid var(--hairline);
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 10px 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-dropdown-menu a.is-active {
    background: transparent;
    box-shadow: none;
  }

  .nav-dropdown-menu a.is-active .nav-dropdown-item-label {
    color: var(--violet-light);
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:focus-visible {
    background: transparent;
  }

  .nav-dropdown-item-label {
    color: var(--ink-100);
    font-size: 15px;
  }

  .nav-dropdown-item-desc {
    color: var(--ink-500);
    font-size: 12px;
  }

  .nav-dropdown-menu a:hover .nav-dropdown-item-label,
  .nav-dropdown-menu a:focus-visible .nav-dropdown-item-label {
    color: var(--violet-light);
  }

  .nav-dropdown-menu a.is-active .nav-dropdown-item-label {
    color: var(--violet-light);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 420px;
    margin-inline: auto;
  }

  .steps::before { display: none; }

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

  .hero-dark { min-height: auto; }
}

@media (max-width: 640px) {
  .proof-bar-inner { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: clamp(28px, 6.5vw, 32px); }
  .hero-benefit-text { font-size: 15px; }
  .hero-seo-title.kicker {
    font-size: 10px;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }
  section:not(.hero):not(.proof-bar) { padding: 64px 0; }
}
