:root {
  --forest: #10251e;
  --deep: #0a1914;
  --lime: #d1f577;
  --mint: #a4cbb8;
  --paper: #f7f8f4;
  --ink: #18342a;
  --muted: #64736c;
  --line: #dce3da;
  --sans: "DM Sans", sans-serif;
  --heading: "Manrope", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 600;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(36px, 4.3vw, 61px);
  line-height: 1.13;
}
h3 {
  font-size: 32px;
  line-height: 1.15;
}
em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #7b8ffe;
  outline-offset: 5px;
}
button:disabled {
  cursor: default;
}
img,
svg {
  display: block;
}
button svg {
  pointer-events: none;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1320px, calc(100% - 104px));
  margin-inline: auto;
}
.section {
  padding-block: 110px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  gap: 9px;
}
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 17px 23px;
  min-height: 53px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 7px;
  transition:
    background 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.button:hover {
  transform: translateY(-2px);
}
.button span {
  font-size: 19px;
  line-height: 1;
}
.button-lime {
  background: var(--lime);
  color: var(--forest);
}
.button-lime:hover {
  background: #e1ffa0;
}
.button-dark {
  background: var(--forest);
  color: var(--lime);
}
.button-dark:hover {
  background: #234d3c;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
}
.text-link > span:last-child {
  font-size: 21px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  background: var(--lime);
  padding: 12px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  background: var(--forest);
  color: #fff;
}
.nav-inner {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid #ffffff16;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.22em;
  color: var(--mint);
  margin-top: 4px;
  font-weight: 500;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 40px;
}
.brand-mark svg {
  width: 34px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 12px;
  color: #bdcfc4;
}
.site-header nav > a:hover {
  color: var(--lime);
}
.site-header nav .sign-in {
  color: #fff;
  margin-left: 12px;
}
.site-header nav .nav-cta {
  color: var(--forest);
  padding: 13px 17px;
  min-height: 44px;
  font-size: 11px;
  gap: 16px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
  width: 44px;
  height: 44px;
}
.menu-toggle span {
  display: block;
  background: currentColor;
  width: 23px;
  height: 1px;
  margin: 7px auto;
}
.dark-top {
  background:
    radial-gradient(ellipse at 90% 40%, #203d2e 0, transparent 45%),
    var(--forest);
  color: #fff;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4%;
  align-items: center;
  padding-block: 78px 64px;
}
.hero-copy .eyebrow {
  color: #c2d4c5;
  font-size: 9px;
}
.hero h1 {
  font-size: clamp(60px, 6.7vw, 96px);
  line-height: 1.06;
  margin-top: 25px;
  letter-spacing: -0.068em;
}
.hero h1 em {
  color: var(--lime);
  font-size: 1.1em;
  line-height: 0.96;
  letter-spacing: -0.055em;
}
.hero-lead {
  color: #b5c7ba;
  font-size: 15px;
  line-height: 1.85;
  max-width: 420px;
  margin-top: 28px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 31px;
}
.hero-actions .button {
  font-size: 12px;
  padding-inline: 20px;
  gap: 22px;
}
.text-link.light {
  color: #d9e6dc;
  font-size: 12px;
  gap: 9px;
}
.play-icon {
  border: 1px solid #a4cbb860;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 8px !important;
  padding-left: 2px;
}
.cta-note {
  font-size: 10px;
  color: #8fa899;
  margin-top: 17px;
  line-height: 1.6;
}
.hero-art {
  min-width: 0;
  position: relative;
  padding: 0 5px 12px;
}
.art-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 10px;
  gap: 10px;
  color: #90aa99;
  font-size: 8px;
  letter-spacing: 0.14em;
}
.motion-toggle {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff25;
  border-radius: 50%;
  color: #bcd4c3;
  background: none;
  font-size: 11px;
}
.convergence {
  position: relative;
  height: 350px;
  margin-top: 5px;
}
.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px dashed #b8dca326;
  border-radius: 50%;
  translate: -50% -50%;
  pointer-events: none;
}
.orbit-one {
  width: 280px;
  height: 280px;
  animation: orbit 90s linear infinite;
}
.orbit-two {
  width: 390px;
  height: 310px;
  rotate: -25deg;
  animation: orbit 100s linear infinite reverse;
}
.orbit-three {
  width: 165px;
  height: 165px;
  border-style: solid;
  background: #d1f57703;
}
.connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #c1dd9260;
  stroke-width: 1;
  stroke-dasharray: 4 5;
}
.world {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 17px;
  background: #1e372a;
  border: 1px solid #c5ddb02b;
  border-radius: 10px;
  box-shadow: 0 15px 30px #071c1b40;
  width: 228px;
  z-index: 2;
  animation: world-float 7s ease-in-out infinite;
}
.world small {
  font-size: 7px;
  letter-spacing: 0.12em;
  color: #afc79e;
  font-weight: 600;
}
.world strong {
  display: block;
  font: 600 18px var(--heading);
  letter-spacing: -0.04em;
  margin-top: 6px;
}
.world p {
  font-size: 9px;
  color: #9eb4a2;
  margin-top: 5px;
}
.world-symbol {
  width: 30px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--lime);
  background: #c9ed7f0d;
  border-radius: 5px;
  font-size: 24px;
  flex-shrink: 0;
}
.world-plan {
  left: 0;
  top: 20px;
  --float-x: 22px;
  --float-y: 14px;
  rotate: -4deg;
}
.world-delivery {
  right: 0;
  top: 120px;
  --float-x: -20px;
  --float-y: 5px;
  rotate: 3deg;
}
.world-accounts {
  left: 27px;
  bottom: 9px;
  --float-x: 24px;
  --float-y: -15px;
  rotate: -2deg;
}
.platform-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 51%;
  translate: -50% -50%;
  width: 98px;
  height: 98px;
  border-radius: 24px;
  background: var(--lime);
  color: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 65px #d1f57723;
  rotate: -7deg;
}
.platform-core svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.platform-core span {
  font-size: 6px;
  letter-spacing: 0.13em;
  font-weight: 700;
  margin-top: 2px;
}
.bang {
  position: absolute;
  inset: -4px;
  border: 1px solid var(--lime);
  border-radius: 26px;
  animation: bang 7s ease-out infinite;
  pointer-events: none;
}
.spark {
  position: absolute;
  color: var(--lime);
}
.spark-one {
  right: 57px;
  top: 28px;
  font-size: 29px;
  rotate: 10deg;
}
.spark-two {
  right: 72px;
  bottom: 35px;
  font-size: 27px;
  color: #c0d2bb70;
}
.hero-dashboard {
  position: relative;
  margin: 21px 16px 0;
  background: #1c3428;
  border: 1px solid #bbd49e35;
  border-radius: 12px;
  padding: 21px 24px;
  rotate: -2deg;
  box-shadow: 0 23px 50px #061b1640;
}
.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  gap: 8px;
}
.dashboard-top > small {
  font-size: 6px;
  color: #9cb593;
  letter-spacing: 0.12em;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 15px;
  margin-block: 23px 17px;
}
.hero-stats > div {
  border-right: 1px solid #ffffff16;
}
.hero-stats > div:last-child {
  border: 0;
}
.hero-stats small {
  display: block;
  font-size: 8px;
  color: #9cb3a0;
  margin-bottom: 6px;
}
.hero-stats strong {
  font: 500 31px var(--heading);
  letter-spacing: -0.05em;
}
.hero-stats strong span {
  font-size: 17px;
  color: #a4ba9b;
  margin-left: 2px;
}
.hero-stats > div:last-child strong {
  color: var(--lime);
}
.progress-line {
  height: 4px;
  background: #ffffff12;
  border-radius: 2px;
}
.progress-line > span {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, #7eac82, var(--lime));
  border-radius: 2px;
}
.dashboard-foot {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: #b1c9ae;
  font-size: 8px;
}
.dashboard-foot .live-dot {
  width: 4px;
  height: 4px;
}
.audiences {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #ffffff16;
  padding-block: 35px 42px;
}
.audiences > span {
  font-size: 8px;
  letter-spacing: 0.12em;
  line-height: 1.7;
  color: #91a693;
}
.audiences > p {
  font-family: var(--heading);
  font-size: 13px;
  line-height: 1.7;
  color: #8fa996;
  letter-spacing: -0.02em;
}
.audiences strong {
  font-size: 17px;
  font-weight: 500;
  color: #cbdcc7;
}
.problem {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr;
  gap: 11%;
  align-items: center;
}
.problem-copy h2 {
  font-size: clamp(36px, 3.9vw, 55px);
  margin-top: 22px;
}
.problem-copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 440px;
  margin-top: 24px;
}
.pain-list {
  margin-top: 32px;
  max-width: 440px;
}
.pain-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.pain-list small {
  font-size: 8px;
  letter-spacing: 0.08em;
  color: #778477;
  padding: 6px 9px;
  background: #ebefe6;
  border-radius: 4px;
}
.answer-card {
  position: relative;
  background: var(--lime);
  border-radius: 12px;
  padding: 105px 39px 36px;
  rotate: 2deg;
  box-shadow: 0 22px 55px #1934240a;
}
.answer-symbol {
  position: absolute;
  right: 31px;
  top: 24px;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
}
.answer-card .eyebrow {
  font-size: 8px;
}
.answer-card h3 {
  margin-top: 20px;
  font-size: clamp(31px, 3.3vw, 46px);
  line-height: 1.12;
}
.answer-card > p:not(.eyebrow) {
  margin-top: 25px;
  font-size: 13px;
  color: #425c2e;
  line-height: 1.8;
}
.answer-card .text-link {
  margin-top: 27px;
  padding-top: 20px;
  border-top: 1px solid #17372d25;
  width: 100%;
  font-size: 12px;
  justify-content: space-between;
}
.site-footer {
  background: var(--forest);
  color: white;
  overflow: hidden;
}
.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-block: 85px 74px;
  border-bottom: 1px solid #ffffff20;
}
.footer-cta .eyebrow {
  color: #9db89f;
  font-size: 8px;
  margin-bottom: 20px;
}
.footer-cta h2 {
  font-size: clamp(37px, 4.7vw, 65px);
}
.footer-cta h2 em {
  color: var(--lime);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 30px;
  color: #90ac96;
  font-size: 10px;
}
.footer-bottom .brand {
  color: white;
  font-size: 14px;
}
.footer-bottom > div {
  display: flex;
  gap: 25px;
}
.footer-wordmark {
  font: 500 clamp(60px, 12.6vw, 181px) / 0.96 var(--heading);
  letter-spacing: -0.07em;
  text-align: center;
  color: #ffffff08;
  white-space: nowrap;
  margin-top: 35px;
  translate: 0 17%;
}
.platform-section {
  background: #edf1e8;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 45px;
}
.section-heading h2 {
  margin-top: 17px;
}
.section-heading > p {
  max-width: 300px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 5px;
}
.product-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.product-tabs button {
  border: 1px solid #d6decf;
  border-radius: 6px;
  padding: 17px 16px;
  background: transparent;
  color: #697765;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  min-height: 56px;
}
.product-tabs button > span:first-child {
  font-size: 9px;
  opacity: 0.6;
}
.product-tabs button .tab-arrow {
  margin-left: auto;
  font-size: 17px;
}
.product-tabs button:hover {
  border-color: #7c9570;
}
.product-tabs button[aria-selected="true"] {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--lime);
}
.product-window {
  background: #fdfefb;
  border: 1px solid #d5dfd0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px #1c422d07;
}
.window-bar {
  border-bottom: 1px solid #e3e8df;
  padding: 17px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 10px;
  font-weight: 500;
  color: #5e725f;
}
.window-bar > span {
  display: flex;
  align-items: center;
  gap: 14px;
}
.window-dots {
  color: #c3cec1;
  letter-spacing: 2px;
  font-size: 7px;
}
.window-bar > small {
  font-size: 6px;
  letter-spacing: 0.1em;
  color: #7c8d79;
}
.product-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 438px;
}
.panel-copy {
  padding: 43px 34px;
}
.step-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #d8e2cc;
  border-radius: 8px;
  background: #edf2e5;
  font-size: 24px;
  color: #4d693f;
  margin-bottom: 24px;
}
.panel-copy .eyebrow {
  font-size: 7px;
  letter-spacing: 0.12em;
  color: #7c926b;
}
.panel-copy h3 {
  font-size: 33px;
  line-height: 1.2;
  margin-top: 11px;
}
.panel-copy > p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.85;
  margin-top: 18px;
  color: #738170;
}
.panel-copy ul {
  list-style: none;
  padding: 0;
  margin: 23px 0 0;
  font-size: 10px;
  line-height: 1.7;
  color: #4c6747;
}
.panel-copy li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}
.panel-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #608f3c;
}
.panel-copy > p.panel-fine {
  font-size: 9px;
  color: #829078;
  border-top: 1px solid #e5e9df;
  padding-top: 15px;
}
.demo-canvas {
  align-self: center;
  margin: 28px 28px 28px 0;
  background: #f3f6ee;
  border: 1px solid #dde5d4;
  border-radius: 10px;
  padding: 26px 23px;
  min-width: 0;
}
.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}
.demo-header small {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #7a8d6c;
}
.demo-header h4 {
  font-family: var(--heading);
  font-size: 17px;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 6px 0 0;
}
.demo-badge {
  font-size: 7px;
  color: #78916b;
  border: 1px solid #d9e3ce;
  padding: 6px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.grid-head,
.resource-row {
  display: grid;
  grid-template-columns: 1.85fr repeat(5, 0.7fr) 0.8fr;
  gap: 5px;
  align-items: center;
}
.grid-head {
  font-size: 6px;
  color: #8d9c7e;
  font-weight: 500;
  padding-bottom: 11px;
  text-align: center;
  letter-spacing: 0.025em;
}
.grid-head > span:first-child {
  text-align: left;
}
.resource-row {
  border-top: 1px solid #e1e8d8;
  padding-block: 14px;
}
.person {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}
.person b,
.work-card b {
  display: grid;
  place-items: center;
  background: #d9e6c8;
  color: #4f6840;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 7px;
  font-weight: 500;
  flex-shrink: 0;
}
.person b.avatar-blue {
  background: #d6e4e4;
  color: #4a6769;
}
.person b.avatar-purple {
  background: #e3daeb;
  color: #6a5478;
}
.person b.avatar-gold {
  background: #ede2c9;
  color: #83734b;
}
.person > span {
  font-size: 9px;
  font-weight: 500;
  white-space: nowrap;
}
.person small {
  display: block;
  font-size: 6px;
  font-weight: 400;
  color: #8e9b81;
  margin-top: 3px;
}
.slot {
  border-radius: 4px;
  display: grid;
  place-items: center;
  height: 31px;
  font-size: 9px;
}
.slot.pale {
  background: #e5edd9;
  color: #7e9463;
}
.slot.green {
  background: #c9dfac;
  color: #426332;
}
.slot.dark {
  background: #446e45;
  color: #e3eecf;
}
.resource-row > strong {
  font-size: 11px;
  font-weight: 500;
  text-align: center;
}
.demo-bottom {
  margin-top: 22px;
  border-top: 1px solid #dce5d2;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 8px;
  color: #849374;
}
.demo-bottom > strong {
  font: 500 20px var(--heading);
  color: #4d6741;
  letter-spacing: -0.04em;
}
.demo-bottom > strong small {
  font: 400 8px var(--sans);
  letter-spacing: 0;
  margin-left: 5px;
}
.mini-tag {
  background: #e3edd7;
  padding: 4px 7px;
  border-radius: 4px;
}
.product-disclaimer {
  text-align: center;
  color: #89957f;
  font-size: 9px;
  margin-top: 22px;
}
.work-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.work-column > p {
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 14px;
}
.work-column > p span {
  margin-left: 7px;
  background: #e3eadb;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 8px;
  color: #869578;
}
.work-card {
  background: #fff;
  border: 1px solid #e0e7d9;
  border-radius: 6px;
  padding: 14px 12px;
  margin-top: 10px;
}
.work-card > small {
  font-size: 6px;
  letter-spacing: 0.08em;
  color: #879979;
}
.work-card h5 {
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 600;
  margin: 9px 0 6px;
  letter-spacing: -0.035em;
}
.work-card > p {
  font-size: 8px;
  color: #8b9880;
  line-height: 1.6;
}
.work-card > div {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  font-size: 7px;
  color: #7b8d6a;
}
.work-card b {
  width: 18px;
  height: 18px;
  font-size: 6px;
}
.work-card strong {
  margin-left: auto;
  font-size: 6px;
  font-weight: 500;
}
.work-card.featured {
  background: #e6efdb;
  border-color: #bfcea8;
}
.cost-summary {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 12px;
}
.cost-summary > div > small {
  font-size: 9px;
  color: #7f9170;
}
.cost-summary > div > strong {
  display: block;
  font: 500 40px var(--heading);
  letter-spacing: -0.05em;
  margin-top: 5px;
}
.cost-summary > p {
  font-size: 10px;
  line-height: 1.7;
  color: #617a53;
}
.cost-summary > p > span {
  color: #99a38e;
  font-size: 9px;
}
.cost-percent {
  margin-left: auto;
  font: 400 43px var(--heading);
  letter-spacing: -0.055em;
  color: #6d9250;
}
.cost-percent small {
  font-size: 20px;
}
.cost-track {
  height: 8px;
  background: #e3ead9;
  border-radius: 4px;
  margin-top: 22px;
  overflow: hidden;
}
.cost-track > span {
  display: block;
  width: 72%;
  height: 100%;
  background: #aacb6f;
  border-radius: 4px;
}
.cost-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  color: #889c73;
  font-size: 8px;
}
.chart-bars {
  height: 123px;
  display: flex;
  justify-content: space-around;
  align-items: end;
  border-bottom: 1px solid #d7e1ca;
  margin: 20px 0 35px;
  padding-top: 10px;
}
.chart-bars > div {
  width: 16%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
}
.chart-bars span {
  width: 100%;
  background: #c8d9af;
  border-radius: 5px 5px 0 0;
}
.chart-bars > div:last-child span {
  background: #91ad6c;
}
.chart-bars small {
  position: absolute;
  top: calc(100% + 10px);
  font-size: 8px;
  color: #8c9e7a;
  white-space: nowrap;
}
.payroll-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 10px;
  color: #6b7f59;
  text-align: right;
}
.payroll-table th {
  font-size: 7px;
  color: #8d9e7e;
  font-weight: 500;
  padding: 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.payroll-table td {
  padding: 15px 0;
  border-top: 1px solid #e0e8d7;
}
.payroll-table td:first-child,
.payroll-table th:first-child {
  text-align: left;
}
.payroll-table td:last-child {
  font-weight: 600;
  color: #395a2e;
}
.payroll-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e2edd5;
  padding: 15px;
  border-radius: 5px;
  margin-top: 10px;
  font-size: 9px;
  color: #748c5e;
}
.payroll-total strong {
  font: 500 28px var(--heading);
  color: #3e5e2d;
  letter-spacing: -0.04em;
}
.payroll-total strong small {
  font-size: 14px;
}
.report-section {
  background: var(--forest);
  color: white;
}
.report-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10%;
}
.report-copy .eyebrow {
  color: #b6d293;
  font-size: 8px;
}
.ai-star {
  font-size: 23px;
  margin-right: 3px;
}
.report-copy h2 {
  margin-top: 23px;
  font-size: clamp(40px, 4.2vw, 60px);
}
.report-copy h2 em {
  color: var(--lime);
}
.report-copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.9;
  color: #a5bba8;
  max-width: 390px;
  margin-top: 28px;
}
.human-note {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #ffffff15;
  margin-top: 30px;
  padding-top: 23px;
  color: #9ab096;
  font-size: 12px;
  line-height: 1.9;
}
.human-note > span {
  font-size: 27px;
  color: var(--lime);
}
.human-note strong {
  color: #d2e0c7;
  font-weight: 500;
}
.report-visual {
  padding: 0 12px;
}
.report-inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #b2c9a1;
  font-size: 9px;
}
.report-inputs > span {
  border: 1px solid #bbcfa340;
  border-radius: 5px;
  padding: 10px 16px;
  background: #ffffff03;
}
.report-inputs > b {
  font-weight: 400;
  font-size: 13px;
}
.input-arrow {
  text-align: center;
  color: #738c5e;
  font-size: 21px;
  margin: 11px 0 18px;
}
.report-paper {
  background: #f7f8f2;
  color: var(--forest);
  border-radius: 6px;
  padding: 27px 30px;
  rotate: 2deg;
  box-shadow: 0 24px 55px #03150d40;
}
.paper-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  color: #7a8d62;
  font-size: 6px;
  letter-spacing: 0.07em;
}
.paper-top small {
  font-size: 5px;
  color: #9ca591;
  white-space: nowrap;
}
.ai-label {
  display: flex;
  gap: 6px;
  align-items: center;
}
.ai-label > span {
  font-size: 16px;
  color: #608e3c;
}
.report-paper h3 {
  font-size: 27px;
  margin-top: 20px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}
.paper-project {
  color: #92a07f;
  font-size: 8px;
  margin: 10px 0 25px;
}
.brief-line {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  border-top: 1px solid #e3e8da;
  padding: 16px 0;
}
.brief-line > span {
  color: #9bae85;
  font-size: 8px;
  padding-top: 4px;
}
.brief-line h4 {
  font-size: 11px;
  font-weight: 600;
  margin: 0 0 6px;
}
.brief-line p {
  font-size: 10px;
  color: #829171;
  line-height: 1.7;
}
.paper-foot {
  border-top: 1px solid #dfe7d4;
  margin-top: 7px;
  padding-top: 18px;
  font-size: 8px;
  color: #658445;
}
.report-fine {
  color: #78936c;
  text-align: center;
  font-size: 8px;
  line-height: 1.7;
  margin-top: 23px;
}
.family-section {
  position: relative;
  min-height: 720px;
  background: #253821;
  color: white;
}
.family-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.family-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #0a1d13ed 0%,
      #0b2315d9 25%,
      #102a1766 48%,
      #132f1500 72%
    ),
    linear-gradient(0deg, #061d1499, transparent 40%);
}
.family-content {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 76px 110px;
}
.family-copy {
  max-width: 400px;
}
.family-copy .eyebrow {
  font-size: 8px;
  color: #c8dab7;
}
.family-copy h2 {
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 1.09;
  margin-top: 21px;
}
.family-copy h2 em {
  color: var(--lime);
}
.family-copy > p:not(.eyebrow) {
  margin-top: 25px;
  font-size: 15px;
  line-height: 1.8;
  color: #e0e7d3;
}
.family-copy > p.family-detail {
  font-size: 12px;
  line-height: 1.9;
  max-width: 305px;
  color: #b8c9a8;
  margin-top: 17px;
}
.family-copy .button {
  margin-top: 27px;
  font-size: 11px;
}
.family-caption {
  position: absolute;
  bottom: 43px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #13321d80;
  backdrop-filter: blur(12px);
  border: 1px solid #d6e7c52e;
  border-radius: 5px;
  padding: 17px 20px;
}
.family-caption p {
  font-size: 6px;
  line-height: 2;
  letter-spacing: 0.12em;
  color: #e1e8d7;
}
.family-caption strong {
  color: var(--lime);
  font-weight: 500;
}
.caption-line {
  width: 4px;
  height: 27px;
  background: var(--lime);
  border-radius: 2px;
}
.family-caption > span:last-child {
  color: var(--lime);
  font-size: 23px;
  margin-left: 18px;
}
.start-action .cta-note {
  color: #8b997f;
  text-align: center;
  font-size: 8px;
}
.start-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  border-top: 1px solid var(--line);
  padding-top: 35px;
}
.start-steps article {
  position: relative;
  padding-right: 30px;
}
.start-steps article > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #cfdbc2;
  border-radius: 50%;
  font-size: 10px;
  color: #7b9367;
  margin-bottom: 25px;
}
.start-steps article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 7px;
  right: 0;
  color: #b7c4aa;
  font-size: 19px;
}
.start-steps h3 {
  font-size: 23px;
  letter-spacing: -0.04em;
}
.start-steps p {
  font-size: 12px;
  line-height: 1.9;
  color: #7d8c70;
  margin-top: 15px;
}
.faq {
  background: #edf1e8;
  border-top: 1px solid #dfe5d7;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 9%;
}
.faq h2 {
  margin-top: 20px;
}
.faq-layout > div:first-child > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  color: #819372;
  margin-top: 23px;
}
.faq .text-link {
  font-size: 11px;
  margin-top: 24px;
}
.faq .eyebrow {
  font-size: 8px;
}
.faq-list {
  border-top: 1px solid #ccd8c1;
}
.faq details {
  border-bottom: 1px solid #ccd8c1;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 30px 22px 0;
  position: relative;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1px;
  top: 22px;
  color: #779463;
  font-size: 18px;
  font-weight: 400;
}
.faq details[open] > summary::after {
  content: "−";
}
.faq details p {
  font-size: 12px;
  line-height: 1.9;
  color: #728565;
  padding: 0 25px 23px 0;
  max-width: 550px;
}
@keyframes world-float {
  0%,
  25%,
  75%,
  100% {
    transform: translate(0, 0);
  }
  45%,
  55% {
    transform: translate(var(--float-x), var(--float-y));
  }
}
@keyframes bang {
  0%,
  39%,
  61%,
  100% {
    transform: scale(1);
    opacity: 0;
  }
  40% {
    transform: scale(1);
    opacity: 0.75;
  }
  60% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}
.motion-paused .world,
.motion-paused .bang,
.motion-paused .orbit {
  animation-play-state: paused;
}
@media (min-width: 1500px) {
  .hero h1 {
    font-size: 96px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .site-header nav {
    gap: 18px;
  }
  .site-header nav .nav-cta {
    display: none;
  }
  .hero {
    gap: 30px;
    padding-top: 60px;
  }
  .hero h1 {
    font-size: clamp(60px, 7vw, 81px);
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .world {
    width: 200px;
    padding: 13px;
    gap: 8px;
  }
  .world strong {
    font-size: 16px;
  }
  .world p {
    font-size: 8px;
  }
  .world-symbol {
    width: 25px;
  }
  .world-plan {
    top: 30px;
  }
  .world-delivery {
    top: 140px;
  }
  .world-accounts {
    left: 12px;
    bottom: 10px;
  }
  .platform-core {
    width: 85px;
    height: 85px;
    left: 48%;
    top: 48%;
  }
  .hero-dashboard {
    margin-inline: 4px;
  }
  .hero-stats {
    gap: 10px;
  }
  .problem {
    gap: 7%;
  }
  .answer-card {
    padding-inline: 30px;
  }
  .orbit-two {
    width: 330px;
  }
}
@media (max-width: 900px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .nav-inner {
    height: 85px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    padding: 25px;
    background: var(--forest);
    z-index: 20;
    box-shadow: 0 20px 30px #0002;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-header nav.is-open {
    display: flex;
  }
  .site-header nav > a {
    padding: 13px;
    font-size: 15px;
  }
  .site-header nav .sign-in {
    margin: 0;
  }
  .site-header nav .nav-cta {
    display: flex;
    margin-top: 8px;
    font-size: 13px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-block: 60px;
  }
  .hero-copy {
    max-width: 630px;
  }
  .hero h1 {
    font-size: clamp(67px, 10vw, 95px);
  }
  .hero-lead {
    max-width: 470px;
    font-size: 16px;
  }
  .hero-art {
    width: 100%;
    max-width: 580px;
    margin-inline: auto;
  }
  .world {
    width: 228px;
    padding: 16px;
  }
  .world strong {
    font-size: 18px;
  }
  .world p {
    font-size: 9px;
  }
  .world-plan {
    left: 15px;
    top: 20px;
  }
  .world-delivery {
    top: 127px;
    right: 0;
  }
  .world-accounts {
    left: 35px;
  }
  .platform-core {
    width: 98px;
    height: 98px;
    left: 50%;
    top: 51%;
  }
  .hero-dashboard {
    margin-inline: 20px;
  }
  .orbit-two {
    width: 390px;
  }
  .audiences {
    grid-template-columns: repeat(4, 1fr);
    padding-block: 25px;
    gap: 20px;
  }
  .audiences > span {
    grid-column: 1/-1;
  }
  .audiences p {
    font-size: 11px;
  }
  .audiences strong {
    font-size: 14px;
  }
  .section {
    padding-block: 75px;
  }
  .problem {
    grid-template-columns: 1fr 1fr;
    gap: 7%;
  }
  .problem-copy h2 {
    font-size: 38px;
  }
  .answer-card {
    padding: 93px 25px 28px;
  }
  .answer-card h3 {
    font-size: 34px;
  }
  .pain-list > div {
    font-size: 14px;
  }
  .pain-list small {
    font-size: 7px;
    padding: 5px;
  }
  .footer-cta {
    padding-block: 65px;
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-bottom {
    gap: 18px;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav-inner {
    height: 78px;
  }
  .brand {
    font-size: 14px;
  }
  .brand small {
    font-size: 6px;
  }
  .site-header nav {
    top: 77px;
  }
  .hero {
    padding-top: 43px;
    gap: 45px;
  }
  .hero-copy .eyebrow {
    font-size: 7px;
    letter-spacing: 0.1em;
  }
  .hero h1 {
    font-size: clamp(42px, 12.5vw, 74px);
    margin-top: 25px;
  }
  .hero-lead {
    font-size: 14px;
    line-height: 1.9;
    margin-top: 23px;
  }
  .hero-actions {
    gap: 20px;
    margin-top: 24px;
  }
  .hero-actions .button {
    padding-inline: 16px;
    font-size: 11px;
    min-height: 50px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .cta-note {
    font-size: 9px;
  }
  .hero-art {
    padding: 0;
  }
  .art-heading {
    padding: 0;
    font-size: 6px;
  }
  .convergence {
    height: 326px;
    margin-top: 10px;
  }
  .world {
    width: 186px;
    padding: 12px;
    gap: 8px;
  }
  .world strong {
    font-size: 16px;
  }
  .world small {
    font-size: 6px;
  }
  .world p {
    font-size: 7px;
  }
  .world-symbol {
    width: 22px;
    font-size: 20px;
  }
  .world-plan {
    left: 0;
    top: 14px;
    --float-x: 12px;
    --float-y: 14px;
  }
  .world-delivery {
    right: 0;
    top: 132px;
    --float-x: -7px;
    --float-y: 0px;
  }
  .world-accounts {
    left: 10px;
    bottom: 6px;
    --float-x: 12px;
    --float-y: -8px;
  }
  .platform-core {
    width: 77px;
    height: 77px;
    border-radius: 20px;
    left: 44%;
    top: 46%;
  }
  .platform-core svg {
    width: 36px;
    height: 36px;
  }
  .platform-core span {
    font-size: 5px;
  }
  .orbit-one {
    width: 245px;
    height: 245px;
  }
  .orbit-two {
    width: 285px;
    height: 280px;
  }
  .orbit-three {
    width: 150px;
    height: 150px;
  }
  .spark-one {
    right: 14px;
    top: 30px;
    font-size: 25px;
  }
  .spark-two {
    right: 20px;
    bottom: 30px;
  }
  .hero-dashboard {
    margin: 23px 3px 0;
    padding: 20px 17px;
  }
  .dashboard-top {
    font-size: 11px;
  }
  .dashboard-top > small {
    font-size: 5px;
  }
  .hero-stats small {
    font-size: 7px;
  }
  .hero-stats strong {
    font-size: 28px;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 8px;
  }
  .dashboard-foot {
    font-size: 7px;
  }
  .audiences {
    grid-template-columns: repeat(2, 1fr);
    gap: 23px;
    padding-bottom: 35px;
  }
  .audiences > span {
    font-size: 7px;
  }
  .audiences strong {
    font-size: 16px;
  }
  .section {
    padding-block: 64px;
  }
  .eyebrow {
    font-size: 8px;
  }
  .problem {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .problem-copy h2 {
    font-size: 39px;
  }
  .problem-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .pain-list > div {
    font-size: 16px;
  }
  .answer-card {
    margin-inline: 7px;
    padding: 88px 28px 31px;
    rotate: 1.5deg;
  }
  .answer-card h3 {
    font-size: 40px;
  }
  .answer-card > p:not(.eyebrow) {
    font-size: 14px;
  }
  .answer-card .text-link {
    font-size: 13px;
  }
  .footer-cta {
    padding-block: 60px 45px;
  }
  .footer-cta h2 {
    font-size: 40px;
  }
  .footer-cta .eyebrow {
    font-size: 7px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 26px;
  }
  .footer-bottom p {
    order: 3;
  }
  .footer-wordmark {
    font-size: 12.6vw;
    margin-top: 18px;
  }
}
@media (max-width: 1150px) {
  .product-panel {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .panel-copy {
    padding: 30px 25px;
  }
  .panel-copy h3 {
    font-size: 29px;
  }
  .demo-canvas {
    padding: 23px 18px;
    margin: 22px 22px 22px 0;
  }
  .person {
    gap: 5px;
  }
  .person b {
    width: 19px;
    height: 19px;
    font-size: 6px;
  }
  .person > span {
    font-size: 8px;
  }
  .demo-header {
    gap: 10px;
  }
  .demo-header h4 {
    font-size: 15px;
  }
  .demo-badge {
    font-size: 6px;
  }
  .report-layout {
    gap: 7%;
  }
  .report-paper {
    padding-inline: 23px;
  }
  .family-section,
  .family-content {
    min-height: 700px;
  }
  .family-shade {
    background:
      linear-gradient(
        90deg,
        #0a1d13f5 0%,
        #0b2315d9 27%,
        #102a1766 53%,
        #132f1500 85%
      ),
      linear-gradient(0deg, #061d1499, transparent 40%);
  }
}
@media (max-width: 900px) {
  .section-heading {
    gap: 30px;
  }
  .section-heading h2 {
    font-size: 42px;
  }
  .section-heading > p {
    font-size: 12px;
    max-width: 240px;
  }
  .product-tabs {
    gap: 5px;
  }
  .product-tabs button {
    font-size: 10px;
    padding-inline: 12px;
    gap: 8px;
  }
  .product-tabs button > span:first-child {
    font-size: 8px;
  }
  .product-tabs button .tab-arrow {
    font-size: 14px;
  }
  .product-panel {
    grid-template-columns: 1fr;
  }
  .panel-copy {
    padding: 32px;
  }
  .panel-copy h3 {
    font-size: 35px;
  }
  .panel-copy > p:not(.eyebrow) {
    font-size: 14px;
    max-width: 520px;
  }
  .panel-copy ul {
    font-size: 12px;
  }
  .panel-copy .eyebrow {
    font-size: 8px;
  }
  .step-icon {
    margin-bottom: 20px;
  }
  .demo-canvas {
    margin: 0 28px 28px;
    padding: 26px;
  }
  .demo-header h4 {
    font-size: 21px;
  }
  .demo-header small {
    font-size: 9px;
  }
  .demo-badge {
    font-size: 8px;
  }
  .person b {
    width: 30px;
    height: 30px;
    font-size: 9px;
  }
  .person > span {
    font-size: 12px;
  }
  .person small {
    font-size: 8px;
  }
  .grid-head {
    font-size: 8px;
  }
  .resource-row {
    padding-block: 18px;
  }
  .slot {
    height: 40px;
    font-size: 12px;
  }
  .resource-row > strong {
    font-size: 13px;
  }
  .demo-bottom {
    font-size: 10px;
  }
  .work-card h5 {
    font-size: 16px;
  }
  .work-card > p {
    font-size: 11px;
  }
  .work-card > small {
    font-size: 8px;
  }
  .work-card > div {
    font-size: 10px;
  }
  .work-card strong {
    font-size: 9px;
  }
  .work-column > p {
    font-size: 13px;
  }
  .work-card b {
    width: 23px;
    height: 23px;
    font-size: 8px;
  }
  .payroll-table {
    font-size: 13px;
  }
  .payroll-table th {
    font-size: 9px;
  }
  .report-layout {
    gap: 6%;
  }
  .report-copy h2 {
    font-size: 43px;
  }
  .report-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .report-copy .eyebrow {
    font-size: 6px;
  }
  .report-paper {
    padding-inline: 20px;
  }
  .report-paper h3 {
    font-size: 25px;
  }
  .paper-top {
    font-size: 5px;
  }
  .paper-top small {
    font-size: 4px;
  }
  .report-inputs {
    font-size: 7px;
    gap: 8px;
  }
  .report-inputs > span {
    padding: 8px 10px;
  }
  .brief-line {
    gap: 9px;
  }
  .human-note {
    font-size: 10px;
  }
  .family-copy h2 {
    font-size: 60px;
  }
  .family-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .family-copy > p.family-detail {
    font-size: 11px;
    max-width: 260px;
  }
  .family-shade {
    background:
      linear-gradient(90deg, #0a1d13ed, #0b2315b5 43%, #102a1722 80%),
      linear-gradient(0deg, #061d1499, transparent 40%);
  }
  .family-image {
    object-position: 62% center;
  }
  .start-steps {
    gap: 25px;
  }
  .start-steps article {
    padding-right: 12px;
  }
  .start-steps h3 {
    font-size: 20px;
  }
  .faq-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 7%;
  }
  .faq h2 {
    font-size: 43px;
  }
  .faq .eyebrow {
    font-size: 6px;
  }
}
@media (max-width: 600px) {
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 40px;
  }
  .section-heading > p {
    max-width: 100%;
    font-size: 13px;
  }
  .product-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 12px;
  }
  .product-tabs button {
    font-size: 10px;
    padding: 13px 11px;
    gap: 6px;
    min-height: 50px;
  }
  .window-bar {
    padding: 15px;
    gap: 5px;
    flex-wrap: wrap;
    font-size: 9px;
  }
  .window-bar > small {
    font-size: 5px;
    padding-left: 39px;
  }
  .panel-copy {
    padding: 27px 23px;
  }
  .panel-copy h3 {
    font-size: 31px;
  }
  .panel-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .panel-copy ul {
    font-size: 11px;
  }
  .panel-copy > p.panel-fine {
    font-size: 10px;
  }
  .demo-canvas {
    margin: 0 12px 13px;
    padding: 20px 13px;
    border-radius: 7px;
  }
  .demo-header {
    margin-bottom: 20px;
    gap: 7px;
  }
  .demo-header h4 {
    font-size: 16px;
  }
  .demo-header small {
    font-size: 7px;
  }
  .demo-badge {
    font-size: 6px;
    padding: 5px;
  }
  .grid-head,
  .resource-row {
    grid-template-columns: 1.85fr repeat(5, 0.7fr) 0.65fr;
    gap: 3px;
  }
  .grid-head {
    font-size: 5px;
    letter-spacing: 0;
  }
  .person {
    gap: 4px;
  }
  .person b {
    width: 18px;
    height: 18px;
    font-size: 6px;
  }
  .person > span {
    font-size: 8px;
  }
  .person small {
    display: none;
  }
  .slot {
    height: 28px;
    font-size: 8px;
  }
  .resource-row {
    padding-block: 13px;
  }
  .resource-row > strong {
    font-size: 9px;
  }
  .demo-bottom {
    font-size: 7px;
    gap: 10px;
  }
  .demo-bottom > strong {
    font-size: 18px;
  }
  .demo-bottom > strong small {
    font-size: 6px;
    margin-left: 3px;
  }
  .product-disclaimer {
    font-size: 8px;
    line-height: 1.8;
    padding-inline: 15px;
  }
  .work-board {
    gap: 7px;
  }
  .work-column > p {
    font-size: 10px;
  }
  .work-card {
    padding: 12px 9px;
  }
  .work-card h5 {
    font-size: 12px;
  }
  .work-card > p {
    font-size: 9px;
  }
  .work-card > small {
    font-size: 5px;
  }
  .work-card > div {
    font-size: 7px;
    gap: 4px;
    flex-wrap: wrap;
  }
  .work-card strong {
    font-size: 7px;
  }
  .work-card b {
    width: 17px;
    height: 17px;
    font-size: 6px;
  }
  .payroll-table {
    font-size: 10px;
  }
  .payroll-table th {
    font-size: 6px;
  }
  .payroll-total {
    font-size: 8px;
    padding: 12px;
  }
  .payroll-total strong {
    font-size: 25px;
  }
  .cost-summary > div > strong {
    font-size: 32px;
  }
  .cost-summary {
    gap: 12px;
  }
  .cost-summary > p {
    font-size: 8px;
  }
  .cost-summary > div > small {
    font-size: 7px;
  }
  .cost-percent {
    font-size: 35px;
  }
  .cost-percent small {
    font-size: 17px;
  }
  .report-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .report-copy .eyebrow {
    font-size: 7px;
  }
  .report-copy h2 {
    font-size: 43px;
  }
  .report-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .human-note {
    font-size: 12px;
  }
  .report-visual {
    padding-inline: 7px;
  }
  .report-paper {
    padding: 26px 23px;
  }
  .report-paper h3 {
    font-size: 29px;
  }
  .paper-top {
    font-size: 6px;
  }
  .paper-top small {
    font-size: 5px;
  }
  .brief-line h4 {
    font-size: 12px;
  }
  .brief-line p {
    font-size: 11px;
  }
  .paper-project {
    font-size: 8px;
  }
  .paper-foot {
    font-size: 9px;
  }
  .report-inputs {
    font-size: 9px;
  }
  .report-inputs > span {
    padding: 9px 12px;
  }
  .report-fine {
    font-size: 9px;
  }
  .family-section,
  .family-content {
    min-height: 870px;
  }
  .family-content {
    justify-content: flex-start;
    padding-top: 50px;
    padding-bottom: 180px;
  }
  .family-copy h2 {
    font-size: 52px;
  }
  .family-copy .eyebrow {
    font-size: 7px;
  }
  .family-copy > p:not(.eyebrow) {
    font-size: 14px;
    margin-top: 20px;
  }
  .family-copy > p.family-detail {
    font-size: 12px;
    max-width: 310px;
  }
  .family-copy .button {
    font-size: 11px;
    margin-top: 22px;
  }
  .family-image {
    object-position: 67% bottom;
    height: 62%;
    top: auto;
  }
  .family-shade {
    background:
      linear-gradient(
        180deg,
        #10251e 0%,
        #10251e 36%,
        #10251ee0 49%,
        #10251e00 72%
      ),
      linear-gradient(0deg, #0a201a99, transparent 23%);
  }
  .family-caption {
    left: 0;
    right: 0;
    bottom: 24px;
    padding: 15px;
    justify-content: space-between;
  }
  .family-caption p {
    font-size: 5px;
    letter-spacing: 0.09em;
  }
  .family-caption > span:last-child {
    margin-left: 0;
  }
  .family-caption .caption-line {
    width: 3px;
  }
  .start-action .cta-note {
    font-size: 8px;
    text-align: left;
  }
  .start-steps {
    grid-template-columns: 1fr;
    gap: 29px;
    padding-top: 30px;
  }
  .start-steps article {
    padding-left: 49px;
    min-height: 84px;
  }
  .start-steps article > span {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    font-size: 9px;
  }
  .start-steps article:not(:last-child)::after {
    display: none;
  }
  .start-steps h3 {
    font-size: 23px;
  }
  .start-steps p {
    font-size: 13px;
    margin-top: 10px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq .eyebrow {
    font-size: 7px;
  }
  .faq h2 {
    font-size: 43px;
  }
  .faq summary {
    font-size: 13px;
    padding-block: 20px;
  }
  .faq details p {
    font-size: 12px;
  }
}
/* Readability pass: the illustration is quiet, but the actual information stays legible. */
.hero-lead {
  font-size: 16px;
}
.site-header nav {
  font-size: 13px;
}
.hero-actions .button,
.hero-actions .text-link {
  font-size: 13px;
}
.hero-copy .eyebrow {
  font-size: 10px;
}
.cta-note {
  font-size: 11px;
}
.art-heading {
  font-size: 9px;
}
.world small {
  font-size: 8px;
}
.world p {
  font-size: 10px;
}
.dashboard-top > small {
  font-size: 8px;
}
.hero-stats small {
  font-size: 10px;
}
.dashboard-foot {
  font-size: 10px;
}
.audiences > span {
  font-size: 9px;
}
.problem-copy > p:not(.eyebrow),
.section-heading > p {
  font-size: 15px;
}
.answer-card > p:not(.eyebrow) {
  font-size: 14px;
}
.answer-card .eyebrow {
  font-size: 9px;
}
.answer-card .text-link {
  font-size: 13px;
}
.panel-copy > p:not(.eyebrow) {
  font-size: 14px;
  color: #58674f;
}
.panel-copy ul {
  font-size: 12px;
}
.panel-copy > p.panel-fine {
  font-size: 11px;
  color: #58674f;
}
.panel-copy .eyebrow {
  font-size: 9px;
  color: #58674f;
}
.window-bar > small {
  font-size: 8px;
  color: #58674f;
}
.window-bar {
  font-size: 11px;
}
.demo-header small {
  font-size: 9px;
  color: #58674f;
}
.demo-badge {
  font-size: 9px;
  color: #58674f;
}
.person > span {
  font-size: 11px;
}
.person small {
  font-size: 8px;
  color: #58674f;
}
.person b {
  font-size: 8px;
}
.grid-head {
  font-size: 8px;
  color: #58674f;
}
.slot {
  font-size: 11px;
}
.slot.pale {
  color: #50633f;
}
.slot.green {
  color: #36512b;
}
.resource-row > strong {
  font-size: 12px;
}
.demo-bottom {
  font-size: 10px;
  color: #58674f;
}
.demo-bottom > strong small {
  font-size: 9px;
}
.product-disclaimer {
  font-size: 11px;
  color: #58674f;
}
.work-column > p {
  font-size: 12px;
}
.work-card h5 {
  font-size: 14px;
}
.work-card > p {
  font-size: 11px;
  color: #58674f;
}
.work-card > small {
  font-size: 8px;
  color: #58674f;
}
.work-card > div {
  font-size: 9px;
  color: #58674f;
}
.work-card strong {
  font-size: 8px;
}
.cost-summary > div > small {
  font-size: 11px;
  color: #58674f;
}
.cost-summary > p {
  font-size: 11px;
}
.cost-summary > p > span {
  font-size: 10px;
  color: #58674f;
}
.cost-labels {
  font-size: 10px;
  color: #58674f;
}
.chart-bars small {
  font-size: 10px;
  color: #58674f;
}
.payroll-table {
  font-size: 12px;
  color: #58674f;
}
.payroll-table th {
  font-size: 9px;
  color: #58674f;
}
.payroll-total {
  font-size: 11px;
  color: #58674f;
}
.report-copy > p:not(.eyebrow) {
  font-size: 15px;
}
.report-copy .eyebrow {
  font-size: 9px;
}
.report-inputs {
  font-size: 11px;
}
.paper-top {
  font-size: 8px;
  color: #58674f;
}
.paper-top small {
  font-size: 7px;
  color: #58674f;
}
.paper-project {
  font-size: 10px;
  color: #58674f;
}
.brief-line h4 {
  font-size: 13px;
}
.brief-line p {
  font-size: 12px;
  color: #58674f;
}
.brief-line > span {
  font-size: 10px;
  color: #58674f;
}
.paper-foot {
  font-size: 10px;
  color: #58674f;
}
.report-fine {
  font-size: 10px;
  color: #aac298;
}
.family-copy {
  max-width: 490px;
}
.family-copy > p.family-detail {
  font-size: 13px;
  max-width: 340px;
}
.family-copy .eyebrow {
  font-size: 9px;
}
.family-copy .button {
  font-size: 13px;
}
.family-caption p {
  font-size: 8px;
}
.family-copy h2 {
  font-size: clamp(48px, 5.2vw, 74px);
}
.start-steps p {
  font-size: 14px;
  color: #58674f;
}
.start-action .cta-note {
  font-size: 10px;
  color: #58674f;
}
.faq-layout > div:first-child > p:not(.eyebrow) {
  font-size: 14px;
  color: #58674f;
}
.faq summary {
  font-size: 15px;
}
.faq details p {
  font-size: 14px;
  color: #58674f;
}
.faq .text-link {
  font-size: 13px;
}
.faq .eyebrow {
  font-size: 9px;
}
.footer-bottom {
  font-size: 12px;
}
.footer-cta .eyebrow {
  font-size: 9px;
}
@media (max-width: 1150px) {
  .world p {
    font-size: 9px;
  }
  .person > span {
    font-size: 9px;
  }
  .person small {
    font-size: 7px;
  }
  .grid-head {
    font-size: 7px;
  }
  .slot {
    font-size: 10px;
  }
  .demo-badge {
    font-size: 8px;
  }
  .report-inputs {
    font-size: 9px;
  }
  .paper-top {
    font-size: 7px;
  }
  .paper-top small {
    font-size: 6px;
  }
  .family-copy {
    max-width: 450px;
  }
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: clamp(67px, 10vw, 95px);
  }
  .person > span {
    font-size: 12px;
  }
  .person small {
    font-size: 9px;
  }
  .grid-head {
    font-size: 9px;
  }
  .slot {
    font-size: 12px;
  }
  .family-copy {
    max-width: 380px;
  }
  .family-copy h2 {
    font-size: 60px;
  }
  .report-paper {
    padding-inline: 20px;
  }
  .report-copy h2 {
    font-size: 42px;
  }
  .report-copy .eyebrow {
    font-size: 7px;
  }
  .brief-line p {
    font-size: 11px;
  }
  .paper-top {
    flex-wrap: wrap;
    gap: 6px;
  }
  .report-inputs {
    font-size: 8px;
  }
  .report-fine {
    font-size: 9px;
  }
  .faq .eyebrow {
    font-size: 7px;
  }
  .family-copy > p.family-detail {
    max-width: 280px;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(42px, 12.5vw, 74px);
  }
  .hero-copy .eyebrow {
    font-size: 8px;
  }
  .hero-lead {
    font-size: 14px;
  }
  .hero-actions .button {
    font-size: 11px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .cta-note {
    font-size: 10px;
  }
  .world small {
    font-size: 7px;
  }
  .world p {
    font-size: 8px;
  }
  .art-heading {
    font-size: 7px;
  }
  .hero-stats small {
    font-size: 8px;
  }
  .dashboard-top > small {
    font-size: 7px;
  }
  .dashboard-foot {
    font-size: 8px;
  }
  .world-delivery {
    top: 147px;
  }
  .world-accounts {
    bottom: -6px;
  }
  .platform-core {
    top: 42%;
    left: 48%;
  }
  .hero-dashboard {
    margin-top: 32px;
  }
  .audiences > span {
    font-size: 8px;
  }
  .window-bar > small {
    font-size: 6px;
  }
  .window-bar {
    font-size: 10px;
  }
  .panel-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .panel-copy ul {
    font-size: 12px;
  }
  .panel-copy .eyebrow {
    font-size: 9px;
  }
  .demo-header small {
    font-size: 8px;
  }
  .demo-badge {
    font-size: 7px;
  }
  .person b {
    display: none;
  }
  .person > span {
    font-size: 9px;
  }
  .grid-head {
    font-size: 7px;
  }
  .grid-head > span:first-child {
    font-size: 6px;
  }
  .grid-head > span:last-child {
    font-size: 6px;
  }
  .slot {
    font-size: 9px;
  }
  .resource-row > strong {
    font-size: 10px;
  }
  .demo-bottom {
    font-size: 8px;
  }
  .demo-bottom > strong small {
    font-size: 7px;
  }
  .product-disclaimer {
    font-size: 10px;
  }
  .work-card h5 {
    font-size: 12px;
  }
  .work-card > small {
    font-size: 7px;
  }
  .work-card > p {
    font-size: 10px;
  }
  .work-card > div {
    font-size: 8px;
  }
  .work-card strong {
    font-size: 7px;
  }
  .payroll-table {
    font-size: 10px;
  }
  .payroll-table th {
    font-size: 7px;
  }
  .payroll-total {
    font-size: 9px;
  }
  .cost-summary > div > small {
    font-size: 8px;
  }
  .cost-summary > p {
    font-size: 9px;
  }
  .cost-summary > p > span {
    font-size: 8px;
  }
  .cost-labels {
    font-size: 9px;
  }
  .report-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .report-copy .eyebrow {
    font-size: 8px;
  }
  .report-inputs {
    font-size: 10px;
  }
  .brief-line p {
    font-size: 12px;
  }
  .brief-line h4 {
    font-size: 13px;
  }
  .paper-top {
    flex-wrap: nowrap;
    font-size: 7px;
  }
  .paper-top small {
    font-size: 6px;
  }
  .paper-project {
    font-size: 9px;
  }
  .paper-foot {
    font-size: 9px;
  }
  .report-fine {
    font-size: 10px;
  }
  .family-copy {
    max-width: 100%;
  }
  .family-copy h2 {
    font-size: 52px;
  }
  .family-copy .eyebrow {
    font-size: 8px;
  }
  .family-copy > p.family-detail {
    font-size: 13px;
    max-width: 310px;
  }
  .family-copy .button {
    font-size: 12px;
  }
  .family-caption p {
    font-size: 7px;
    letter-spacing: 0.045em;
  }
  .family-caption {
    gap: 10px;
  }
  .family-caption > span:last-child {
    font-size: 20px;
  }
  .family-copy {
    padding-bottom: 30px;
  }
  .family-section,
  .family-content {
    min-height: 915px;
  }
  .family-image {
    height: 56%;
  }
  .family-shade {
    background:
      linear-gradient(
        180deg,
        #10251e 0%,
        #10251e 43%,
        #10251ee0 53%,
        #10251e00 73%
      ),
      linear-gradient(0deg, #0a201a99, transparent 23%);
  }
  .start-steps p {
    font-size: 14px;
  }
  .faq summary {
    font-size: 14px;
  }
  .faq details p {
    font-size: 14px;
  }
  .faq .eyebrow {
    font-size: 8px;
  }
  .footer-bottom {
    font-size: 11px;
  }
  .footer-cta .eyebrow {
    font-size: 8px;
  }
}
/* Keep decorative orbits inside the artwork; the three cards carry the motion. */
.orbit {
  animation: none;
}
.orbit-two {
  rotate: 0deg;
  width: min(330px, 100%);
  height: 310px;
}
@media (max-width: 600px) {
  .orbit-two {
    width: min(285px, 100%);
    height: 280px;
  }
  .hero-actions {
    align-items: flex-start;
  }
  .family-caption > span:last-child {
    display: none;
  }
  .convergence {
    height: 380px;
  }
  .platform-core {
    top: 43%;
    left: 45%;
  }
  .world-delivery {
    top: 204px;
  }
  .world-accounts {
    bottom: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
