:root {
  --bg: #05080d;
  --panel: #0b1118;
  --panel2: #0e171f;
  --line: rgba(173, 215, 223, 0.14);
  --line2: rgba(173, 215, 223, 0.24);
  --text: #f4f8f8;
  --muted: #9babb0;
  --teal: #55f4d5;
  --blue: #3aa8ff;
  --max: 1180px;
  --sans:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
}
button,
input {
  font: inherit;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -70px;
  z-index: 100;
  background: #fff;
  color: #000;
  padding: 10px 16px;
}
.skip-link:focus {
  top: 10px;
}
.site-bg {
  position: absolute;
  inset: 0 0 auto;
  height: 900px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  background-image: radial-gradient(
    rgba(138, 255, 235, 0.22) 0.7px,
    transparent 0.7px
  );
  background-size: 28px 28px;
  mask-image: linear-gradient(#000 30%, transparent 90%);
}
.site-bg span {
  position: absolute;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.16;
}
.site-bg span:nth-child(1) {
  width: 500px;
  height: 500px;
  background: #1df4d0;
  top: -260px;
  right: -50px;
}
.site-bg span:nth-child(2) {
  width: 380px;
  height: 380px;
  background: #146ee8;
  top: 250px;
  right: 20%;
}
.site-bg span:nth-child(3) {
  width: 280px;
  height: 280px;
  background: #4b36df;
  top: 500px;
  left: -150px;
}
.shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(85, 244, 213, 0.55);
  border-radius: 9px;
  background: linear-gradient(
    145deg,
    rgba(85, 244, 213, 0.18),
    rgba(58, 168, 255, 0.08)
  );
  font-weight: 800;
  color: var(--teal);
  box-shadow: inset 0 0 18px rgba(85, 244, 213, 0.12);
}
.brand-name {
  font-weight: 760;
  letter-spacing: -0.03em;
}
.brand-name span {
  color: var(--teal);
}
.nav nav {
  display: flex;
  gap: 32px;
}
.nav nav a {
  font-size: 14px;
  color: #b5c1c4;
  text-decoration: none;
  transition: 0.2s;
}
.nav nav a:hover {
  color: #fff;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), #58c9ff);
  color: #03110f;
  text-decoration: none;
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(65, 230, 209, 0.14);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(65, 230, 209, 0.22);
}
.button:focus-visible,
a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.button-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 13px;
}
.hero {
  min-height: 700px;
  padding: 92px 0 98px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 72px;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow > span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 14px var(--teal);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(46px, 5.4vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 0 0 28px;
  max-width: 750px;
}
h1 em {
  font-style: normal;
  color: var(--teal);
  text-shadow: 0 0 35px rgba(85, 244, 213, 0.14);
}
.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  color: #b5c1c4;
  max-width: 640px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.text-link {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #dfe8e9;
}
.text-link span {
  color: var(--teal);
  margin-left: 6px;
}
.hero-notes {
  display: flex;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  flex-wrap: wrap;
  color: #8fa1a6;
  font-size: 12px;
}
.hero-notes li:before {
  content: "✓";
  color: var(--teal);
  margin-right: 7px;
}
.system-demo {
  position: relative;
  border: 1px solid var(--line2);
  border-radius: 18px;
  background: linear-gradient(
    155deg,
    rgba(15, 29, 37, 0.96),
    rgba(5, 9, 14, 0.96)
  );
  padding: 20px;
  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.48),
    inset 0 1px rgba(255, 255, 255, 0.04);
}
.system-demo:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(85, 244, 213, 0.35),
    transparent 35%,
    rgba(58, 168, 255, 0.18)
  );
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.demo-label {
  position: absolute;
  right: 14px;
  top: -14px;
  background: #101922;
  border: 1px solid var(--line2);
  padding: 5px 9px;
  border-radius: 6px;
  color: #91a3a9;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.demo-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px 16px;
  border-bottom: 1px solid var(--line);
}
.demo-logo {
  font-size: 12px;
  font-weight: 750;
}
.demo-logo span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  border-radius: 5px;
  color: var(--teal);
  border: 1px solid rgba(85, 244, 213, 0.35);
}
.status {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8d9ca1;
}
.status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  margin-right: 5px;
  box-shadow: 0 0 8px var(--teal);
}
.flow-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(11, 18, 24, 0.84);
  padding: 14px 15px;
}
.ad-card {
  margin-top: 17px;
}
.flow-kicker {
  font-size: 8px;
  letter-spacing: 0.14em;
  color: #6f858c;
  font-weight: 800;
}
.ad-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.ad-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #061311;
  background: linear-gradient(135deg, var(--teal), #65baff);
  font-weight: 900;
  font-size: 19px;
}
.flow-card strong {
  display: block;
  font-size: 12px;
  line-height: 1.35;
}
.flow-card small {
  display: block;
  color: #71858b;
  font-size: 9px;
  margin-top: 4px;
}
.flow-line {
  height: 29px;
  position: relative;
}
.flow-line span {
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  border-left: 1px dashed rgba(85, 244, 213, 0.35);
}
.flow-line i {
  position: absolute;
  left: 20px;
  top: 11px;
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--teal);
}
.routing-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.person {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #172b36;
  color: #9feee1;
  font-size: 9px;
}
.routing-row b {
  font-size: 8px;
  color: var(--teal);
  background: rgba(85, 244, 213, 0.1);
  padding: 4px 7px;
  border-radius: 999px;
}
.routing-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 13px;
}
.routing-steps span {
  font-size: 8px;
  text-align: center;
  border: 1px solid var(--line);
  padding: 5px;
  border-radius: 5px;
  color: #73858a;
}
.routing-steps .done {
  border-color: rgba(85, 244, 213, 0.25);
  color: #96dccc;
}
.routing-steps .active {
  background: rgba(85, 244, 213, 0.09);
  border-color: rgba(85, 244, 213, 0.4);
  color: var(--teal);
}
.booked-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.calendar-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(58, 168, 255, 0.28);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(58, 168, 255, 0.08);
}
.calendar-icon span {
  font-size: 12px;
  color: #8bd2ff;
  font-weight: 800;
}
.check {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(85, 244, 213, 0.12);
  color: var(--teal);
  font-size: 12px;
}
.demo-disclaimer {
  margin: 12px 2px 0;
  color: #53656b;
  font-size: 8px;
  text-align: right;
}
.service-showcase {
  position: relative;
  z-index: 2;
  margin-top: -30px;
  padding-bottom: 54px;
}
.service-showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}
.service-showcase-head .eyebrow {
  flex: none;
  margin-bottom: 6px;
}
.service-showcase-head h2 {
  max-width: 580px;
  margin: 0;
  color: #dce6e8;
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-align: right;
}
.service-card-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.service-card {
  position: relative;
  min-width: 0;
  margin: 0;
}
.service-card figcaption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  margin-bottom: 7px;
  border: 1px solid rgba(173, 215, 223, 0.22);
  border-radius: 999px;
  background: rgba(10, 17, 23, 0.84);
  color: #d7e5e7;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(173, 215, 223, 0.2);
  border-radius: 14px;
  background: #0b1118;
  filter: saturate(0.82) contrast(1.02);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}
.service-card:after {
  content: "";
  position: absolute;
  inset: 41px 0 0;
  border-radius: 14px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(3, 8, 12, 0.45));
}
.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 12, 17, 0.65);
}
.signal-grid {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #718186;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.signal-grid i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(85, 244, 213, 0.4);
}
.section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.55fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 58px;
}
.section-heading h2,
.fit-copy h2,
.review-intro h2,
.final-cta h2 {
  font-size: clamp(36px, 4.1vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.problem-card {
  border-top: 1px solid var(--line2);
  padding: 25px 10px 0 0;
}
.problem-card > span {
  font-size: 10px;
  color: var(--teal);
  letter-spacing: 0.1em;
}
.problem-card h3 {
  font-size: 19px;
  margin: 24px 0 12px;
}
.problem-card p {
  color: #8ea0a6;
  font-size: 14px;
  line-height: 1.75;
}
.system-section {
  background: linear-gradient(
    180deg,
    rgba(10, 17, 23, 0.92),
    rgba(7, 12, 17, 0.9)
  );
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-heading.compact {
  display: block;
  max-width: 670px;
}
.section-heading.compact h2 {
  margin-bottom: 18px;
}
.section-heading.compact > p:last-child {
  color: #8ea0a6;
  font-size: 16px;
  max-width: 600px;
}
.system-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.system-track article {
  position: relative;
  min-height: 270px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}
.system-track article:last-child {
  border: 0;
}
.system-track article > span {
  position: absolute;
  right: 15px;
  top: 14px;
  color: #52646a;
  font-size: 9px;
}
.track-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(85, 244, 213, 0.28);
  border-radius: 10px;
  color: var(--teal);
  background: rgba(85, 244, 213, 0.05);
  margin: 32px 0 28px;
  font-size: 18px;
}
.system-track h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.system-track p {
  font-size: 13px;
  color: #82949a;
  line-height: 1.65;
}
.people-section {
  overflow: hidden;
}
.people-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 96px;
  align-items: center;
}
.people-visual {
  min-height: 570px;
  position: relative;
}
.photo-card {
  margin: 0;
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line2);
  border-radius: 18px;
  background: #0b1118;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}
.photo-card:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 54%, rgba(4, 10, 14, 0.58));
}
.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-card figcaption {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 12px;
  color: rgba(235, 247, 248, 0.7);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.photo-primary {
  inset: 0 70px 65px 0;
}
.photo-secondary {
  width: 47%;
  height: 43%;
  right: 0;
  bottom: 0;
  border-radius: 14px;
}
.people-signal {
  position: absolute;
  z-index: 3;
  left: 24px;
  top: 24px;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 11, 15, 0.72);
  backdrop-filter: blur(10px);
  color: rgba(238, 249, 249, 0.82);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.people-signal i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
}
.people-copy h2 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}
.people-copy > p:not(.eyebrow) {
  color: #91a3a9;
  margin-bottom: 30px;
}
.people-points {
  border-top: 1px solid var(--line);
  margin-bottom: 30px;
}
.people-points > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.people-points b {
  font-size: 12px;
  color: #dce8e9;
}
.people-points span {
  font-size: 12px;
  color: #75888e;
}
.fit-section {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 100px;
  align-items: center;
}
.fit-copy > p:not(.eyebrow) {
  color: #91a3a9;
  max-width: 630px;
  margin: 24px 0 36px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 30px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
}
.check-list b {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.check-list span {
  display: block;
  color: #778a90;
  font-size: 12px;
  line-height: 1.55;
}
.not-fit {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  background: linear-gradient(
    145deg,
    rgba(14, 23, 31, 0.85),
    rgba(7, 12, 17, 0.75)
  );
}
.not-fit-label {
  display: inline-block;
  color: #ffb68a;
  background: rgba(255, 139, 83, 0.09);
  border: 1px solid rgba(255, 139, 83, 0.18);
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.not-fit ul {
  padding-left: 20px;
  margin: 24px 0;
  color: #a3b0b4;
}
.not-fit li {
  margin: 12px 0;
  font-size: 13px;
}
.not-fit > p {
  font-size: 12px;
  color: #6f8187;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin: 0;
}
.review-section {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(24, 120, 142, 0.17),
      transparent 34%
    ),
    linear-gradient(180deg, #071017, #05090d);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.review-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: start;
}
.review-intro > p:not(.eyebrow) {
  color: #91a3a9;
  margin: 24px 0 30px;
}
.privacy-note {
  border-left: 2px solid var(--teal);
  padding: 2px 0 2px 16px;
}
.privacy-note span {
  font-size: 11px;
  font-weight: 800;
  color: #c6d2d4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.privacy-note p {
  font-size: 12px;
  color: #72858a;
  margin: 3px 0 0;
}
.assessment {
  min-height: 510px;
  border: 1px solid var(--line2);
  border-radius: 18px;
  padding: 28px;
  background: rgba(7, 13, 18, 0.8);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.28);
}
.assessment-head {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #7d8e93;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.progress {
  height: 3px;
  background: #17252c;
  flex: 1;
  border-radius: 999px;
  overflow: hidden;
}
.progress i {
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transition: width 0.3s;
}
.question {
  display: none;
  border: 0;
  margin: 32px 0 0;
  padding: 0;
}
.question.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.question legend {
  grid-column: 1/-1;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 20px;
}
.question label {
  cursor: pointer;
}
.question input {
  position: absolute;
  opacity: 0;
}
.question label span {
  display: flex;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 14px;
  color: #9fb0b5;
  font-size: 13px;
  transition: 0.15s;
}
.question label span:before {
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid #53666d;
  border-radius: 50%;
  margin-right: 10px;
  flex: none;
}
.question input:checked + span {
  border-color: rgba(85, 244, 213, 0.6);
  color: #e9ffff;
  background: rgba(85, 244, 213, 0.06);
}
.question input:checked + span:before {
  border: 4px solid var(--teal);
  background: #07100f;
}
.question input:focus-visible + span {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
.assessment-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 30px;
}
.assessment-actions .back,
.text-button {
  background: transparent;
  color: #91a3a9;
  border: 0;
  cursor: pointer;
  padding: 12px 16px;
}
.assessment-actions .button {
  min-height: 46px;
}
.form-error {
  min-height: 20px;
  margin: 10px 0 0;
  text-align: right;
  color: #ff9d7a;
  font-size: 11px;
}
.result {
  text-align: center;
  padding: 10px 12px;
}
.result-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 800;
}
.score-ring {
  width: 108px;
  height: 108px;
  margin: 20px auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle, #091116 55%, transparent 57%),
    conic-gradient(var(--teal) var(--score-angle, 0deg), #18262c 0);
  box-shadow: 0 0 35px rgba(85, 244, 213, 0.1);
}
.score-ring strong {
  font-size: 32px;
}
.score-ring span {
  font-size: 11px;
  color: #71848a;
  margin-left: 3px;
}
.result h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
.result > p {
  color: #98a9ae;
  max-width: 500px;
  margin: 0 auto 18px;
}
.result-points {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.result-points span {
  font-size: 10px;
  color: #9ccbc4;
  padding: 5px 8px;
  border: 1px solid rgba(85, 244, 213, 0.16);
  border-radius: 999px;
  background: rgba(85, 244, 213, 0.04);
}
.result-cta {
  width: 100%;
  margin-top: 6px;
}
.result small {
  display: block;
  color: #5f7177;
  font-size: 9px;
  line-height: 1.5;
  margin-top: 10px;
}
.faq {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  padding-right: 34px;
  position: relative;
}
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--teal);
  font-size: 20px;
  font-weight: 400;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list details p {
  color: #899ba1;
  font-size: 14px;
  margin: 15px 40px 0 0;
}
.final-cta {
  padding: 110px 0;
  text-align: center;
  background: radial-gradient(
    circle at center,
    rgba(58, 168, 255, 0.12),
    transparent 55%
  );
  border-top: 1px solid var(--line);
}
.final-cta .shell {
  max-width: 800px;
}
.final-cta p:not(.eyebrow) {
  color: #91a3a9;
  margin: 20px 0 30px;
}
.footer {
  padding-top: 54px;
  padding-bottom: 110px;
}
.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-top {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer-top p {
  margin: 0;
  color: #74868b;
  font-size: 12px;
}
.footer-bottom {
  padding: 24px 0 18px;
  color: #62747a;
  font-size: 11px;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom div {
  display: flex;
  gap: 24px;
}
.footer-bottom a {
  text-decoration: none;
}
.legal-line {
  max-width: 700px;
  color: #52636a;
  font-size: 10px;
  line-height: 1.6;
}
.mobile-cta {
  display: none;
}
.reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .button {
    transition: none;
  }
}
@media (max-width: 960px) {
  .nav nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 70px;
  }
  .hero-copy {
    max-width: 760px;
  }
  .system-demo {
    max-width: 620px;
  }
  .service-showcase {
    margin-top: 0;
  }
  .service-showcase-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .service-showcase-head h2 {
    max-width: 700px;
    text-align: left;
  }
  .service-card-row {
    grid-template-columns: repeat(5, 190px);
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .service-card-row::-webkit-scrollbar {
    display: none;
  }
  .service-card {
    scroll-snap-align: start;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .system-track {
    grid-template-columns: 1fr 1fr;
  }
  .system-track article {
    min-height: 220px;
    border-bottom: 1px solid var(--line);
  }
  .system-track article:nth-child(2n) {
    border-right: 0;
  }
  .fit-section,
  .people-grid,
  .review-shell,
  .faq {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .fit-copy {
    max-width: 750px;
  }
  .people-visual {
    max-width: 720px;
  }
  .people-copy {
    max-width: 700px;
  }
  .not-fit {
    max-width: 650px;
  }
  .review-intro {
    max-width: 700px;
  }
  .faq .section-heading {
    margin-bottom: 0;
  }
}
@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }
  .shell {
    width: min(var(--max), calc(100% - 28px));
  }
  .nav {
    height: 70px;
  }
  .nav > .button {
    display: none;
  }
  .brand-mark {
    width: 29px;
    height: 29px;
  }
  .hero {
    min-height: auto;
    padding: 62px 0 72px;
    gap: 50px;
  }
  .service-showcase {
    width: 100%;
    padding: 0 0 44px 14px;
  }
  .service-showcase-head {
    padding-right: 14px;
    margin-bottom: 18px;
  }
  .service-showcase-head h2 {
    font-size: 29px;
  }
  .service-card-row {
    grid-template-columns: repeat(5, 164px);
    margin-right: 0;
    padding-right: 14px;
  }
  .service-card figcaption {
    font-size: 9px;
  }
  h1 {
    font-size: 43px;
  }
  .hero-lede {
    font-size: 16px;
  }
  .hero-actions {
    display: grid;
    gap: 18px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-actions .text-link {
    text-align: center;
  }
  .hero-notes {
    gap: 10px 18px;
  }
  .system-demo {
    padding: 14px;
  }
  .signal-grid {
    height: 60px;
    justify-content: center;
    gap: 15px;
  }
  .signal-grid span:nth-of-type(2),
  .signal-grid span:nth-of-type(4),
  .signal-grid i:nth-of-type(n + 2) {
    display: none;
  }
  .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }
  .section-heading {
    margin-bottom: 42px;
  }
  .section-heading h2,
  .fit-copy h2,
  .review-intro h2,
  .final-cta h2 {
    font-size: 37px;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .system-track {
    grid-template-columns: 1fr;
  }
  .system-track article {
    min-height: auto;
    border-right: 0;
    padding: 25px;
  }
  .track-icon {
    margin: 20px 0;
  }
  .fit-section {
    gap: 45px;
  }
  .people-grid {
    gap: 45px;
  }
  .people-visual {
    min-height: 440px;
  }
  .photo-primary {
    inset: 0 42px 54px 0;
  }
  .photo-secondary {
    width: 49%;
    height: 38%;
  }
  .people-signal {
    left: 14px;
    top: 14px;
  }
  .people-points > div {
    grid-template-columns: 95px 1fr;
  }
  .check-list {
    grid-template-columns: 1fr;
  }
  .not-fit {
    padding: 25px;
  }
  .review-shell {
    gap: 40px;
  }
  .assessment {
    padding: 22px 16px;
    min-height: 540px;
  }
  .question.active {
    grid-template-columns: 1fr;
  }
  .question legend {
    font-size: 21px;
  }
  .question label span {
    min-height: 52px;
  }
  .faq {
    gap: 30px;
  }
  .final-cta {
    padding: 80px 0;
  }
  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .footer-bottom div {
    gap: 18px;
  }
  .mobile-cta {
    display: block;
    position: fixed;
    z-index: 80;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: rgba(5, 8, 13, 0.94);
    border-top: 1px solid var(--line2);
    backdrop-filter: blur(14px);
  }
  .mobile-cta .button {
    width: 100%;
    min-height: 50px;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
