@font-face {
  font-family: 'DM Sans';
  src: url('./assets/dm-sans.ttf') format('truetype');
  font-weight: 100 1000;
  font-display: swap;
}
:root {
  --brand-primary: #003faf;
  --brand-primary-active: #103077;
  --brand-primary-soft: #edf2ff;
  --brand-secondary: #103077;
  --brand-accent: #117562;
  --ink: #181818;
  --muted: #444;
  --subtle: #5c5c5c;
  --canvas: #f3f3f3;
  --surface: #fff;
  --line: #c9c9c9;
  --line-soft: #e5e5e5;
  --danger: #ba0517;
  --radius: 4px;
  --focus: #117562;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
a {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
img {
  max-width: 100%;
  display: block;
}
button {
  color: inherit;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1184px, calc(100% - 80px));
  margin-inline: auto;
}
.sr-only {
  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;
  top: -80px;
  left: 16px;
  padding: 12px;
  background: #fff;
  z-index: 100;
}
.skip-link:focus {
  top: 8px;
}
.site-header {
  gap: 28px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface);
}
.brand {
  display: inline-block;
}
.brand img {
  width: 171px;
  height: 38px;
  object-fit: contain;
}
.hero {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 64px;
  padding-block: 72px 76px;
  align-items: center;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 750;
  color: var(--brand-secondary);
  display: flex;
  gap: 9px;
  align-items: center;
}
.eyebrow > span {
  width: 7px;
  height: 7px;
  background: var(--brand-accent);
  border-radius: 50%;
}
h1 {
  font-size: clamp(3.2rem, 5.1vw, 4.5rem);
  font-weight: 720;
  line-height: 1.015;
  letter-spacing: -0.056em;
  margin-block: 24px;
}
h1 span {
  color: var(--brand-primary);
}
.hero-description {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--muted);
}
.hero-copy-line {
  display: block;
}
.email-form {
  display: flex;
  flex-direction: column;
  max-width: 390px;
  margin-top: 30px;
  gap: 10px;
}
input,
select {
  background: white;
  border: 1px solid #939393;
  color: var(--ink);
  border-radius: var(--radius);
  min-height: 50px;
  padding: 12px 14px;
  min-width: 0;
  width: 100%;
}
input::placeholder {
  color: #646464;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.18s,
    border-color 0.18s;
}
.primary {
  background: var(--brand-primary);
  color: white;
}
.primary:hover {
  background: var(--brand-primary-active);
}
.button > span {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
.secondary {
  background: white;
  border-color: var(--line);
  color: var(--brand-primary);
}
.secondary:hover {
  background: var(--brand-primary-soft);
}
.no-card {
  font-size: 0.8125rem;
  color: var(--subtle);
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  max-width: 390px;
  margin-top: 12px;
}
.no-card img {
  opacity: 0.8;
}
.hero-visual {
  background: var(--brand-primary-soft);
  padding: 28px;
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #dbe4f6;
  border-radius: var(--radius);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-accent);
}
.paper-mark {
  background: var(--brand-secondary);
  color: white;
  display: grid;
  place-items: center;
  width: 30px;
  height: 32px;
  font-size: 1.125rem;
  font-weight: 700;
}
.tag {
  font-size: 0.6875rem;
  background: #edf7f3;
  color: var(--brand-accent);
  padding: 3px 7px;
  align-self: flex-start;
  border-radius: var(--radius);
}
.line-item {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 0.75rem;
}
.line-item strong {
  white-space: nowrap;
}
.paper-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--brand-primary-soft);
  padding: 15px 12px;
  margin-top: 4px;
  font-size: 0.8125rem;
}
.paper-total strong {
  font-size: 1.375rem;
  color: var(--brand-secondary);
  letter-spacing: -0.04em;
}
.industries {
  background: var(--brand-secondary);
  color: #fff;
  padding: 48px 0;
}
.industries .eyebrow {
  color: #becfed;
}
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.45rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
  font-weight: 650;
}
.section-top h2 {
  margin-top: 12px;
  font-size: 1.8rem;
}
.section-top > p {
  font-size: 0.9375rem;
  color: #d5def2;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.industry-item {
  min-height: 118px;
  padding: 15px 10px;
  background: #ffffff07;
  border: 1px solid #ffffff28;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.industry-item img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.industry-item span {
  font-size: 0.75rem;
  line-height: 1.3;
  color: #eff3fc;
}
.site-footer {
  border-top: 1px solid var(--line-soft);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-block: 28px;
}
.footer-inner p {
  font-size: 0.875rem;
  color: var(--subtle);
}
.footer-links {
  margin-left: auto;
  display: flex;
  gap: 20px;
}
.footer-links button {
  background: none;
  padding: 8px 0;
  border: 0;
  font-size: 0.875rem;
}
dialog {
  border: 1px solid var(--line);
  border-radius: 4px;
  max-width: 520px;
  width: calc(100% - 40px);
  padding: 28px;
  box-shadow: 0 20px 70px #10307726;
}
dialog::backdrop {
  background: #081d49a6;
}
.dialog-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dialog-heading h2 {
  font-size: 1.5rem;
}
.icon-button {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  flex-shrink: 0;
}
#dialog-body p {
  margin-block: 12px;
  color: var(--muted);
  font-size: 0.9375rem;
}
.no-script {
  padding: 20px;
  text-align: center;
}
.hero-visual {
  padding: 0;
  min-height: 560px;
  border: 0;
  background: var(--brand-secondary);
  isolation: isolate;
  overflow: visible;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
  border-radius: 4px;
  z-index: -1;
}
.hero-visual .line-item {
  padding: 9px 0;
}
.benefits {
  padding-block: 80px;
}
.benefits .section-top > p {
  color: var(--subtle);
}
.benefits .section-top h2 {
  font-size: 2.25rem;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 42px;
}
.benefit-grid article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.benefit-icon {
  display: grid;
  place-items: center;
  background: var(--brand-primary-soft);
  width: 50px;
  height: 50px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.benefit-grid h3 {
  font-size: 1.2rem;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.benefit-grid p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.product-section {
  background: #f5f7fb;
  padding-block: 76px;
}
.product-heading {
  text-align: center;
}
.product-heading .eyebrow {
  justify-content: center;
}
.product-heading h2 {
  margin-top: 16px;
}
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 32px auto 44px;
  border-bottom: 1px solid var(--line);
  width: fit-content;
  max-width: 100%;
}
.product-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: none;
  padding: 13px 12px;
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 600;
}
.product-tabs button > img {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  opacity: 0.65;
}
.product-tabs button[aria-selected='true'] > img {
  opacity: 1;
}
.signup-redirect-error {
  grid-column: 1 / -1;
  margin: 5px 0 0;
  color: var(--danger);
  font-size: 0.875rem;
  line-height: 1.5;
}
#admin-preview-link { font-size: .8125rem; color: var(--brand-primary); text-underline-offset: 3px; }
.closing .signup-redirect-error {
  color: #fff;
}
.hero-estimate-summary {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid #dae2ef;
  border-radius: 4px;
  background: #fff;
}
.hero-estimate-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 32px;
  background: var(--brand-primary-soft);
  border-radius: 4px;
}
.hero-estimate-summary small {
  color: var(--brand-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.hero-estimate-summary h3 {
  font-size: .875rem;
  line-height: 1.25;
  margin-top: 2px;
  letter-spacing: -0.025em;
}
.hero-estimate-summary p {
  font-size: 0.75rem;
  color: var(--subtle);
  margin-top: 2px;
  line-height: 1.35;
}
.hero-estimate-summary > strong {
  font-size: .9375rem;
  color: var(--brand-secondary);
  letter-spacing: -0.04em;
}
.hero-estimate-actions {
  display: grid;
  width: min(248px, 100%);
  gap: 8px;
}
.hero-invoice-button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 40px;
  justify-content: center;
  gap: 9px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--brand-primary);
  color: #fff;
  cursor: default;
}
.hero-invoice-button img {
  filter: brightness(0) invert(1);
}
@media (min-width: 1200px) {
  .hero-visual {
    margin-bottom: 40px;
  }
  .hero-estimate-actions {
    position: absolute;
    left: -22px;
    top: 68%;
    z-index: 1;
  }
  .hero-estimate-summary {
    box-shadow: 0 8px 28px #10307712;
  }
  .hero-estimate-icon {
    width: 28px;
    height: 32px;
  }
  .hero-estimate-icon img {
    width: 21px;
    height: 21px;
  }
  .hero-estimate-summary small { font-size: .75rem; }
  .hero-estimate-summary h3 { font-size: .875rem; }
  .hero-estimate-summary > strong { font-size: .9375rem; }
}
.product-tabs button[aria-selected='true'] {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}
#product-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 88px;
}
.product-copy h3 {
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-block: 16px;
}
.product-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}
.check-list {
  list-style: none;
  padding: 0;
  margin-block: 24px;
  display: grid;
  gap: 12px;
}
.check-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9375rem;
}
.check-list img {
  width: 18px;
  height: 18px;
}
.text-link {
  border: 0;
  background: transparent;
  color: var(--brand-primary);
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
}
.text-link img {
  width: 18px;
  height: 18px;
}
.product-preview {
  padding: 32px;
  background: #e7edf8;
  border-radius: 4px;
}
.sample-caption {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--subtle);
}
.mini-app {
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: white;
  padding: 0 24px 24px;
  box-shadow: 0 10px 25px #10307708;
}
.mini-app-head {
  min-height: 60px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.75rem;
}
.mini-app-head > strong {
  display: flex;
  gap: 7px;
  align-items: center;
}
.mini-app-head img {
  width: 18px;
  height: 18px;
}
.mini-app-head .tag {
  align-self: auto;
}
.sample-id {
  color: var(--subtle);
  font-weight: 400;
}
.sample-business {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.75rem;
}
.sample-business small {
  display: block;
  color: var(--subtle);
  margin-top: 4px;
}
.document-sample > h3 {
  font-size: 1.125rem;
  margin-block: 26px 18px;
  letter-spacing: -0.03em;
}
.sample-table-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.625rem;
  color: var(--subtle);
  padding-bottom: 8px;
}
.sample-bottom {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  font-size: 0.6875rem;
  color: var(--subtle);
}
.sample-bottom img {
  width: 16px;
  height: 16px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: 30px repeat(3, 1fr);
  font-size: 0.6875rem;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.calendar-grid > * {
  padding: 10px 6px;
  background: white;
  min-width: 0;
}
.calendar-grid > strong {
  text-align: center;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--muted);
}
.calendar-grid > strong small {
  display: block;
  font-size: 1rem;
  color: var(--brand-secondary);
  font-weight: 700;
  margin-top: 4px;
}
.calendar-grid > span {
  font-size: 0.5rem;
  color: var(--subtle);
}
.calendar-grid > div {
  min-height: 85px;
}
.calendar-grid .calendar-event {
  background: #edf2ff;
  border-left: 2px solid var(--brand-primary);
  margin: 4px 2px;
  font-size: 0.5625rem;
  font-weight: 600;
  padding: 8px 5px;
}
.calendar-grid .green {
  background: #edf7f3;
  border-color: var(--brand-accent);
}
.calendar-event small {
  display: block;
  font-size: 0.5rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 8px;
}
.mini-app-bottom {
  font-size: 0.6875rem;
  color: var(--subtle);
  padding-top: 20px;
}
.customer-profile {
  display: flex;
  gap: 12px;
  align-items: center;
}
.avatar {
  width: 46px;
  height: 46px;
  background: var(--brand-primary-soft);
  color: var(--brand-secondary);
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 4px;
  flex-shrink: 0;
}
.customer-profile h3 {
  font-size: 1rem;
}
.customer-profile p {
  font-size: 0.75rem;
  color: var(--muted);
}
.customer-profile > .tag {
  margin-left: auto;
  align-self: center;
}
.customer-details {
  display: grid;
  gap: 11px;
  margin-block: 24px;
  font-size: 0.75rem;
  color: var(--muted);
}
.customer-details > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.customer-details img {
  width: 15px;
  height: 15px;
}
.activity-title {
  font-weight: 700;
  font-size: 0.75rem;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 12px;
}
.sample-activity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  font-size: 0.625rem;
}
.sample-activity > img {
  width: 18px;
  height: 18px;
}
.sample-activity small {
  display: block;
  color: var(--subtle);
  margin-top: 3px;
}
.sample-activity > span {
  margin-left: auto;
  color: var(--subtle);
  white-space: nowrap;
}
.workflow {
  padding-block: 84px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.workflow h2 {
  margin-top: 16px;
}
.section-description {
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.7;
}
.workflow-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.workflow-list li {
  display: flex;
  gap: 24px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
}
.workflow-list li > span {
  font-size: 0.875rem;
  color: var(--brand-primary);
  padding-top: 4px;
}
.workflow-list h3 {
  font-size: 1.1875rem;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.workflow-list p {
  color: var(--muted);
  font-size: 0.9375rem;
}
.faq {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding-block: 84px;
}
.faq h2 {
  margin-top: 16px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding-block: 20px;
}
.faq details:first-child {
  border-top: 1px solid var(--line);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  color: var(--brand-primary);
  font-size: 1.25rem;
  line-height: 1.1;
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details p {
  padding-top: 15px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.closing {
  background: var(--brand-secondary);
  color: white;
  padding-block: 64px;
}
.closing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.closing .eyebrow {
  color: #c5d5f7;
}
.closing h2 {
  font-size: 2.8rem;
  margin-top: 18px;
}
.closing .email-form {
  margin: 0;
  max-width: none;
}
.closing .no-card {
  max-width: none;
  color: #d5def2;
}
.closing .primary {
  background: #fff;
  color: var(--brand-primary);
  border: 1px solid #fff;
}
.closing .primary:hover {
  background: #edf2ff;
}
.closing input {
  border-color: #fff;
}
[aria-invalid='true'] {
  border-color: var(--danger) !important;
}
.inline-link {
  border: 0;
  background: transparent;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--brand-primary);
  font-size: inherit;
}
.primary > img {
  filter: brightness(0) invert(1);
  width: 19px;
  height: 19px;
}
@media (min-width: 1400px) {
  .hero {
    gap: 100px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .hero {
    gap: 32px;
    padding-block: 50px;
  }
  .hero-visual {
    padding: 20px;
  }
  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 60px;
  }
  .brand img {
    width: 145px;
    height: 32px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-block: 40px;
    gap: 32px;
  }
  .hero-content {
    text-align: center;
  }
  .hero .eyebrow {
    justify-content: center;
    font-size: 0.6875rem;
  }
  h1 {
    font-size: clamp(2.7rem, 11vw, 4rem);
    margin-block: 20px;
    line-height: 1.04;
  }
  .hero-description {
    font-size: 1.0625rem;
  }
  .email-form {
    margin: 24px auto 0;
  }
  .no-card {
    margin: 12px auto 0;
  }
  .hero-visual {
    min-height: 0;
  }
  .industries {
    padding-block: 34px;
  }
  .section-top {
    align-items: start;
  }
  .section-top h2 {
    font-size: 1.65rem;
  }
  .section-top > p {
    display: none;
  }
  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .industry-item {
    padding: 12px 5px;
    min-height: 108px;
  }
  .industry-item span {
    font-size: 0.6875rem;
  }
  .industry-item img {
    width: 24px;
    height: 24px;
  }
  .footer-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
  .footer-inner p {
    width: 100%;
    text-align: center;
    order: 2;
  }
  .footer-links {
    margin-left: 0;
  }
  .footer-inner > img {
    margin-right: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 1000px) {
  .hero-visual {
    min-height: 525px;
  }
  .benefit-grid {
    gap: 25px;
  }
  #product-panel {
    gap: 40px;
  }
  .product-preview {
    padding: 22px;
  }
  .workflow,
  .faq,
  .closing-inner {
    gap: 40px;
  }
  .mini-app {
    padding-inline: 16px;
  }
  .calendar-event small {
    font-size: 0.5rem;
  }
}
@media (max-width: 700px) {
  .hero-visual {
    display: none;
  }
  .benefits {
    padding-block: 44px;
  }
  .benefits .section-top h2 {
    font-size: 1.8rem;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
  }
  .benefit-grid article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 16px;
    padding-top: 22px;
  }
  .benefit-icon {
    grid-row: 1/3;
    width: 44px;
    height: 44px;
    margin-bottom: 0;
  }
  .benefit-grid h3 {
    font-size: 1.125rem;
  }
  .benefit-grid p {
    font-size: 0.9375rem;
  }
  .product-section {
    padding-block: 44px;
  }
  .product-tabs {
    gap: 2px;
    width: 100%;
    justify-content: space-between;
    margin-block: 24px 30px;
  }
  .product-tabs button {
    font-size: 0.8125rem;
    padding: 12px 7px;
  }
  #product-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .product-copy h3 {
    font-size: 1.8rem;
  }
  .product-copy > p:not(.eyebrow) {
    font-size: 0.9375rem;
  }
  .product-preview {
    padding: 18px;
  }
  .mini-app {
    padding-inline: 16px;
  }
  .workflow,
  .faq {
    padding-block: 44px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .workflow-list li {
    padding-block: 20px;
    gap: 18px;
  }
  .closing {
    padding-block: 44px;
  }
  .closing-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .closing h2 {
    font-size: 2.3rem;
  }
  .closing .email-form {
    max-width: none;
  }
}
.section-cta {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 28px;
  align-items: center;
}
.section-cta strong {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.section-cta > div > p {
  font-size: 0.875rem;
  color: var(--subtle);
  margin-top: 6px;
}
.inline-form {
  flex-direction: row;
  max-width: none;
  margin: 0;
  gap: 8px;
}
.inline-form input {
  flex: 1;
  min-width: 0;
  width: 45%;
}
.inline-form button {
  gap: 10px;
  white-space: nowrap;
  font-size: 0.9375rem;
  padding-inline: 15px;
}
.section-cta .no-card {
  max-width: none;
  font-size: 0.75rem;
  margin-top: 8px;
}
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}
.jobsite-section {
  background: #f5f7fb;
  padding-block: 76px;
}
.service-photo {
  margin: 0;
  min-width: 0;
}
.service-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  object-position: center;
}
.jobsite-section .service-photo img {
  object-position: 65% center;
}
.service-photo figcaption {
  margin-top: 14px;
  color: var(--subtle);
  font-size: 0.8125rem;
  line-height: 1.6;
}
.editorial-copy h2 {
  margin: 16px 0 24px;
  font-size: 2.6rem;
}
.editorial-copy > p:not(.eyebrow):not(.no-card):not(.connection-note) {
  color: var(--muted);
  line-height: 1.75;
  max-width: 465px;
}
.editorial-points {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}
.editorial-points > div {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.editorial-points img {
  margin-top: 2px;
  flex-shrink: 0;
}
.editorial-points h3 {
  font-size: 1rem;
  font-weight: 650;
  margin-bottom: 4px;
}
.editorial-points p {
  font-size: 0.9375rem;
  color: var(--subtle);
  line-height: 1.6;
}
.branding-section,
.client-section {
  padding-block: 84px;
}
.branding-preview {
  background: var(--brand-primary-soft);
  padding: 32px 34px;
  border-radius: 4px;
}
.brand-preview-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.brand-preview-label > span {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--brand-secondary);
  letter-spacing: 0.06em;
}
.brand-swatches {
  display: flex;
  gap: 4px;
}
.brand-swatches i {
  width: 12px;
  height: 12px;
  background: var(--brand-primary);
  border-radius: 50%;
}
.brand-swatches i:nth-child(2) {
  background: var(--brand-secondary);
}
.brand-swatches i:nth-child(3) {
  background: var(--brand-accent);
}
.brand-document {
  background: white;
  padding: 26px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  box-shadow: 0 16px 25px #10307708;
}
.custom-business {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-accent);
}
.custom-business > span {
  width: 33px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--brand-accent);
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
}
.custom-business strong {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.custom-business small {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.12em;
}
.custom-business > b {
  font-size: 0.5rem;
  margin-left: auto;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.brand-document-heading {
  padding: 36px 0 26px;
}
.brand-document-heading > span {
  color: var(--subtle);
  font-size: 0.5rem;
  letter-spacing: 0.06em;
}
.brand-document-heading h3 {
  font-size: 1.9rem;
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin: 10px 0 14px;
  color: var(--brand-accent);
}
.brand-document-heading p {
  font-size: 0.6875rem;
  color: var(--subtle);
}
.brand-total {
  background: var(--brand-accent);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 14px;
  margin-top: 16px;
  font-size: 0.6875rem;
}
.brand-total strong {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}
.brand-document-note {
  font-size: 0.625rem;
  color: var(--subtle);
  margin-top: 20px;
  text-align: center;
}
.field-section {
  padding-block: 76px;
  background: var(--brand-secondary);
  color: white;
}
.field-section .eyebrow {
  color: #c5d5f7;
}
.field-section .editorial-copy > p:not(.eyebrow):not(.no-card):not(.connection-note),
.field-section figcaption {
  color: #d5def2;
}
.field-section .service-photo img {
  object-position: 48% center;
}
.offline-note {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid #ffffff36;
  background: #ffffff0a;
  border-radius: 4px;
  margin-top: 28px;
}
.offline-note > img {
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
.offline-note strong {
  font-size: 1rem;
}
.offline-note p {
  font-size: 0.875rem;
  color: #d5def2;
  line-height: 1.6;
  margin-top: 7px;
}
.connection-note {
  font-size: 0.75rem;
  color: #c5d5f7;
  margin-top: 16px;
}
.client-preview {
  padding: 40px;
  background: #eff5f3;
  border-radius: 4px;
}
.client-document {
  background: white;
  padding: 28px;
  border: 1px solid #d6e3df;
  border-radius: 4px;
  box-shadow: 0 12px 25px #10307708;
}
.client-document-top {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8125rem;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 20px;
}
.client-document-top small {
  font-size: 0.6875rem;
  margin-left: auto;
  color: var(--subtle);
}
.client-document h3 {
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 26px 0 10px;
}
.client-document > p {
  color: var(--subtle);
  font-size: 0.75rem;
}
.client-scope {
  padding-block: 14px 20px;
}
.client-scope > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.8125rem;
}
.client-scope span {
  font-size: 0.6875rem;
  color: var(--subtle);
}
.client-scope > div:last-child {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.client-scope > div:last-child strong {
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  color: var(--brand-secondary);
}
.approved-state {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #edf7f3;
  border: 1px solid #d1e5dd;
  border-radius: 4px;
  color: var(--brand-accent);
  font-size: 0.8125rem;
}
.approved-state small {
  display: block;
  font-size: 0.6875rem;
  margin-top: 4px;
}
.catalog-section {
  background: #f5f7fb;
  padding-block: 76px;
}
.catalog-preview {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
}
.catalog-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 28px;
}
.catalog-heading .eyebrow {
  font-size: 0.625rem;
}
.catalog-heading h3 {
  font-size: 1.3rem;
  margin-top: 8px;
  letter-spacing: -0.025em;
}
.catalog-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-block: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.875rem;
}
.catalog-icon {
  background: var(--brand-primary-soft);
  border-radius: 4px;
  padding: 10px;
}
.catalog-item small {
  display: block;
  font-size: 0.6875rem;
  color: var(--subtle);
  margin-top: 5px;
}
.catalog-item > b {
  margin-left: auto;
  font-size: 0.875rem;
  white-space: nowrap;
}
.catalog-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.75rem;
  color: var(--subtle);
}
@media (max-width: 1000px) {
  .editorial-split {
    gap: 38px;
  }
  .editorial-copy h2 {
    font-size: 2.2rem;
  }
  .service-photo img {
    height: 380px;
  }
  .branding-preview,
  .client-preview {
    padding: 24px;
  }
  .brand-document,
  .client-document {
    padding: 22px;
  }
  .section-cta {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .inline-form {
    max-width: 650px;
  }
  .section-cta .no-card {
    max-width: 650px;
  }
  .catalog-preview {
    padding: 22px;
  }
  .catalog-item {
    gap: 10px;
  }
  .catalog-icon {
    padding: 8px;
  }
  .catalog-heading h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 700px) {
  .section-cta {
    margin-top: 32px;
    padding-top: 24px;
  }
  .inline-form {
    flex-direction: column;
    max-width: none;
  }
  .inline-form input {
    width: 100%;
  }
  .inline-form button {
    font-size: 1rem;
  }
  .editorial-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .jobsite-section,
  .field-section,
  .catalog-section {
    padding-block: 44px;
  }
  .branding-section,
  .client-section {
    padding-block: 44px;
  }
  .service-photo img {
    height: auto;
    aspect-ratio: 1.2;
    object-fit: cover;
  }
  .service-photo figcaption {
    font-size: 0.75rem;
  }
  .editorial-copy h2 {
    font-size: 2rem;
    margin-block: 14px 18px;
  }
  .editorial-copy > p:not(.eyebrow):not(.no-card):not(.connection-note) {
    font-size: 1rem;
  }
  .editorial-copy .email-form {
    max-width: none;
  }
  .editorial-copy .no-card {
    max-width: none;
  }
  .editorial-copy .eyebrow {
    font-size: 0.6875rem;
  }
  .branding-preview,
  .client-preview {
    padding: 22px;
  }
  .custom-business strong {
    font-size: 0.75rem;
  }
  .custom-business small {
    font-size: 0.5rem;
  }
  .brand-document {
    padding: 20px;
  }
  .brand-document-heading h3 {
    font-size: 1.8rem;
  }
  .catalog-item {
    font-size: 0.8125rem;
  }
  .catalog-item > b {
    font-size: 0.8125rem;
  }
  .catalog-preview {
    padding: 20px;
  }
  .catalog-heading h3 {
    font-size: 1.2rem;
  }
  .offline-note {
    padding: 18px;
  }
  .workflow .email-form,
  .faq .email-form {
    max-width: none;
  }
  .workflow .no-card,
  .faq .no-card {
    max-width: none;
  }
}
@media (max-width: 360px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-tabs button {
    font-size: 0.75rem;
    padding-inline: 4px;
  }
  .mini-app-head .sample-id {
    display: none;
  }
  .brand-preview-label {
    gap: 8px;
  }
  .brand-document,
  .client-document {
    padding: 16px;
  }
  .custom-business > b {
    display: none;
  }
  .catalog-icon {
    display: none;
  }
}

/* Joined signup controls, calmer motion and compact, fully visible form steps. */
.check-list {
  gap: 0;
}
.check-list li {
  padding-block: 11px;
  border-bottom: 1px solid #dfe5ef;
  gap: 12px;
}
.check-list li:last-child {
  border-bottom: 0;
}
.check-list img {
  width: 25px;
  height: 25px;
  padding: 5px;
  background: #e8f0fe;
  border-radius: 50%;
  flex-shrink: 0;
}
.workflow-list li > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid #dce5f5;
  border-radius: 50%;
  background: #f4f7fd;
  font-weight: 600;
}
@keyframes hero-copy-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.86;
  }
  50% {
    transform: translate3d(0, -2px, 0);
    opacity: 1;
  }
}

@media (min-width: 701px) {
  .site-header {
    height: 64px;
  }
  .hero {
    padding-block: 30px 34px;
    gap: clamp(32px, 5vw, 72px);
  }
  .hero h1 {
    font-size: clamp(3.1rem, 4.2vw, 4rem);
    margin-block: 18px;
    line-height: 1.02;
  }
  .hero-visual {
    min-height: 432px;
    padding: 0;
  }
  .email-form {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
    max-width: 540px;
    gap: 8px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    margin-top: 24px;
  }
  .email-form > input {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 52px;
    border: 1px solid #939393;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 0.9375rem;
  }
  .email-form > .button {
    position: relative;
    min-height: 52px;
    margin: 0;
    padding: 12px 22px;
    border: 1px solid var(--brand-primary);
    border-radius: 4px;
    background: var(--brand-primary);
    color: #fff;
    font-size: 0.9375rem;
    white-space: nowrap;
  }
  .email-form > .button:hover {
    background: var(--brand-primary-active);
    border-color: var(--brand-primary-active);
  }
  .email-form > .button > span {
    display: none;
  }
  .email-form:focus-within {
    border-color: var(--brand-primary);
  }
  .email-form > input:focus-visible {
    outline-offset: -4px;
  }
  .email-form > .button:focus-visible {
    outline-offset: 3px;
  }
  .email-form + .no-card {
    max-width: 540px;
    margin-top: 10px;
  }
  .section-cta .inline-form {
    margin-top: 0;
    max-width: none;
  }
  .section-cta .no-card {
    max-width: none;
  }
  .closing .email-form {
    max-width: none;
  }
}

@media (min-width: 701px) and (max-width: 1000px) {
  .email-form > input {
    padding-inline: 14px;
    font-size: 0.875rem;
  }
  .email-form > .button {
    padding-inline: 15px;
    font-size: 0.875rem;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 56px;
  }
  .hero {
    padding-block: 24px 28px;
    gap: 0;
  }
  .hero h1 {
    font-size: clamp(3.125rem, 12.85vw, 4.9rem);
    line-height: 0.99;
    letter-spacing: -0.06em;
    margin-block: 16px;
  }
  .hero-description {
    font-size: 1.0625rem;
    line-height: 1.42;
  }
  .hero-copy-line {
    animation: hero-copy-float 9s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  }
  .hero-copy-line + .hero-copy-line {
    animation-delay: -4.5s;
  }
  .email-form {
    margin-top: 18px;
    gap: 8px;
  }
  .email-form > input,
  .email-form > .button {
    min-height: 46px;
    padding-block: 10px;
  }
  .email-form + .no-card {
    margin-top: 8px;
  }
}

@media (min-width: 701px) {
  .hero-visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    isolation: auto;
  }
  .hero-photo {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center 22%;
    z-index: auto;
  }
  #hero-form,
  #hero-form + .no-card {
    max-width: 440px;
  }
  .section-cta {
    grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  }
  .section-cta .inline-form,
  .section-cta .no-card {
    max-width: 440px;
  }
}

/* Shared public-site navigation */
.site-header {
  height: auto;
  min-height: 72px;
  padding: 0;
}
.site-header-inner {
  width: min(1184px, calc(100% - 80px));
  min-height: 72px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-secondary);
  font-size: 1.18rem;
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.brand-lockup img {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}
.site-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(20px, 2.2vw, 34px);
}
.site-navigation a {
  position: relative;
  padding: 11px 0;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 650;
  text-decoration: none;
}
.site-navigation a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.site-navigation a:hover::after,
.site-navigation a[aria-current='page']::after {
  transform: scaleX(1);
}
.header-signup {
  position: relative;
  width: min(100%, 410px);
}
.header-signup-form {
  display: grid;
  grid-template-columns: minmax(138px, 1fr) auto;
  align-items: stretch;
  gap: 6px;
  width: 100%;
}
.header-signup-form input,
.header-signup-form .button {
  min-height: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 0.8125rem;
}
.header-signup-form input {
  padding: 8px 11px;
}
.header-signup-form .button {
  padding: 8px 13px;
  white-space: nowrap;
}
.header-signup-error {
  position: absolute;
  z-index: 5;
  top: calc(100% + 5px);
  right: 0;
  max-width: 100%;
  padding: 5px 8px;
  border: 1px solid #f0c7cc;
  border-radius: 4px;
  background: #fff;
  color: var(--danger);
  font-size: 0.75rem;
  box-shadow: 0 6px 18px rgb(16 48 119 / 10%);
}
.footer-brand {
  font-size: 1rem;
}
.footer-brand img {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
}
.placeholder-main {
  min-height: calc(100vh - 150px);
  display: grid;
  place-items: center;
  padding: 72px 20px;
  background: linear-gradient(180deg, #fff, var(--brand-primary-soft));
  text-align: center;
}
.placeholder-content {
  width: min(680px, 100%);
}
.placeholder-content .eyebrow {
  justify-content: center;
}
.placeholder-content h1 {
  margin: 18px 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}
.placeholder-content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.125rem;
}

@media (max-width: 1120px) and (min-width: 701px) {
  .site-header-inner {
    width: calc(100% - 48px);
    grid-template-columns: auto 1fr;
    gap: 4px 32px;
    padding-block: 10px;
  }
  .site-navigation {
    justify-self: end;
  }
  .header-signup {
    grid-column: 1 / -1;
    justify-self: end;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 0;
  }
  .site-header-inner {
    width: calc(100% - 40px);
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2px;
    padding-block: 10px 8px;
  }
  .brand-lockup {
    font-size: 1.05rem;
  }
  .brand-lockup img {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
  .site-navigation {
    justify-content: center;
    gap: 24px;
  }
  .site-navigation a {
    padding-block: 8px;
    font-size: 0.8125rem;
  }
  .header-signup {
    display: none;
  }
  .placeholder-main {
    min-height: calc(100vh - 180px);
    padding-block: 48px;
  }
}
@media (max-width: 700px) {
  .product-tabs button {
    flex-direction: column;
    gap: 6px;
  }
  .product-tabs button > img {
    width: 20px;
    height: 20px;
  }
}
