:root {
  --ink: #101b2c;
  --ink-2: #263449;
  --paper: #f6f4ef;
  --white: #ffffff;
  --line: #d9ddd9;
  --muted: #6d7580;
  --coral: #f44f5f;
  --coral-dark: #dc3447;
  --navy: #0c1d32;
  --mint: #b8e1ce;
  --green: #268b62;
  --amber: #efb44f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

[hidden] {
  display: none !important;
}

.capture-mode {
  scroll-behavior: auto !important;
  scrollbar-width: none;
}

.capture-mode::-webkit-scrollbar,
.capture-mode body::-webkit-scrollbar {
  display: none;
}

.capture-mode .site-header,
.capture-mode .faq-intro {
  position: relative;
  top: auto;
}

.capture-mode .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.capture-mode .process-marquee-track {
  animation: none !important;
}

button,
input,
select {
  font: inherit;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  border-bottom: 1px solid rgba(16, 27, 44, 0.1);
  background: rgba(246, 244, 239, 0.94);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  font-weight: 800;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--coral);
  color: white;
  border-radius: 7px 7px 7px 2px;
  transform: rotate(-3deg);
  box-shadow: 0 5px 12px rgba(244, 79, 95, 0.24);
}

.brand-mark span {
  transform: rotate(3deg);
  font-size: 15px;
}

.brand-word {
  font-size: 18px;
  letter-spacing: -0.6px;
}

.brand-word > span {
  color: var(--coral);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

.desktop-nav a,
.login-link {
  color: #465162;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.login-link:hover {
  color: var(--coral);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 7px;
  background: var(--coral);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(244, 79, 95, 0.2);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--coral-dark);
  box-shadow: 0 14px 30px rgba(244, 79, 95, 0.28);
}

.button span {
  font-size: 17px;
}

.button-small {
  min-height: 40px;
  padding: 0 15px;
  gap: 10px;
  font-size: 12px;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  min-height: 760px;
  overflow: hidden;
  position: relative;
  padding: 92px 0 74px;
  background:
    radial-gradient(circle at 82% 38%, rgba(184, 225, 206, 0.52), transparent 29%),
    var(--paper);
}

.hero::after {
  content: "OPERATIONS / 01";
  position: absolute;
  left: 22px;
  bottom: 30px;
  color: rgba(16, 27, 44, 0.36);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.8px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-grid-lines,
.demo-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.33;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 27, 44, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 27, 44, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, black, transparent 58%);
}

.hero-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(16, 27, 44, 0.08);
  border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-orbit::before {
  inset: 12%;
  border: 1px dashed rgba(244, 79, 95, 0.17);
}

.hero-orbit::after {
  width: 8px;
  height: 8px;
  top: 17%;
  right: 17%;
  background: var(--coral);
  box-shadow: 0 0 0 7px rgba(244, 79, 95, 0.1);
}

.hero-orbit-one {
  width: 620px;
  height: 620px;
  top: 20px;
  right: -235px;
}

.hero-orbit-two {
  width: 350px;
  height: 350px;
  left: -210px;
  bottom: -185px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding-right: 24px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(244, 79, 95, 0.13);
}

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

.hero h1 {
  max-width: 680px;
  margin: 23px 0 24px;
  color: var(--ink);
  font-size: clamp(48px, 5.2vw, 72px);
  line-height: 0.99;
  letter-spacing: -4.2px;
  font-weight: 760;
}

h1 em,
h2 em {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 585px;
  color: #526071;
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 31px 0 18px;
}

.button-large {
  min-height: 58px;
  padding: 0 25px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  border-bottom: 1px solid rgba(16, 27, 44, 0.35);
  padding-bottom: 4px;
}

.play {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 29px;
  padding-left: 2px;
  border: 1px solid #adb5bd;
  border-radius: 50%;
  font-size: 8px;
}

.microcopy {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7e8792;
  font-size: 11px;
  font-weight: 550;
}

.microcopy span {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 22px;
  background: var(--ink);
  color: white;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
}

.product-stage {
  position: relative;
  z-index: 2;
  width: 790px;
  height: 600px;
  margin-left: 8px;
}

.stage-coordinate {
  position: absolute;
  z-index: 10;
  color: rgba(16, 27, 44, 0.48);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.coordinate-top {
  top: 18px;
  left: 9px;
}

.coordinate-side {
  top: 126px;
  right: 120px;
  writing-mode: vertical-rl;
}

.stage-cross {
  position: absolute;
  z-index: 9;
  width: 18px;
  height: 18px;
}

.stage-cross::before,
.stage-cross::after {
  content: "";
  position: absolute;
  background: var(--coral);
}

.stage-cross::before {
  width: 18px;
  height: 1px;
  top: 8px;
}

.stage-cross::after {
  width: 1px;
  height: 18px;
  left: 8px;
}

.cross-one {
  top: 62px;
  left: -30px;
}

.cross-two {
  right: 125px;
  bottom: 47px;
  transform: scale(0.65);
}

.product-shadow {
  position: absolute;
  width: 530px;
  height: 370px;
  left: 55px;
  top: 110px;
  background: rgba(10, 26, 45, 0.13);
  filter: blur(55px);
  border-radius: 50%;
}

.desktop-app {
  position: absolute;
  top: 48px;
  left: 0;
  width: 650px;
  height: 428px;
  overflow: hidden;
  border: 1px solid rgba(16, 27, 44, 0.13);
  border-radius: 11px;
  background: #f8fafb;
  box-shadow: 0 28px 70px rgba(21, 34, 50, 0.18);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.app-topbar {
  height: 45px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  gap: 24px;
  color: white;
  background: var(--navy);
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
}

.app-brand span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--coral);
}

.app-search {
  flex: 1;
  max-width: 275px;
  padding: 7px 10px;
  color: #9da8b7;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  font-size: 8px;
}

.app-user,
.avatar {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-left: auto;
  background: #dbe5ef;
  color: var(--navy);
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.app-body {
  display: flex;
  height: calc(100% - 45px);
}

.app-sidebar {
  width: 47px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 17px 0;
  border-right: 1px solid #e4e8eb;
  background: white;
  color: #97a0aa;
  font-size: 13px;
}

.app-sidebar span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
}

.app-sidebar .side-active {
  color: var(--coral);
  background: #fff0f2;
  border-radius: 5px;
}

.calendar {
  flex: 1;
  padding: 15px 16px;
}

.calendar-head {
  height: 43px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.calendar-head b,
.calendar-head small {
  display: block;
}

.calendar-head b {
  font-size: 10px;
}

.calendar-head small {
  margin-top: 4px;
  color: #8993a0;
  font-size: 7px;
}

.view-pills {
  display: flex;
  padding: 2px;
  background: #e9edf0;
  border-radius: 4px;
}

.view-pills span {
  padding: 4px 8px;
  color: #7b8590;
  font-size: 7px;
}

.view-pills span:first-child {
  background: white;
  color: var(--ink);
  border-radius: 3px;
  box-shadow: 0 1px 3px #cfd4d9;
}

.calendar-grid {
  height: 309px;
  display: grid;
  grid-template-columns: 35px repeat(3, 1fr);
  border: 1px solid #e1e5e8;
  background:
    repeating-linear-gradient(to bottom, transparent 0, transparent 43px, #e8ebed 44px);
  border-radius: 6px;
}

.times {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 42px 4px 0;
  color: #9aa2ab;
  font-size: 6px;
}

.tech-column {
  position: relative;
  border-left: 1px solid #e3e7ea;
}

.tech-head {
  height: 38px;
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  padding: 5px 8px;
  border-bottom: 1px solid #e3e7ea;
  background: #fff;
}

.tech-head i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eaf0f5;
  color: #38506c;
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
}

.tech-head b {
  font-size: 7px;
}

.tech-head small {
  color: #929aa3;
  font-size: 6px;
}

.job {
  position: absolute;
  left: 5px;
  right: 5px;
  padding: 7px;
  border-left: 3px solid;
  border-radius: 4px;
}

.job small,
.job b,
.job span {
  display: block;
}

.job small {
  font-size: 6px;
  opacity: 0.62;
}

.job b {
  margin: 4px 0 2px;
  font-size: 7px;
}

.job span {
  font-size: 6px;
  opacity: 0.73;
}

.job-navy {
  top: 50px;
  height: 66px;
  color: #253f5c;
  background: #e4edf6;
  border-color: #365b80;
}

.job-mint {
  top: 136px;
  height: 91px;
  color: #235844;
  background: #dff2e9;
  border-color: #47a077;
}

.job-coral {
  top: 43px;
  height: 104px;
  color: #8e3040;
  background: #fde4e7;
  border-color: var(--coral);
}

.job-amber {
  top: 171px;
  height: 83px;
  color: #74521b;
  background: #fcedcf;
  border-color: var(--amber);
}

.job-slate {
  top: 93px;
  height: 93px;
  color: #4a5360;
  background: #e9edf0;
  border-color: #8995a1;
}

.workorder-card {
  position: absolute;
  z-index: 5;
  width: 256px;
  height: 259px;
  top: 294px;
  left: 55px;
  padding: 16px;
  border: 1px solid #e0e4e6;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(22, 36, 53, 0.18);
}

.wo-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf0f1;
}

.wo-head small,
.wo-head b {
  display: block;
}

.wo-head small {
  color: #8e97a1;
  font-size: 7px;
  letter-spacing: 0.7px;
}

.wo-head b {
  margin-top: 3px;
  font-size: 11px;
}

.status,
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 99px;
  background: #e1f2ea;
  color: #237252;
  font-size: 7px;
  font-weight: 750;
}

.car-line {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 0;
}

.car-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 6px;
  background: #eef2f5;
  color: #6e7d8c;
}

.car-line b,
.car-line small {
  display: block;
}

.car-line b {
  font-size: 9px;
}

.car-line small {
  margin-top: 3px;
  color: #8a949f;
  font-size: 7px;
}

.progress-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  margin-bottom: 13px;
}

.progress-track span {
  height: 3px;
  background: #e4e8ea;
  border-radius: 4px;
}

.progress-track span:nth-child(-n + 2) {
  background: var(--green);
}

.progress-track .now {
  background: var(--coral);
}

.wo-list {
  display: grid;
  gap: 9px;
}

.wo-list > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check,
.empty-check,
.loader {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #def1e7;
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
}

.empty-check {
  border: 1px solid #cfd6da;
  background: transparent;
}

.loader {
  color: var(--coral);
  background: #ffedf0;
  font-size: 12px;
}

.wo-list b,
.wo-list small {
  display: block;
}

.wo-list b {
  font-size: 8px;
}

.wo-list small {
  margin-top: 2px;
  color: #929aa3;
  font-size: 7px;
}

.phone {
  position: absolute;
  z-index: 7;
  top: 223px;
  left: 430px;
  width: 176px;
  height: 354px;
  overflow: hidden;
  padding: 7px;
  border: 5px solid #172234;
  border-radius: 28px;
  background: #f5f6f6;
  box-shadow: 0 28px 55px rgba(15, 26, 42, 0.27);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 50%;
  width: 52px;
  height: 13px;
  transform: translateX(-50%);
  border-radius: 10px;
  background: #172234;
}

.phone-top {
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  font-size: 6px;
  font-weight: 700;
}

.phone-top i {
  width: 30px;
}

.mobile-brand {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7px;
  border-bottom: 1px solid #e2e5e6;
  font-size: 8px;
}

.mobile-brand b {
  color: var(--ink);
}

.mobile-job {
  padding: 13px 8px;
}

.mobile-job > small {
  color: var(--coral);
  font-size: 6px;
  font-weight: 800;
}

.mobile-job h4 {
  margin: 4px 0 2px;
  font-size: 14px;
}

.mobile-job > p {
  color: #8c949d;
  font-size: 7px;
}

.timer {
  margin: 12px 0 9px;
  padding: 10px;
  border-radius: 7px;
  background: var(--navy);
  color: white;
}

.timer span,
.timer b,
.timer small {
  display: block;
}

.timer span {
  color: #aab8c8;
  font-size: 6px;
}

.timer b {
  margin-top: 5px;
  font-size: 15px;
  letter-spacing: 1.1px;
}

.mobile-job button {
  width: 100%;
  height: 31px;
  border: 0;
  border-radius: 5px;
  background: var(--coral);
  color: white;
  font-size: 7px;
  font-weight: 800;
}

.mobile-task {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
  border-bottom: 1px solid #e6e9ea;
  font-size: 7px;
  font-weight: 650;
}

.mobile-task .check,
.mobile-task .empty-check {
  width: 15px;
  height: 15px;
}

.phone-home {
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 53px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 2px;
  background: #182335;
}

.float-status {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border: 1px solid #e2e5e7;
  border-radius: 7px;
  background: white;
  box-shadow: 0 14px 30px rgba(18, 32, 50, 0.16);
  font-size: 8px;
  font-weight: 750;
}

.float-status .check {
  width: 15px;
  height: 15px;
}

.accepted {
  top: 150px;
  left: 503px;
}

.invoice {
  top: 488px;
  left: 319px;
}

.invoice > span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  color: #825b14;
  background: #fff0d0;
}

.trust-bar {
  border-top: 1px solid #d7dbd8;
  border-bottom: 1px solid #d7dbd8;
  background: #eeece7;
}

.process-marquee {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #d7dbd8;
  background: var(--coral);
  color: white;
}

.process-marquee-track {
  width: max-content;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 25px;
  padding-left: 25px;
  animation: marquee 28s linear infinite;
}

.process-marquee span {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 1.6px;
}

.process-marquee i {
  color: rgba(255, 255, 255, 0.55);
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.trust-grid {
  min-height: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-grid > div {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  border-right: 1px solid #cfd3d0;
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid span {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.trust-grid b {
  font-size: 11px;
  line-height: 1.35;
}

.section {
  position: relative;
  padding: 126px 0;
}

.section[data-section]::before {
  content: attr(data-section);
  position: absolute;
  z-index: 2;
  top: 42px;
  left: max(18px, calc((100vw - 1360px) / 2));
  color: rgba(16, 27, 44, 0.34);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 1.5px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.workflow-section[data-section]::before,
.mobile-work[data-section]::before,
.demo-section[data-section]::before {
  color: rgba(255, 255, 255, 0.32);
}

.section-heading {
  margin-bottom: 55px;
}

.section-heading h2,
.mobile-copy h2,
.demo-copy h2,
.faq-intro h2,
.onboarding-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -3.3px;
}

.split-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: end;
  gap: 80px;
}

.split-heading p,
.centered > p {
  margin: 0 0 4px;
  color: #687380;
  font-size: 14px;
  line-height: 1.75;
}

.centered {
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.centered > p {
  max-width: 560px;
  margin: 18px auto 0;
}

.pain-section {
  background: #fff;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.question-card {
  position: relative;
  min-height: 165px;
  padding: 25px 25px 22px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background 0.25s ease;
}

.question-card:hover {
  background: #f9f7f2;
}

.question-card > span {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.question-card h3 {
  position: relative;
  z-index: 2;
  max-width: 220px;
  margin: 35px 0 0;
  font-size: 19px;
  letter-spacing: -0.5px;
}

.question-card i {
  position: absolute;
  right: 20px;
  bottom: -36px;
  color: #f0efea;
  font-family: Georgia, serif;
  font-size: 115px;
  font-style: italic;
}

.answer-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 88px;
  padding: 20px 24px;
  color: white;
  background: var(--navy);
}

.system-equation {
  display: grid;
  grid-template-columns: 1fr 55px 1fr 55px 1.2fr;
  align-items: stretch;
  min-height: 190px;
  margin-top: 22px;
  border: 1px solid var(--line);
  background: #f7f5f0;
}

.equation-block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 27px;
  overflow: hidden;
  background:
    linear-gradient(rgba(16, 27, 44, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 27, 44, 0.045) 1px, transparent 1px);
  background-size: 21px 21px;
}

.equation-block::after {
  content: "";
  position: absolute;
  width: 88px;
  height: 88px;
  top: -40px;
  right: -32px;
  border: 1px solid rgba(16, 27, 44, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 13px rgba(16, 27, 44, 0.025);
}

.equation-block small {
  position: absolute;
  top: 22px;
  left: 27px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-style: italic;
}

.equation-block strong,
.equation-block span {
  display: block;
}

.equation-block strong {
  font-size: clamp(20px, 2.3vw, 30px);
  letter-spacing: -1.3px;
}

.equation-block span {
  margin-top: 8px;
  color: #77818b;
  font-size: 9px;
}

.equation-sign {
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--coral);
  background: white;
  font-family: Georgia, serif;
  font-size: 32px;
  font-style: italic;
}

.equation-result {
  color: white;
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
}

.equation-result span {
  color: #9eacba;
}

.equation-result::after {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 13px rgba(255, 255, 255, 0.025);
}

.answer-logo {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 7px 7px 7px 2px;
  background: var(--coral);
  font-weight: 850;
}

.answer-strip p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.answer-strip a {
  margin-left: auto;
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
  color: #ced6e0;
  font-size: 11px;
  font-weight: 750;
}

.workflow-section {
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.workflow-ghost-number {
  position: absolute;
  top: 20px;
  right: -10px;
  color: rgba(255, 255, 255, 0.025);
  font-family: Georgia, serif;
  font-size: min(33vw, 470px);
  font-style: italic;
  line-height: 0.8;
  pointer-events: none;
}

.kicker.light {
  color: #ff7884;
}

.flow-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin: 45px 0 70px;
}

.flow-line {
  position: absolute;
  top: 19px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.flow-line span {
  display: block;
  width: 58%;
  height: 1px;
  background: var(--coral);
}

.flow-step {
  position: relative;
  z-index: 2;
  padding: 0 13px;
  text-align: center;
}

.flow-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0 auto 21px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: var(--navy);
  color: #8d99a8;
  font-size: 9px;
  font-weight: 750;
}

.flow-step.featured .flow-number {
  border-color: var(--coral);
  background: var(--coral);
  color: white;
  box-shadow: 0 0 0 7px rgba(244, 79, 95, 0.13);
}

.flow-content h3 {
  min-height: 34px;
  margin: 0 0 9px;
  font-size: 12px;
  line-height: 1.35;
}

.flow-content p {
  color: #93a0af;
  font-size: 9px;
  line-height: 1.55;
}

.flow-check {
  color: #6c7786;
  font-size: 9px;
}

.flow-step.featured .flow-check {
  color: var(--coral);
}

.workflow-dashboard {
  width: 940px;
  margin: 0 auto -220px;
  overflow: hidden;
  color: var(--ink);
  border: 8px solid rgba(255, 255, 255, 0.07);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: #f8fafb;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.25);
}

.dash-title {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  border-bottom: 1px solid #e4e8eb;
  background: white;
}

.dash-title small {
  color: #8e99a4;
  font-size: 8px;
  letter-spacing: 0.8px;
}

.dash-title h3 {
  margin: 6px 0 0;
  font-size: 16px;
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 255px;
  min-height: 405px;
}

.dash-main {
  padding: 22px;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dash-metrics > div {
  padding: 18px;
  border: 1px solid #e3e7e9;
  border-radius: 6px;
  background: white;
}

.dash-metrics small,
.dash-metrics b,
.dash-metrics span {
  display: block;
}

.dash-metrics small {
  color: #8c96a1;
  font-size: 7px;
  letter-spacing: 0.5px;
}

.dash-metrics b {
  margin: 12px 0 7px;
  font-size: 18px;
}

.dash-metrics span {
  color: #7c8792;
  font-size: 8px;
}

.dash-metrics span.green {
  color: var(--green);
  font-weight: 750;
}

.dash-tasks {
  margin-top: 17px;
  padding: 5px 18px;
  border: 1px solid #e3e7e9;
  border-radius: 6px;
  background: white;
}

.dash-tasks > div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 71px;
  border-bottom: 1px solid #eceff0;
}

.dash-tasks > div:last-child {
  border: 0;
}

.dash-tasks p {
  margin: 0;
}

.dash-tasks p b,
.dash-tasks p span {
  display: block;
}

.dash-tasks p b {
  font-size: 10px;
}

.dash-tasks p span {
  margin-top: 4px;
  color: #8b95a0;
  font-size: 8px;
}

.dash-tasks strong {
  margin-left: auto;
  font-size: 10px;
}

.dash-activity {
  padding: 22px;
  border-left: 1px solid #e2e6e9;
  background: white;
}

.dash-activity h4 {
  margin-bottom: 24px;
  font-size: 11px;
}

.dash-activity > div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.avatar {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  margin: 0;
}

.avatar.coral {
  color: #9b3341;
  background: #fde1e5;
}

.avatar.navy {
  color: #34506d;
  background: #e2eaf2;
}

.avatar.mint {
  color: #236f52;
  background: #dff1e8;
}

.dash-activity p {
  margin: 0;
}

.dash-activity b,
.dash-activity small {
  display: block;
}

.dash-activity b {
  font-size: 9px;
}

.dash-activity small {
  margin-top: 4px;
  color: #929aa4;
  font-size: 7px;
}

.roles-section {
  padding-top: 320px;
  background: #f7f5f0;
}

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

.role-card {
  position: relative;
  min-height: 420px;
  padding: 27px;
  border: 1px solid var(--line);
  background: #fff;
}

.role-card::after,
.pillar-card::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--coral);
  border-right: 1px solid var(--coral);
}

.role-card.role-featured {
  color: white;
  border-color: var(--navy);
  background: var(--navy);
  transform: translateY(-14px);
  box-shadow: 0 26px 45px rgba(16, 29, 46, 0.16);
}

.role-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.role-no {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f0f2f2;
  color: #536172;
  font-size: 18px;
}

.role-featured .icon {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.role-card h3 {
  margin: 55px 0 12px;
  font-size: 26px;
  letter-spacing: -1.1px;
}

.role-card > p {
  max-width: 280px;
  color: #747e89;
  font-size: 13px;
  line-height: 1.65;
}

.role-featured > p {
  color: #aeb8c4;
}

.role-card ul {
  display: grid;
  gap: 13px;
  margin: 31px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid #e4e7e7;
  list-style: none;
}

.role-featured ul {
  border-color: rgba(255, 255, 255, 0.13);
}

.role-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 650;
}

.role-card li .check {
  width: 16px;
  height: 16px;
}

.recommended {
  position: absolute;
  left: 27px;
  bottom: 22px;
  color: #7e8b99;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1px;
}

.pillars-section {
  background: white;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pillar-card {
  position: relative;
  min-height: 315px;
  padding: 29px;
  background: white;
  transition: background 0.25s ease, color 0.25s ease;
}

.pillar-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--coral);
  transition: width 0.35s ease;
}

.pillar-card:hover::before {
  width: 100%;
}

.pillar-card:hover {
  color: white;
  background: var(--navy);
}

.pillar-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--coral);
  background: #fff0f2;
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 800;
}

.pillar-index {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #a1a8ae;
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: italic;
}

.pillar-card h3 {
  margin: 45px 0 12px;
  font-size: 20px;
  letter-spacing: -0.6px;
}

.pillar-card p {
  color: #727d88;
  font-size: 12px;
  line-height: 1.7;
}

.pillar-card:hover p {
  color: #aeb9c5;
}

.pillar-card a {
  position: absolute;
  bottom: 28px;
  display: flex;
  gap: 9px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
}

.mobile-work {
  overflow: hidden;
  padding-bottom: 0;
  color: white;
  background: var(--navy);
}

.mobile-work-grid {
  min-height: 740px;
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
}

.mobile-copy {
  padding-bottom: 100px;
}

.mobile-copy h2 {
  max-width: 540px;
  margin-bottom: 22px;
}

.mobile-copy > p {
  max-width: 515px;
  color: #abb6c2;
  font-size: 14px;
  line-height: 1.75;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 35px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-list .check {
  width: 25px;
  height: 25px;
}

.feature-list b,
.feature-list small {
  display: block;
}

.feature-list b {
  font-size: 12px;
}

.feature-list small {
  margin-top: 4px;
  color: #8996a6;
  font-size: 10px;
}

.phones-stage {
  position: relative;
  height: 700px;
}

.phone-large {
  width: 262px;
  height: 544px;
  top: 90px;
  left: auto;
  padding: 9px;
  border-width: 7px;
  border-radius: 40px;
}

.phone-large::before {
  width: 80px;
  height: 20px;
  top: 6px;
}

.phone-large .phone-top {
  height: 29px;
  font-size: 8px;
}

.phone-large .mobile-brand {
  height: 50px;
  padding: 0 12px;
  font-size: 11px;
}

.phone-large .mobile-job {
  padding: 19px 13px;
}

.phone-large .mobile-job h4 {
  margin-top: 10px;
  font-size: 22px;
  letter-spacing: -0.7px;
}

.phone-large .mobile-job > p {
  font-size: 9px;
}

.phone-back {
  right: 275px;
  transform: rotate(-7deg);
  opacity: 0.88;
}

.phone-front {
  z-index: 4;
  right: 16px;
  transform: rotate(4deg);
}

.mini-status {
  color: var(--coral);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.7px;
}

.timer.big {
  margin: 24px 0 12px;
  padding: 17px;
}

.timer.big b {
  font-size: 24px;
}

.timer.big small {
  margin-top: 7px;
  color: #8da0b3;
  font-size: 8px;
}

.phone-large .mobile-job button {
  height: 43px;
  font-size: 9px;
}

.mobile-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-top: 12px;
}

.mobile-menu-grid > span {
  height: 70px;
  display: grid;
  place-items: center;
  padding-top: 10px;
  border: 1px solid #e2e6e8;
  border-radius: 7px;
  color: var(--coral);
  font-size: 16px;
}

.mobile-menu-grid small {
  display: block;
  margin-top: -9px;
  color: #566270;
  font-size: 8px;
}

.checklist-screen {
  padding: 18px 13px;
}

.checklist-screen > small {
  color: #8a949e;
  font-size: 7px;
}

.checklist-screen h4 {
  margin: 7px 0 16px;
  font-size: 17px;
}

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

.completion > span {
  flex: 1;
  height: 5px;
  overflow: hidden;
  border-radius: 4px;
  background: #e3e7e9;
}

.completion i {
  display: block;
  width: 66%;
  height: 100%;
  background: var(--coral);
}

.completion b {
  font-size: 9px;
}

.inspect-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 13px;
  border: 1px solid #e2e6e8;
  border-radius: 7px;
  background: white;
}

.inspect-row > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 850;
}

.inspect-row.ok > span {
  color: var(--green);
  background: #def1e8;
}

.inspect-row.warn > span {
  color: #93640d;
  background: #fff0cf;
}

.inspect-row p {
  margin: 0;
}

.inspect-row b,
.inspect-row small {
  display: block;
}

.inspect-row b {
  font-size: 9px;
}

.inspect-row small {
  margin-top: 4px;
  color: #8c96a0;
  font-size: 7px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 15px;
}

.photo-strip i {
  height: 61px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #c6d0d2;
  color: white;
  font-style: normal;
}

.photo-strip i:first-child {
  background: linear-gradient(145deg, #7b8586, #bdc6c2 58%, #6e7779);
}

.photo-strip i:nth-child(2) {
  background: linear-gradient(45deg, #1d2730, #8d9998 55%, #495255);
}

.qr-tag {
  position: absolute;
  z-index: 6;
  right: 171px;
  bottom: 65px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border-radius: 7px;
  background: white;
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.qr-grid {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, var(--ink) 0 2px, white 2px 4px);
  border: 4px solid white;
  outline: 1px solid #d6dadd;
  color: transparent;
}

.qr-tag p {
  margin: 0;
}

.qr-tag b,
.qr-tag small {
  display: block;
}

.qr-tag b {
  font-size: 9px;
}

.qr-tag small {
  margin-top: 4px;
  color: #87919a;
  font-size: 7px;
}

.integrations-section {
  background: #f7f5f0;
}

.integration-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.integration-logo {
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.integration-logo {
  position: relative;
  overflow: hidden;
}

.integration-logo::after {
  content: "00";
  position: absolute;
  right: 8px;
  bottom: -8px;
  color: rgba(16, 27, 44, 0.035);
  font-family: Georgia, serif;
  font-size: 52px;
  font-style: italic;
}

.integration-logo:nth-child(1)::after { content: "01"; }
.integration-logo:nth-child(2)::after { content: "02"; }
.integration-logo:nth-child(3)::after { content: "03"; }
.integration-logo:nth-child(4)::after { content: "04"; }
.integration-logo:nth-child(5)::after { content: "05"; }
.integration-logo:nth-child(6)::after { content: "06"; }
.integration-logo:nth-child(7)::after { content: "07"; }
.integration-logo:nth-child(8)::after { content: "08"; }

.integration-logo > span {
  min-width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  font-size: 11px;
  font-weight: 850;
}

.integration-logo:nth-child(2) > span,
.integration-logo:nth-child(5) > span,
.integration-logo:nth-child(7) > span {
  background: var(--coral);
}

.integration-logo b {
  font-size: 13px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 33px;
}

.outcomes-grid > div {
  display: flex;
  gap: 16px;
  min-height: 70px;
  padding: 10px 25px;
  border-right: 1px solid var(--line);
}

.outcomes-grid > div:first-child {
  padding-left: 0;
}

.outcomes-grid > div:last-child {
  border: 0;
}

.outcomes-grid > div > span {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.outcomes-grid p {
  margin: 0;
}

.outcomes-grid b,
.outcomes-grid small {
  display: block;
}

.outcomes-grid b {
  font-size: 12px;
}

.outcomes-grid small {
  margin-top: 7px;
  color: #7f8993;
  font-size: 9px;
}

.onboarding-section {
  background: white;
}

.onboarding-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.onboarding-copy h2 {
  margin-bottom: 22px;
}

.onboarding-copy p {
  color: #6f7a85;
  font-size: 14px;
  line-height: 1.75;
}

.dark-link {
  margin-top: 14px;
}

.onboarding-steps {
  border-top: 1px solid var(--line);
}

.onboarding-step {
  display: grid;
  grid-template-columns: 65px 1fr;
  min-height: 100px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.onboarding-step > span {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.onboarding-step p {
  margin: 0;
}

.onboarding-step b,
.onboarding-step small {
  display: block;
}

.onboarding-step b {
  font-size: 15px;
}

.onboarding-step small {
  margin-top: 7px;
  color: #7e8892;
  font-size: 11px;
}

.demo-section {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.demo-grid-lines {
  opacity: 0.14;
  mask-image: linear-gradient(to right, black, transparent);
}

.demo-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.demo-copy h2 {
  margin-bottom: 25px;
}

.demo-copy p {
  max-width: 480px;
  color: #a8b4c1;
  font-size: 14px;
  line-height: 1.75;
}

.demo-points {
  display: flex;
  margin-top: 43px;
}

.demo-points > span {
  min-width: 145px;
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.demo-points > span:last-child {
  border: 0;
}

.demo-points b,
.demo-points small {
  display: block;
}

.demo-points b {
  font-size: 27px;
}

.demo-points small {
  margin-top: 5px;
  color: #8795a5;
  font-size: 9px;
}

.form-card {
  min-height: 610px;
  padding: 37px;
  color: var(--ink);
  background: white;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.form-heading {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e3e6e8;
}

.form-heading > span {
  position: absolute;
  top: 3px;
  right: 0;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 10px;
  font-style: italic;
}

.form-heading h3 {
  margin-bottom: 7px;
  padding-right: 55px;
  font-size: 21px;
  letter-spacing: -0.7px;
}

.form-heading p {
  margin: 0;
  color: #929aa3;
  font-size: 9px;
}

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

.form-card label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #52606f;
  font-size: 9px;
  font-weight: 750;
}

.form-card input,
.form-card select {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid #dce1e3;
  border-radius: 5px;
  outline: none;
  background: #fbfbfa;
  color: var(--ink);
  font-size: 11px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-card input:focus,
.form-card select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(244, 79, 95, 0.09);
}

.form-card input::placeholder {
  color: #a7aeb5;
}

.button-submit {
  width: 100%;
  margin-top: 7px;
  min-height: 54px;
}

.privacy {
  max-width: 410px;
  margin: 13px auto 0;
  color: #9aa2aa;
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}

.success-message {
  min-height: 530px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-message > span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: #def1e7;
  font-size: 25px;
  font-weight: 850;
}

.success-message h3 {
  margin: 24px 0 10px;
  font-size: 27px;
}

.success-message p {
  max-width: 360px;
  color: #707b86;
  font-size: 13px;
  line-height: 1.7;
}

.text-button {
  margin-top: 13px;
  padding: 5px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.faq-section {
  background: #f7f5f0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro h2 {
  margin-bottom: 20px;
}

.faq-intro p {
  color: #7a848e;
  font-size: 13px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 88px;
  display: grid;
  grid-template-columns: 40px 1fr 30px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: italic;
}

.faq-list summary i {
  font-size: 19px;
  font-style: normal;
  font-weight: 350;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  margin: -12px 40px 28px 50px;
  color: #6f7a84;
  font-size: 12px;
  line-height: 1.75;
}

.footer {
  padding: 70px 0 28px;
  color: white;
  background: #081626;
}

.footer-top {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-light .brand-word {
  color: white;
}

.footer-top > p {
  max-width: 300px;
  color: #8593a3;
  font-size: 16px;
  line-height: 1.5;
}

.button-outline {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  box-shadow: none;
}

.button-outline:hover {
  border-color: var(--coral);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 27px;
  color: #738092;
  font-size: 9px;
}

.footer-bottom div {
  display: flex;
  gap: 25px;
}

.footer-bottom a:hover {
  color: white;
}

.real-hero-desktop,
.real-hero-workorder,
.real-hero-phone,
.story-frame,
.real-phone-shot {
  overflow: hidden;
  margin: 0;
  background: #fff;
}

.real-hero-desktop {
  position: absolute;
  top: 62px;
  left: 0;
  width: 690px;
  height: 338px;
  border: 1px solid rgba(16, 27, 44, 0.14);
  border-radius: 11px;
  box-shadow: 0 30px 70px rgba(17, 32, 50, 0.2);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.real-screen-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 13px;
  color: #dce4ec;
  background: var(--navy);
}

.screen-dots {
  display: flex;
  gap: 4px;
}

.screen-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #536477;
}

.screen-dots i:first-child {
  background: var(--coral);
}

.real-screen-bar b {
  font-size: 8px;
  letter-spacing: 0.2px;
}

.demo-badge {
  margin-left: auto;
  color: #8291a2;
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.8px;
}

.real-hero-desktop img {
  width: 100%;
  height: 304px;
  display: block;
  object-fit: cover;
}

.real-hero-workorder {
  position: absolute;
  z-index: 5;
  top: 337px;
  left: 43px;
  width: 324px;
  height: 205px;
  border: 1px solid #dce1e4;
  border-radius: 9px;
  box-shadow: 0 24px 55px rgba(16, 31, 48, 0.22);
}

.real-card-label {
  height: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 11px;
  border-bottom: 1px solid #e3e7e9;
}

.real-card-label span {
  grid-row: span 2;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 7px;
  font-style: italic;
}

.real-card-label b {
  font-size: 8px;
}

.real-hero-workorder img {
  width: 100%;
  height: 165px;
  display: block;
  object-fit: cover;
  object-position: left top;
}

.real-hero-phone {
  position: absolute;
  z-index: 7;
  top: 218px;
  left: 520px;
  width: 178px;
  height: 360px;
  padding: 6px;
  border: 6px solid #162235;
  border-radius: 28px;
  box-shadow: 0 28px 58px rgba(14, 28, 45, 0.31);
  transform: rotate(1.5deg);
}

.real-hero-phone img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
}

.product-storyboard {
  position: relative;
  z-index: 3;
  width: 980px;
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  gap: 13px;
  margin: 0 auto -230px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px 13px 0 0;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25);
}

.story-frame {
  position: relative;
  border-radius: 7px;
  color: var(--ink);
}

.story-label {
  height: 60px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-content: center;
  padding: 0 15px;
  border-bottom: 1px solid #e0e4e6;
  background: #fff;
}

.story-label > span {
  grid-row: span 2;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 10px;
  font-style: italic;
}

.story-label b,
.story-label small {
  display: block;
}

.story-label b {
  font-size: 11px;
}

.story-label small {
  margin-top: 4px;
  color: #8b949e;
  font-size: 7px;
}

.story-main img {
  width: 100%;
  height: 350px;
  display: block;
  object-fit: cover;
  object-position: left top;
}

.story-side {
  display: grid;
  grid-template-rows: 1.08fr 0.92fr;
  gap: 13px;
}

.story-side .story-label {
  height: 53px;
}

.story-offer img,
.story-stock img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}

.story-offer img {
  height: 175px;
}

.story-stock img {
  height: 137px;
}

.real-mobile-stage {
  position: relative;
  height: 700px;
}

.real-phone-shot {
  position: absolute;
  top: 78px;
  width: 270px;
  height: 575px;
  padding: 7px;
  border: 7px solid #111c2c;
  border-radius: 39px;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.34);
}

.real-phone-shot::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 50%;
  width: 76px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #111c2c;
}

.real-phone-shot img {
  width: 100%;
  height: calc(100% - 30px);
  display: block;
  object-fit: cover;
  object-position: top;
  border-radius: 0 0 25px 25px;
}

.real-phone-caption {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  color: #778392;
  background: #f4f5f5;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.8px;
}

.real-phone-checklist {
  left: 25px;
  transform: rotate(-7deg);
  opacity: 0.88;
}

.real-phone-workorder {
  z-index: 4;
  right: 10px;
  transform: rotate(4deg);
}

.real-phone-checklist img {
  height: 640px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.75, 0.2, 1) var(--reveal-delay, 0ms),
    transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1) var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero {
    padding-top: 70px;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 780px;
  }

  .product-stage {
    margin: 45px auto 0;
    transform-origin: top center;
  }

  .hero {
    padding-bottom: 40px;
  }

  .workflow-dashboard {
    width: 100%;
  }

  .mobile-work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .phone-back {
    right: 185px;
  }

  .phone-front {
    right: -20px;
  }

  .qr-tag {
    right: 95px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 650px);
  }

  .site-header,
  .nav-wrap {
    height: 64px;
  }

  .nav-actions {
    display: none;
  }

  .menu-button {
    display: flex;
    width: 38px;
    height: 38px;
    margin-left: auto;
    padding: 10px;
    border: 0;
    border-radius: 5px;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .menu-button span {
    display: block;
    height: 1px;
    background: white;
  }

  .mobile-nav {
    display: grid;
    gap: 0;
    padding: 18px 24px 25px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 30px rgba(16, 27, 44, 0.13);
  }

  .mobile-nav > a:not(.button) {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 650;
  }

  .mobile-nav .button {
    margin-top: 16px;
  }

  .hero {
    min-height: 0;
    padding: 56px 0 10px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 62px);
    letter-spacing: -3px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .button-large {
    width: 100%;
  }

  .product-stage {
    width: 790px;
    margin-top: 35px;
    margin-left: 50%;
    transform: translateX(-50%) scale(0.78);
  }

  .hero-grid {
    margin-bottom: -110px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    padding: 10px 0;
  }

  .trust-grid > div {
    min-height: 50px;
    padding: 0 15px;
    border-bottom: 1px solid #d7dbd8;
  }

  .trust-grid > div:first-child {
    padding-left: 15px;
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(3),
  .trust-grid > div:nth-child(4) {
    border-bottom: 0;
  }

  .section {
    padding: 90px 0;
  }

  .section[data-section]::before,
  .hero::after {
    display: none;
  }

  .system-equation {
    grid-template-columns: 1fr;
  }

  .equation-sign {
    min-height: 44px;
    border: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .equation-block {
    min-height: 150px;
  }

  .section-heading h2,
  .mobile-copy h2,
  .demo-copy h2,
  .faq-intro h2,
  .onboarding-copy h2 {
    font-size: clamp(38px, 9vw, 52px);
    letter-spacing: -2.5px;
  }

  .split-heading,
  .onboarding-grid,
  .faq-grid,
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .split-heading p {
    max-width: 520px;
  }

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

  .answer-strip {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .answer-strip a {
    width: 100%;
    margin-left: 56px;
  }

  .flow-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
  }

  .flow-line {
    display: none;
  }

  .workflow-dashboard {
    margin-bottom: -160px;
  }

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

  .dash-activity {
    display: none;
  }

  .roles-section {
    padding-top: 240px;
  }

  .roles-grid,
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .role-card {
    min-height: 370px;
  }

  .role-card.role-featured {
    transform: none;
  }

  .pillar-card {
    min-height: 275px;
  }

  .mobile-work {
    padding-top: 90px;
  }

  .mobile-work-grid {
    grid-template-columns: 1fr;
  }

  .mobile-copy {
    padding-bottom: 15px;
  }

  .phones-stage {
    width: 560px;
    margin: 0 auto;
  }

  .integration-wall {
    grid-template-columns: 1fr 1fr;
  }

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

  .outcomes-grid > div {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .demo-grid {
    gap: 55px;
  }

  .form-card {
    min-height: 0;
  }

  .faq-intro {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-bottom: 35px;
  }

  .button-outline {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: 43px;
    line-height: 1.02;
    letter-spacing: -2.6px;
  }

  .hero-orbit-one {
    width: 430px;
    height: 430px;
    right: -310px;
  }

  .stage-coordinate,
  .stage-cross {
    display: none;
  }

  .hero-lead {
    font-size: 15px;
  }

  .product-stage {
    transform: translateX(-50%) scale(0.57);
  }

  .hero-grid {
    margin-bottom: -235px;
  }

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

  .trust-grid > div {
    border-right: 0;
    border-bottom: 1px solid #d7dbd8 !important;
  }

  .trust-grid > div:last-child {
    border-bottom: 0 !important;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .mobile-copy h2,
  .demo-copy h2,
  .faq-intro h2,
  .onboarding-copy h2 {
    font-size: 38px;
    letter-spacing: -2px;
  }

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

  .question-card {
    min-height: 130px;
  }

  .question-card h3 {
    margin-top: 24px;
  }

  .answer-strip a {
    margin-left: 0;
  }

  .flow-wrap {
    grid-template-columns: 1fr;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    text-align: left;
  }

  .flow-number {
    margin: 0;
  }

  .flow-content h3 {
    min-height: 0;
  }

  .flow-check {
    display: none;
  }

  .workflow-dashboard {
    width: 700px;
    margin-left: 50%;
    transform: translateX(-50%) scale(0.53);
    transform-origin: top center;
    margin-bottom: -330px;
  }

  .roles-section {
    padding-top: 185px;
  }

  .phones-stage {
    width: 480px;
    height: 620px;
    margin-left: 50%;
    transform: translateX(-50%) scale(0.82);
    transform-origin: top center;
    margin-bottom: -100px;
  }

  .phone-back {
    right: 205px;
  }

  .phone-front {
    right: -5px;
  }

  .qr-tag {
    right: 112px;
  }

  .integration-logo {
    height: 105px;
    gap: 8px;
    flex-direction: column;
  }

  .integration-logo b {
    font-size: 10px;
  }

  .form-card {
    padding: 25px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .button-submit {
    padding: 10px 15px;
    font-size: 12px;
  }

  .faq-list summary {
    grid-template-columns: 30px 1fr 20px;
    font-size: 12px;
  }

  .faq-list details > p {
    margin-left: 40px;
    margin-right: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 1100px) {
  .product-storyboard {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-right: 0;
  }

  .hero h1,
  .hero-lead {
    max-width: 100%;
  }

  .product-stage {
    left: 50%;
    margin-left: 0;
  }

  .product-storyboard {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-bottom: -75px;
  }

  .story-main img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .story-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .story-offer img,
  .story-stock img {
    height: 180px;
  }

  .roles-section {
    padding-top: 165px;
  }

  .real-mobile-stage {
    width: 560px;
    margin: 0 auto;
  }

  .real-phone-checklist {
    left: 5px;
  }

  .real-phone-workorder {
    right: 5px;
  }
}

@media (max-width: 560px) {
  .mobile-work-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mobile-copy {
    min-width: 0;
  }

  .product-storyboard {
    gap: 8px;
    margin-bottom: 0;
    padding: 6px;
  }

  .story-side {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .story-main img {
    height: 225px;
    aspect-ratio: auto;
  }

  .story-offer img,
  .story-stock img {
    height: 175px;
  }

  .roles-section {
    padding-top: 76px;
  }

  .real-mobile-stage {
    width: 100%;
    height: 560px;
    margin: 0;
    transform: none;
  }

  .real-phone-shot {
    top: 55px;
    width: 218px;
    height: 470px;
  }

  .real-phone-checklist {
    left: -14px;
  }

  .real-phone-workorder {
    right: -14px;
  }

  .qr-tag {
    right: 72px;
    bottom: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
