:root {
  --font-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --page: #f5f7fa;
  --surface: #ffffff;
  --surface-soft: #edf4ff;
  --text: #18212f;
  --muted: #626d7c;
  --line: #e4e8ee;
  --line-strong: #626d7c;
  --accent: #0b5bd3;
  --accent-hover: #0848a7;
  --accent-contrast: #ffffff;
  --success: #236d52;
  --success-soft: #e2f2eb;
  --warning: #9a431d;
  --warning-soft: #fff0e8;
  --shadow: 0 30px 80px rgba(24, 49, 89, 0.13), 0 3px 10px rgba(24, 49, 89, 0.08);
  --radius-large: 30px;
  --radius-medium: 18px;
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  accent-color: var(--accent);
  caret-color: var(--accent);
  background: var(--page);
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--page);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.58;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

::selection {
  color: var(--accent-contrast);
  background: var(--accent);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--text);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 100;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 6vw, 6rem);
  font-weight: 650;
  line-height: 1.06;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5vw, 5.25rem);
  font-weight: 600;
  line-height: 1.1;
}

h3 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.08;
}

.hero-backdrop {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: max(840px, 100dvh);
  overflow: hidden;
  background: #18212f url('../assets/video/hero-poster.webp') center 54% / cover no-repeat;
}

.hero-backdrop::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 13, 12, 0.88) 0%,
      rgba(10, 13, 12, 0.64) 54%,
      rgba(10, 13, 12, 0.42) 100%
    ),
    linear-gradient(0deg, rgba(10, 13, 12, 0.72) 0%, rgba(10, 13, 12, 0.06) 58%);
  content: '';
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.hero-notice {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  padding: 7px 9px 7px 18px;
  margin: 16px auto 12px;
  color: #ffffff;
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
  transition:
    background-color 160ms var(--ease),
    transform 160ms var(--ease);
}

.hero-notice:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.hero-notice:active {
  transform: translateY(1px);
}

.hero-notice span {
  margin-right: 9px;
  color: #ffffff;
}

.hero-notice strong {
  margin-right: 12px;
}

.hero-notice i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--text);
  background: var(--page);
  border-radius: 50%;
  font-size: 16px;
  font-style: normal;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 40px), 1500px);
  min-height: 88px;
  padding: 0 26px;
  margin: 0 auto;
  color: var(--text);
  background: #ffffff;
  border: 1px solid rgba(20, 21, 18, 0.78);
  border-radius: 12px;
  box-shadow: 0 18px 54px rgba(5, 8, 7, 0.22);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  min-height: 44px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.wordmark svg {
  width: 24px;
  height: 28px;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2;
}

.wordmark {
  transition:
    color 160ms var(--ease),
    transform 160ms var(--ease);
}

.wordmark:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.wordmark:active {
  transform: translateY(1px);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-header nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 2px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms var(--ease);
}

.site-header nav a:hover {
  color: var(--text);
}

.site-header nav a[aria-current='page'] {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
}

.nav-toggle i,
.nav-toggle i::before,
.nav-toggle i::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: '';
  transition: transform 160ms var(--ease);
}

.nav-toggle i {
  position: relative;
}

.nav-toggle i::before {
  position: absolute;
  top: -6px;
}

.nav-toggle i::after {
  position: absolute;
  top: 6px;
}

.nav-toggle[aria-expanded='true'] i {
  background: transparent;
}

.nav-toggle[aria-expanded='true'] i::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded='true'] i::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-toggle:hover {
  color: var(--accent-contrast);
  background: var(--accent);
  border-color: var(--accent);
}

.nav-toggle:active {
  transform: translateY(1px);
}

.header-action {
  justify-self: end;
  min-height: 44px;
  padding: 10px 17px;
  color: var(--accent-contrast);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 160ms var(--ease),
    border-color 160ms var(--ease),
    transform 160ms var(--ease);
}

.header-action:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

.header-action:active {
  transform: translateY(1px);
}

.hero {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(calc(100% - 64px), 1390px);
  min-height: calc(max(840px, 100dvh) - 160px);
  margin: 0 auto;
  padding: 88px 0 146px;
}

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

.video-control {
  position: absolute;
  right: 0;
  bottom: 98px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 13px;
  gap: 8px;
  color: #ffffff;
  background: rgba(10, 13, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    background-color 160ms var(--ease),
    transform 160ms var(--ease);
}

.video-control:hover {
  background: rgba(10, 13, 12, 0.92);
  transform: translateY(-1px);
}

.video-control:active {
  transform: translateY(1px);
}

.video-control[hidden] {
  display: none;
}

.hero-kicker,
.section-label {
  display: inline-block;
  padding: 6px 9px;
  margin-bottom: 26px;
  color: #ffffff;
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 940px;
  margin-bottom: 30px;
  color: #ffffff;
  font-size: clamp(4.6rem, 7.6vw, 7.5rem);
  line-height: 0.88;
}

.hero-summary {
  max-width: 760px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  line-height: 1.55;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  gap: 12px;
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition:
    color 160ms var(--ease),
    background-color 160ms var(--ease),
    border-color 160ms var(--ease),
    transform 160ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  color: var(--accent-contrast);
  background: var(--accent);
  border-color: var(--accent);
}

.button-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.button-light {
  gap: 18px;
  padding-left: 24px;
  color: var(--text);
  background: #ffffff;
  border-color: #ffffff;
}

.button-light:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.button-arrow {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #ffffff;
  background: var(--text);
  border-radius: 50%;
  font-size: 17px;
}

.button-secondary {
  color: var(--text);
  background: transparent;
  border-color: var(--line-strong);
}

.button-secondary:hover {
  background: var(--surface);
  border-color: var(--text);
}

.benefit-rail {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 40px), 1500px);
  min-height: 148px;
  margin: -72px auto 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--text);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 24px 70px rgba(5, 8, 7, 0.2);
}

.benefit-item {
  display: flex;
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 30px 38px;
  border-right: 1px solid var(--line);
}

.benefit-item:last-child {
  border-right: 0;
}

.benefit-icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.benefit-item p {
  margin: 0;
}

.benefit-item strong,
.benefit-item small {
  display: block;
}

.benefit-item strong {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.08;
}

.benefit-item small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(64px, 8vw, 130px);
  align-items: center;
  width: min(calc(100% - 48px), 1390px);
  padding: 150px 0 170px;
  margin: 0 auto;
}

.product-showcase-copy {
  max-width: 510px;
}

.product-showcase-copy .section-label {
  color: var(--accent-contrast);
  border-color: var(--text);
}

.product-showcase-copy h2 {
  font-size: clamp(3.1rem, 5.2vw, 5.4rem);
}

.product-showcase-copy > p:last-child {
  max-width: 480px;
  color: var(--muted);
  font-size: 1.08rem;
}

.capture-loop {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--surface) url('../assets/video/jobpacket-capture-poster.webp') center / cover
    no-repeat;
  border: 1px solid var(--line);
  box-shadow: none;
}

.capture-loop-video {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.capture-loop figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 12px 154px 12px 20px;
  color: #ffffff;
  background: rgba(20, 21, 18, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 13px;
}

.capture-loop figcaption span {
  color: rgba(255, 255, 255, 0.72);
}

.capture-loop figcaption strong {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: -0.01em;
}

.capture-loop-control {
  z-index: 3;
  right: 14px;
  bottom: 9px;
  min-width: 126px;
  justify-content: center;
}

.product-stage {
  position: relative;
  min-height: 690px;
  padding: 54px 38px;
  overflow: hidden;
  background: var(--surface-soft);
  border: 1px solid #d5deea;
  border-radius: var(--radius-large);
}

.product-stage::before {
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(23, 70, 162, 0.18);
  border-radius: 20px;
  content: '';
  pointer-events: none;
}

.phone {
  position: relative;
  z-index: 4;
  width: min(330px, 64%);
  min-height: 608px;
  padding: 12px 15px 16px;
  color: #182235;
  background: #ffffff;
  border: 7px solid #162239;
  border-radius: 35px;
  box-shadow: var(--shadow);
}

.phone-bar,
.phone-head,
.completion-row,
.office-meta,
.paper-top,
.final-packet-head,
.board-top,
.board-footer,
.job-column-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-bar {
  padding: 1px 5px 9px;
  color: #5b6474;
  font-size: 12px;
  font-weight: 600;
}

.phone-head {
  padding: 8px 2px 16px;
  border-bottom: 1px solid #dfe4eb;
}

.mini-mark {
  display: inline-grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: #ffffff;
  background: #173f37;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
}

.sync-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #566275;
  font-size: 12px;
  font-weight: 600;
}

.sync-state i,
.board-footer i {
  display: block;
  width: 7px;
  height: 7px;
  background: #2b7b5d;
  border-radius: 50%;
}

.job-meta {
  padding: 19px 1px 17px;
}

.job-meta span,
.job-meta p,
.completion-row {
  color: #667185;
  font-size: 12px;
}

.job-meta h2 {
  margin: 3px 0 2px;
  color: #182235;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
}

.job-meta p {
  margin-bottom: 0;
}

.completion-row strong {
  color: #182235;
  font-size: 12px;
}

.progress {
  height: 5px;
  margin: 8px 0 14px;
  overflow: hidden;
  background: #e5eaf1;
  border-radius: 5px;
}

.progress span {
  display: block;
  width: 50%;
  height: 100%;
  background: #0b5bd3;
  border-radius: inherit;
  transition: width 360ms var(--ease);
}

.capture-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.capture-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 58px;
  padding: 8px;
  background: #f5f7fa;
  border: 1px solid #e3e7ed;
  border-radius: 10px;
}

.capture-list li.is-next {
  background: #edf2ff;
  border-color: #0b5bd3;
}

.capture-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: #5b6678;
  background: #ffffff;
  border: 1px solid #cbd3df;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.is-complete .capture-icon {
  color: #ffffff;
  background: #236d52;
  border-color: #236d52;
}

.is-next .capture-icon {
  color: #ffffff;
  background: #0b5bd3;
  border-color: #0b5bd3;
}

.capture-list strong,
.capture-list small {
  display: block;
}

.capture-list strong {
  font-size: 12px;
  font-weight: 600;
}

.capture-list small {
  margin-top: 1px;
  color: #596476;
  font-size: 12px;
}

.camera-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 47px;
  margin-top: 13px;
  color: #ffffff;
  background: #0b5bd3;
  border: 1px solid #0b5bd3;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 600;
  transition:
    background-color 160ms var(--ease),
    transform 160ms var(--ease);
}

.camera-action:hover {
  background: #0848a7;
}

.camera-action:active {
  transform: scale(0.985);
}

.camera-action:disabled {
  cursor: not-allowed;
  border-style: dashed;
  opacity: 1;
}

.camera-dot {
  width: 13px;
  height: 13px;
  border: 2px solid currentcolor;
  border-radius: 50%;
}

.office-card {
  position: absolute;
  z-index: 5;
  top: 117px;
  right: 24px;
  width: 285px;
  padding: 18px;
  color: #182235;
  background: #ffffff;
  border: 1px solid #ccd6e4;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.office-card-head span,
.office-card-head strong {
  display: block;
}

.office-card-head span {
  color: #667185;
  font-size: 12px;
  text-transform: uppercase;
}

.office-card-head strong {
  margin-top: 2px;
  font-size: 14px;
}

.office-status {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 15px 0;
  padding: 11px;
  background: #e7f3ed;
  border-radius: 9px;
}

.status-check {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #ffffff;
  background: #236d52;
  border-radius: 50%;
  font-size: 12px;
}

.office-status strong,
.office-status small {
  display: block;
}

.office-status strong {
  font-size: 12px;
}

.office-status small {
  color: #4d665d;
  font-size: 12px;
}

.evidence-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  height: 70px;
}

.evidence-strip picture {
  display: block;
  width: 100%;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
}

.evidence-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evidence-strip .evidence-one img {
  object-position: 62% center;
}

.evidence-strip .evidence-two img {
  object-position: 50% 58%;
}

.evidence-strip .evidence-three img {
  object-position: 42% center;
}

.office-meta {
  margin-top: 11px;
  color: #697488;
  font-size: 12px;
}

.handoff-line {
  position: absolute;
  z-index: 2;
  top: 265px;
  right: 210px;
  width: 170px;
  height: 2px;
  background: var(--accent);
}

.handoff-line span,
.handoff-line i {
  position: absolute;
  top: 50%;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

.handoff-line span {
  left: 0;
  width: 9px;
  height: 9px;
}

.handoff-line i {
  right: 0;
  width: 12px;
  height: 12px;
  border: 3px solid var(--surface-soft);
}

.packet-paper {
  position: absolute;
  z-index: 6;
  right: 38px;
  bottom: 48px;
  width: 255px;
  min-height: 210px;
  padding: 18px;
  color: #1b1e1a;
  background: #ffffff;
  border: 1px solid #b5b2a8;
  border-radius: 3px;
  box-shadow: 0 18px 45px rgba(24, 32, 54, 0.14);
  transform: rotate(-2deg);
}

.paper-top {
  padding-bottom: 9px;
  border-bottom: 1px solid #9da09a;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.paper-top strong {
  color: #173f37;
}

.packet-paper h3 {
  margin: 22px 0 3px;
  font-size: 20px;
}

.packet-paper p {
  color: #626660;
  font-size: 12px;
}

.paper-lines {
  display: grid;
  gap: 6px;
  width: 62%;
  margin-top: 26px;
}

.paper-lines span {
  height: 1px;
  background: #b9bbb6;
}

.paper-lines span:nth-child(2) {
  width: 85%;
}

.paper-lines span:nth-child(3) {
  width: 68%;
}

.packet-seal {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #236d52;
  border: 2px solid #236d52;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(9deg);
}

.problem-section,
.workflow-section,
.product-section,
.integration-section,
.final-section {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 150px 0;
}

.problem-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: 34px;
  border-top: 1px solid var(--line);
}

.step-number {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-copy h2 {
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.problem-body > p {
  max-width: 650px;
  margin-bottom: 68px;
  color: var(--muted);
  font-size: 1.16rem;
}

.scattered-proof {
  position: relative;
  min-height: 300px;
}

.proof-item,
.proof-packet {
  position: absolute;
  padding: 15px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.proof-photo {
  top: 12px;
  left: 0;
  width: 155px;
  height: 130px;
  transform: rotate(-4deg);
}

.proof-photo picture {
  display: block;
  height: 78px;
  margin-top: 9px;
  overflow: hidden;
}

.proof-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.proof-item span,
.proof-packet span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.proof-message {
  top: 2px;
  left: 170px;
  width: 205px;
  padding: 20px;
  border-radius: 14px 14px 14px 2px;
  transform: rotate(2deg);
}

.proof-message span {
  font-weight: 500;
  letter-spacing: 0;
}

.proof-document {
  top: 162px;
  left: 58px;
  width: 175px;
  height: 108px;
  transform: rotate(3deg);
}

.proof-document i {
  display: block;
  width: 85%;
  height: 1px;
  margin-top: 18px;
  background: var(--line-strong);
}

.proof-document i + i {
  width: 60%;
  margin-top: 9px;
}

.gather-arrow {
  position: absolute;
  top: 118px;
  left: 390px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1;
}

.proof-packet {
  top: 70px;
  right: 0;
  display: grid;
  width: 160px;
  height: 180px;
  align-content: space-between;
  border: 1px solid var(--line);
  transform: rotate(-1deg);
}

.proof-packet strong {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: -0.05em;
}

.proof-packet small {
  color: var(--success);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(480px, 1.15fr);
  gap: 100px;
  align-items: start;
  background: var(--text);
  box-shadow: 0 0 0 100vmax var(--text);
  clip-path: inset(0 -100vmax);
}

.workflow-intro {
  position: sticky;
  top: 50px;
}

.workflow-intro h2,
.workflow-step h3 {
  color: var(--page);
}

.workflow-intro > p:last-child,
.workflow-step p {
  color: color-mix(in srgb, var(--page) 72%, var(--text));
}

.workflow-intro > p:last-child {
  max-width: 530px;
}

.workflow-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.workflow-step {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 35px 0 42px;
  border-top: 1px solid color-mix(in srgb, var(--page) 26%, var(--text));
}

.workflow-step:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--page) 26%, var(--text));
}

.workflow-step h3 {
  margin-bottom: 8px;
}

.workflow-step p {
  max-width: 480px;
  margin-bottom: 0;
  font-size: 15px;
}

.step-state {
  padding: 5px 8px;
  color: var(--accent-contrast);
  background: var(--accent);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.product-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.product-points {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 42px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.product-points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.product-points li span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.review-board {
  min-height: 570px;
  padding: 26px;
  color: #182235;
  background: #ffffff;
  border: 1px solid #ccd6e4;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.board-top {
  min-height: 44px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dbe2eb;
}

.board-top > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.board-date {
  color: #687386;
  font-size: 12px;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.job-column {
  padding: 14px;
  background: #f4f6f9;
  border-radius: 13px;
}

.job-column-head {
  margin-bottom: 13px;
  color: #647084;
  font-size: 12px;
  text-transform: uppercase;
}

.job-column-head strong {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #ffffff;
  background: #657289;
  border-radius: 50%;
  font-size: 12px;
}

.job-row {
  min-height: 118px;
  padding: 14px;
  margin-top: 8px;
  background: #ffffff;
  border: 1px solid #dce2ea;
  border-radius: 9px;
}

.job-row strong,
.job-row span,
.job-row em {
  display: block;
}

.job-row strong {
  font-size: 12px;
}

.job-row span {
  margin: 3px 0 20px;
  color: #687386;
  font-size: 12px;
}

.job-row em {
  color: #9a431d;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

.job-row.is-ready em {
  color: #236d52;
}

.board-footer {
  min-height: 58px;
  padding: 0 15px;
  background: #f4f6f9;
  border-radius: 11px;
  color: #687386;
  font-size: 12px;
}

.board-footer strong {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #236d52;
  font-size: 12px;
}

.integration-section {
  border-top: 1px solid var(--line);
}

.integration-head {
  display: grid;
  grid-template-columns: 0.7fr 1.25fr 0.85fr;
  gap: 50px;
  align-items: start;
}

.integration-head h2 {
  grid-column: 2;
}

.integration-head > p:last-child {
  grid-column: 3;
  color: var(--muted);
}

.integration-flow {
  display: grid;
  grid-template-columns: 1fr minmax(100px, 0.45fr) 1fr minmax(100px, 0.45fr) 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 90px;
}

.system-node {
  min-height: 190px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-medium);
}

.system-node span,
.system-node strong,
.system-node small {
  display: block;
}

.system-node span {
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 12px;
}

.system-node strong {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.system-node small {
  color: var(--muted);
  font-size: 12px;
}

.jobpacket-node {
  color: var(--page);
  background: var(--text);
  border-color: var(--text);
}

.jobpacket-node span,
.jobpacket-node small {
  color: color-mix(in srgb, var(--page) 70%, var(--text));
}

.flow-link {
  position: relative;
  height: 52px;
}

.flow-link i {
  position: absolute;
  top: 16px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line-strong);
}

.flow-link i::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  content: '';
  transform: rotate(45deg);
}

.flow-link span {
  position: absolute;
  top: 26px;
  left: 50%;
  width: max-content;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.integration-note {
  max-width: 760px;
  margin: 56px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.final-section {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(420px, 0.8fr);
  gap: 100px;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 130px;
  color: var(--page);
  background: var(--text);
  box-shadow: 0 0 0 100vmax var(--text);
  clip-path: inset(0 -100vmax);
}

.final-copy h2 {
  color: var(--page);
}

.final-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: color-mix(in srgb, var(--page) 72%, var(--text));
}

.final-copy .button-secondary {
  color: var(--page);
  border-color: color-mix(in srgb, var(--page) 50%, var(--text));
}

.final-copy .button-secondary:hover {
  color: var(--text);
  background: var(--page);
}

.final-packet {
  position: relative;
  min-height: 430px;
  padding: 34px;
  color: #1b1e1a;
  background: #ffffff;
  border: 1px solid #9d9b92;
  transform: rotate(1.5deg);
}

.final-packet-head {
  padding-bottom: 14px;
  border-bottom: 1px solid #9d9b92;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.final-packet-head strong {
  color: #236d52;
}

.final-packet-title {
  padding: 50px 0 36px;
}

.final-packet-title span,
.final-packet-title small {
  display: block;
}

.final-packet-title span {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.final-packet-title small {
  margin-top: 5px;
  color: #626660;
}

.final-packet dl {
  margin: 0;
}

.final-packet dl div {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-top: 1px solid #c1c0b9;
  font-size: 12px;
}

.final-packet dd {
  margin: 0;
  font-weight: 600;
}

.completion-stamp {
  position: relative;
  margin: 24px 0 0 auto;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: #236d52;
  border: 3px solid #236d52;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transform: rotate(-8deg) scale(0.9);
  opacity: 0.55;
  transition:
    opacity 500ms var(--ease),
    transform 500ms var(--ease);
}

.final-packet.is-visible .completion-stamp {
  opacity: 1;
  transform: rotate(-8deg) scale(1);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 130px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer > div a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  transition: color 160ms var(--ease);
}

.site-footer > div a:hover {
  color: var(--text);
}

.site-footer > div a:active {
  color: var(--accent);
}

.footer-wordmark {
  font-size: 17px;
}

.footer-wordmark svg {
  width: 19px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 600ms var(--ease),
    transform 600ms var(--ease);
}

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

.workflow-step:nth-child(2) {
  transition-delay: 80ms;
}

.workflow-step:nth-child(3) {
  transition-delay: 160ms;
}

.workflow-step:nth-child(4) {
  transition-delay: 240ms;
}

.subpage {
  background: var(--surface);
}

.subpage-top {
  padding: 1px 0 0;
  background: var(--surface);
}

.subpage .site-header {
  margin-top: 18px;
  box-shadow: none;
}

.page-main {
  overflow: hidden;
}

.page-hero,
.page-section,
.page-cta {
  width: min(calc(100% - 48px), 1390px);
  margin: 0 auto;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(56px, 8vw, 130px);
  align-items: center;
  min-height: 720px;
  padding: 112px 0 132px;
}

.page-hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 6.2vw, 7rem);
}

.page-label {
  display: inline-block;
  padding: 6px 9px;
  margin-bottom: 24px;
  color: var(--accent-contrast);
  background: var(--accent);
  border: 1px solid var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.page-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-artifact {
  position: relative;
  padding: clamp(20px, 4vw, 44px);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: none;
}

.page-artifact::before {
  position: absolute;
  top: -13px;
  right: 28px;
  padding: 4px 8px;
  color: var(--accent-contrast);
  background: var(--accent);
  border: 1px solid var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  content: attr(data-label);
}

.artifact-title {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.page-capture-loop {
  box-shadow: none;
}

.page-section {
  padding: 122px 0;
  border-top: 1px solid var(--line);
}

.page-section-dark {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - 1390px) / 2));
  padding-left: max(24px, calc((100% - 1390px) / 2));
  color: #ffffff;
  background: var(--text);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 72px;
}

.section-intro h2 {
  max-width: 830px;
  margin: 0;
}

.section-intro > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.page-section-dark .section-intro > p,
.page-section-dark .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.section-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feature-runs {
  border-top: 2px solid var(--text);
}

.feature-run {
  display: grid;
  grid-template-columns: 64px minmax(240px, 0.8fr) minmax(260px, 1.2fr);
  gap: 28px;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.feature-run > span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 750;
}

.feature-run h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

.feature-run > div > p {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--muted);
}

.state-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.state-line span,
.fit-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 9px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  font-size: 12px;
  font-weight: 600;
}

.state-line .is-confirmed {
  color: #ffffff;
  background: var(--success);
  border-color: var(--success);
}

.role-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.role-ledger article {
  min-height: 260px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.role-ledger article:last-child {
  border-right: 0;
}

.role-ledger span {
  display: block;
  margin-bottom: 70px;
  color: #72a9ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.role-ledger h3 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.role-ledger p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.fit-board {
  padding: 0;
}

.fit-board-head,
.fit-board-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
}

.fit-board-head {
  color: #ffffff;
  background: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fit-board-row {
  border-top: 1px solid var(--line);
}

.fit-board-row strong,
.fit-board-row span,
.fit-board-row em {
  font-size: 13px;
}

.fit-board-row span {
  color: var(--muted);
}

.fit-board-row em {
  padding: 4px 8px;
  color: #ffffff;
  background: var(--success);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

.fit-criteria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.fit-criterion {
  min-height: 240px;
  padding: 34px;
  background: var(--surface);
}

.fit-criterion span {
  display: block;
  margin-bottom: 54px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.fit-criterion h3 {
  max-width: 420px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.fit-criterion p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
}

.trade-list {
  border-top: 2px solid var(--text);
}

.trade-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.6fr) minmax(280px, 1fr) minmax(220px, 0.7fr);
  gap: 28px;
  align-items: center;
  min-height: 128px;
  border-bottom: 1px solid var(--line);
}

.trade-row h3,
.trade-row p {
  margin: 0;
}

.trade-row p {
  color: var(--muted);
}

.trade-row small {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.connector-route {
  display: grid;
  grid-template-columns: 1fr 74px 1fr 74px 1fr;
  align-items: center;
}

.connector-node {
  min-height: 190px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--text);
}

.connector-node.is-jobpacket {
  color: #ffffff;
  background: var(--success);
}

.connector-node span,
.connector-node strong,
.connector-node small {
  display: block;
}

.connector-node span {
  margin-bottom: 52px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.connector-node.is-jobpacket span {
  color: #9ec4ff;
}

.connector-node strong {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.connector-node small {
  color: var(--muted);
  font-size: 13px;
}

.connector-node.is-jobpacket small {
  color: rgba(255, 255, 255, 0.76);
}

.connector-arrow {
  position: relative;
  height: 1px;
  background: var(--accent);
}

.connector-arrow::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  content: '';
  transform: rotate(45deg);
}

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

.connector-card {
  min-height: 330px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
}

.connector-card > span {
  display: block;
  margin-bottom: 80px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.connector-card h3 {
  margin-bottom: 14px;
  font-size: 1.7rem;
}

.connector-card p {
  color: var(--muted);
}

.connector-card small {
  display: block;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: 24px;
}

.pilot-plan,
.pricing-note {
  padding: clamp(28px, 5vw, 52px);
  background: var(--surface);
  border: 1px solid var(--text);
}

.pilot-plan {
  box-shadow: none;
}

.plan-status {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-status strong {
  color: var(--success);
}

.pilot-plan h2 {
  max-width: 680px;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.pilot-plan > p {
  max-width: 680px;
  color: var(--muted);
}

.plain-list {
  padding: 0;
  margin: 36px 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.plain-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.plain-list li::before {
  color: var(--success);
  font-weight: 700;
  content: '✓';
}

.pricing-note {
  align-self: start;
  background: var(--success);
  color: #ffffff;
}

.pricing-note span {
  display: block;
  margin-bottom: 90px;
  color: #9ec4ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-note h3 {
  font-size: 2rem;
}

.pricing-note p {
  color: rgba(255, 255, 255, 0.76);
}

.faq-list {
  border-top: 2px solid var(--text);
}

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

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  min-height: 78px;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--accent);
  content: '+';
}

.faq-list summary:hover {
  color: var(--accent);
}

.faq-list summary:active {
  transform: translateY(1px);
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details p {
  max-width: 760px;
  padding-bottom: 28px;
  margin: 0;
  color: var(--muted);
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(420px, 1.3fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: start;
}

.demo-expectation {
  position: sticky;
  top: 24px;
}

.demo-expectation h2 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.demo-expectation > p {
  max-width: 500px;
  color: var(--muted);
}

.brief-form {
  padding: clamp(24px, 5vw, 48px);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: none;
}

.brief-form h2 {
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
}

.form-intro {
  margin-bottom: 34px;
  color: var(--muted);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.is-wide {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
}

.form-field label span,
.field-error {
  color: var(--warning);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--text);
  background: var(--page);
  border: 1px solid var(--line-strong);
  border-radius: 0;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-help {
  color: var(--muted);
  font-size: 12px;
}

.field-error {
  font-size: 12px;
  font-weight: 600;
}

.form-field [aria-invalid='true'] {
  border-color: var(--warning);
  box-shadow: inset 4px 0 0 var(--warning);
}

.brief-form .button {
  margin-top: 24px;
}

.brief-result {
  padding: 26px;
  margin-top: 26px;
  background: var(--success-soft);
  border: 1px solid var(--success);
}

.brief-result[hidden] {
  display: none;
}

.brief-result h3 {
  margin-bottom: 10px;
}

.brief-result pre {
  margin: 18px 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  font: inherit;
  font-size: 14px;
}

.copy-status {
  display: inline-block;
  margin-left: 12px;
  color: var(--success);
  font-size: 12px;
  font-weight: 600;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding: 90px 0 110px;
  border-top: 1px solid var(--line);
}

.page-cta h2 {
  max-width: 800px;
  margin: 0;
}

.page-cta p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
}

.notice-page {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 30px;
}

.notice-page main {
  width: min(100%, 780px);
  padding: clamp(30px, 7vw, 76px);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.notice-page .wordmark {
  margin-bottom: 80px;
}

.notice-page h1 {
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.notice-page p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 32px;
  color: var(--muted);
}

.notice-page .notice-date {
  margin-top: -18px;
  font-size: 13px;
}

@media (max-width: 1080px) {
  .page-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .page-hero-copy {
    max-width: 820px;
  }

  .page-artifact,
  .page-capture-loop {
    width: min(100%, 760px);
  }

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

  .feature-run {
    grid-template-columns: 56px minmax(220px, 0.7fr) minmax(260px, 1fr);
  }

  .trade-row {
    grid-template-columns: minmax(170px, 0.55fr) minmax(280px, 1fr);
  }

  .trade-row small {
    grid-column: 2;
  }

  .connector-list {
    grid-template-columns: 1fr;
  }

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

  .connector-card > span {
    margin-bottom: 38px;
  }

  .demo-layout {
    grid-template-columns: 1fr;
  }

  .demo-expectation {
    position: static;
    max-width: 760px;
  }

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

  .benefit-item {
    padding-right: 22px;
    padding-left: 22px;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .product-showcase-copy {
    max-width: 760px;
  }

  .product-stage,
  .capture-loop {
    width: min(100%, 720px);
    margin: 0 auto;
  }

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

  .problem-body {
    grid-column: 1;
  }

  .workflow-section,
  .product-section,
  .final-section {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .workflow-intro {
    position: static;
  }

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

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

  .integration-head h2 {
    grid-column: 2;
  }

  .integration-head > p:last-child {
    grid-column: 2;
  }

  .final-packet {
    width: min(100%, 600px);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .nav-toggle {
    display: grid;
    grid-column: 2;
  }

  .site-header nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    padding: 10px;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--text);
    box-shadow: none;
  }

  .site-header nav.is-open {
    display: grid;
  }

  .site-header nav a {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
  }

  .site-header nav a:last-child {
    border-bottom: 0;
  }

  .header-action {
    grid-column: 3;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    width: calc(100% - 28px);
    min-height: 74px;
    padding: 0 14px;
    border-radius: 10px;
  }

  .header-action {
    padding: 9px 13px;
    font-size: 12px;
  }

  .page-hero,
  .page-section,
  .page-cta {
    width: calc(100% - 28px);
  }

  .page-hero {
    gap: 58px;
    padding: 84px 0 104px;
  }

  .page-hero h1 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .page-actions {
    display: grid;
  }

  .page-section {
    padding: 94px 0;
  }

  .page-section-dark {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .section-intro {
    gap: 24px;
    margin-bottom: 48px;
  }

  .feature-run {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 30px 0;
  }

  .feature-run > div {
    grid-column: 2;
  }

  .role-ledger,
  .fit-criteria,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .role-ledger article {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  }

  .role-ledger article:last-child {
    border-bottom: 0;
  }

  .role-ledger span,
  .fit-criterion span,
  .pricing-note span {
    margin-bottom: 38px;
  }

  .fit-board-head,
  .fit-board-row {
    grid-template-columns: 1fr auto;
  }

  .fit-board-head span:nth-child(2),
  .fit-board-row span {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .fit-board-head span:nth-child(2) {
    display: none;
  }

  .trade-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .trade-row small {
    grid-column: 1;
  }

  .connector-route {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .connector-arrow {
    width: 1px;
    height: 48px;
    margin: 0 auto;
  }

  .connector-arrow::after {
    top: auto;
    right: -4px;
    bottom: 0;
    transform: rotate(135deg);
  }

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

  .form-field.is-wide {
    grid-column: 1;
  }

  .brief-form {
    box-shadow: none;
  }

  .page-cta {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 76px 0 94px;
  }

  .hero-notice {
    margin-top: 10px;
    margin-bottom: 8px;
  }

  .hero-notice span {
    display: none;
  }

  .hero,
  .product-showcase,
  .problem-section,
  .workflow-section,
  .product-section,
  .integration-section,
  .final-section {
    width: calc(100% - 28px);
  }

  .hero {
    min-height: 720px;
    padding: 76px 0 132px;
  }

  .hero-backdrop {
    height: 880px;
    background-position: 63% center;
  }

  .hero-video {
    object-position: 63% center;
  }

  .video-control {
    right: 0;
    bottom: 78px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 15vw, 4.8rem);
  }

  .hero-kicker {
    margin-bottom: 22px;
  }

  h1 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  h2,
  .section-copy h2 {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .hero-summary {
    font-size: 1rem;
  }

  .hero-actions,
  .final-actions {
    display: grid;
  }

  .benefit-rail {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin-top: -58px;
    border-radius: 16px 16px 0 0;
  }

  .benefit-item {
    padding: 22px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-item:last-child {
    border-bottom: 0;
  }

  .product-showcase {
    gap: 58px;
    padding: 110px 0 145px;
  }

  .product-showcase-copy h2 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .capture-loop {
    box-shadow: none;
  }

  .capture-loop figcaption {
    min-height: 54px;
    padding: 9px 62px 9px 14px;
  }

  .capture-loop figcaption span {
    display: none;
  }

  .capture-loop figcaption strong {
    font-size: 12px;
  }

  .capture-loop-control {
    right: 7px;
    bottom: 5px;
    width: 44px;
    min-width: 44px;
    padding: 0;
  }

  .capture-loop-control [data-video-control-label] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .button {
    width: 100%;
  }

  .product-stage {
    min-height: auto;
    padding: 38px 14px;
    overflow: visible;
  }

  .product-stage::before {
    inset: 8px;
  }

  .phone {
    width: min(284px, 87%);
    min-height: 588px;
    margin: 0 auto;
  }

  .office-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(256px, 78%);
    margin: 28px 0 0 auto;
  }

  .packet-paper {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 210px;
    min-height: 174px;
    margin: 28px auto 0 0;
  }

  .packet-paper h3 {
    font-size: 17px;
  }

  .handoff-line {
    display: none;
  }

  .problem-section,
  .workflow-section,
  .product-section,
  .integration-section,
  .final-section {
    padding: 105px 0;
  }

  .problem-section {
    grid-template-columns: 1fr;
    padding-top: 105px;
  }

  .problem-body {
    grid-column: 1;
  }

  .problem-body > p {
    margin-bottom: 52px;
  }

  .scattered-proof {
    min-height: 475px;
  }

  .proof-photo {
    left: 0;
  }

  .proof-message {
    top: 85px;
    right: 0;
    left: auto;
    width: 180px;
  }

  .proof-document {
    top: 188px;
    left: 20px;
  }

  .gather-arrow {
    top: 286px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .proof-packet {
    top: 335px;
    right: 50%;
    height: 135px;
    transform: translateX(50%) rotate(-1deg);
  }

  .workflow-step {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .step-state {
    grid-column: 2;
    justify-self: start;
  }

  .review-board {
    min-height: auto;
    padding: 16px;
    overflow: hidden;
  }

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

  .board-date {
    display: none;
  }

  .integration-head {
    display: block;
  }

  .integration-flow {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 55px;
  }

  .system-node {
    min-height: 150px;
  }

  .system-node span {
    margin-bottom: 28px;
  }

  .flow-link {
    width: 52px;
    height: 70px;
    margin: 0 auto;
  }

  .flow-link i {
    top: 0;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: auto;
  }

  .flow-link i::after {
    top: auto;
    right: -3px;
    bottom: 0;
    transform: rotate(135deg);
  }

  .flow-link span {
    top: 25px;
    left: 18px;
    transform: none;
  }

  .final-packet {
    min-height: 390px;
    padding: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    width: calc(100% - 28px);
    padding: 42px 0;
  }

  .site-footer > div {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .notice-page {
    padding: 14px;
  }

  .notice-page main {
    padding: 30px 22px;
  }
}

@media (max-width: 390px) {
  .wordmark {
    font-size: 18px;
  }

  .header-action {
    padding-right: 10px;
    padding-left: 10px;
  }

  .product-stage {
    margin-right: 0;
    margin-left: 0;
  }

  .phone {
    width: 92%;
  }

  .office-card {
    right: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .hero-video {
    display: none;
  }

  .capture-loop {
    aspect-ratio: 1;
  }

  .capture-loop-video {
    display: none;
  }

  .video-control {
    display: none;
  }
}

/* Shared with the field app: white surfaces, cool neutrals, and JobPacket blue. */
:root {
  --radius-large: 20px;
  --radius-medium: 12px;
  --shadow: 0 12px 32px rgba(24, 33, 47, 0.08);
}
body {
  background: var(--surface);
}
h1,
h2,
h3 {
  font-variation-settings: normal;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}
.site-header {
  width: min(calc(100% - 48px), 1240px);
  margin-top: 16px;
  min-height: 76px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  padding: 0;
}
.wordmark {
  font-weight: 700;
  letter-spacing: -0.04em;
}
.button,
.header-action {
  border-radius: 10px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}
.button {
  min-height: 48px;
}
.button-secondary {
  color: var(--accent);
  background: #edf4ff;
  border: 1px solid transparent;
}
.button-secondary:hover {
  color: var(--accent-hover);
  background: #e0ecff;
}
.button-secondary:active {
  background: #d6e6ff;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  width: min(calc(100% - 48px), 1240px);
  min-height: 0;
  padding: 76px 0 72px;
}
.hero h1 {
  color: var(--text);
  font-size: clamp(2.75rem, 4.5vw, 4.5rem);
  line-height: 1.07;
  font-weight: 650;
  max-width: 630px;
}
.hero-summary {
  color: var(--muted);
  font-size: 20px;
  max-width: 510px;
  line-height: 1.6;
}
.hero-kicker,
.section-label {
  background: transparent;
  color: var(--muted);
  border: 0;
  padding: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 600;
}
.benefit-rail {
  width: min(calc(100% - 48px), 1240px);
  margin: 0 auto 40px;
  border: 0;
  border-block: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}
.benefit-item {
  padding: 24px 18px;
}
.benefit-icon {
  border-radius: 8px;
  border-color: var(--line);
}
.product-showcase {
  background: var(--page);
  border-radius: 20px;
  padding: 64px;
  gap: 64px;
}
.app-detail-visual {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 20px;
}
.app-detail-visual img {
  width: min(100%, 280px);
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(24, 33, 47, 0.1);
}
.app-detail-visual figcaption {
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}
.problem-section,
.workflow-section,
.product-section,
.integration-section,
.final-section {
  padding-block: 90px;
}
.review-board,
.proof-item,
.proof-packet,
.proof-message,
.system-node,
.subpage-panel,
.contractor-card,
.pricing-card {
  border-radius: 14px;
}
.eyebrow {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}
.site-footer {
  font-size: 13px;
}
@media (max-width: 1000px) {
  .hero {
    gap: 32px;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 5vw, 3.5rem);
  }
  .hero-summary {
    font-size: 18px;
  }
  .product-showcase {
    padding: 40px;
    gap: 32px;
  }
}
@media (max-width: 700px) {
  .site-header {
    width: calc(100% - 40px);
    margin-top: 4px;
  }
  .hero {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 0 36px;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 10vw, 3.5rem);
    line-height: 1.08;
  }
  .hero-summary {
    font-size: 18px;
  }
  .hero-kicker {
    margin-bottom: 20px;
  }
  .benefit-rail {
    width: calc(100% - 40px);
    margin-bottom: 24px;
  }
  .benefit-item {
    padding: 20px 0;
  }
  .product-showcase {
    width: calc(100% - 40px);
    padding: 32px 24px;
    grid-template-columns: 1fr;
  }
  .problem-section,
  .workflow-section,
  .product-section,
  .integration-section,
  .final-section {
    padding-block: 56px;
  }
}

.brand-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.footer-wordmark .brand-mark {
  width: 26px;
  height: 26px;
}
.product-showcase-copy .section-label {
  color: var(--muted);
}
.product-showcase-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}
.workflow-section .eyebrow,
.workflow-section .step-number {
  color: #c6dcff;
}
.board-footer {
  color: #526079;
}
.pricing-note {
  background: #18212f;
  border-radius: 14px;
}
.pricing-note span,
.pricing-note p {
  color: #e4e8ee;
}
@media (max-width: 700px) {
  .site-header {
    gap: 10px;
  }
  .wordmark {
    font-size: 18px;
    gap: 6px;
  }
  .header-action {
    padding-inline: 12px;
  }
}

.page-hero,
.page-section,
.page-cta {
  max-width: 1240px;
}
.page-hero {
  min-height: 0;
  padding-block: 72px;
  gap: 64px;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  line-height: 1.08;
  font-weight: 650;
}
.page-label,
.section-kicker {
  background: transparent;
  border: 0;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  padding: 0;
  font-size: 15px;
}
.page-artifact,
.contractor-panel,
.brief-form {
  border-radius: 16px;
}
@media (max-width: 700px) {
  .page-hero {
    padding-block: 44px;
    gap: 36px;
  }
  .page-hero h1 {
    font-size: 2.6rem;
  }
}

.notice-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  max-width: 620px;
}
.notice-page main {
  border-color: var(--line);
  box-shadow: none;
}

/* Construction photography leads; the app stays in the product walkthrough. */
.work-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface);
}
.work-photo img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: 58% center;
}
.work-photo-crew img {
  height: 560px;
  object-position: center bottom;
}
.field-context-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-top: 28px;
  border-radius: 12px;
}
@media (max-width: 1000px) {
  .work-photo img {
    height: 420px;
  }
  .work-photo-crew img {
    height: 480px;
  }
}
@media (max-width: 700px) {
  .work-photo img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .work-photo-crew img {
    height: 380px;
    aspect-ratio: auto;
  }
}

.work-photo-hero img {
  object-position: center 72%;
}
