:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --panel: #ffffff;
  --panel-soft: #f5f5f7;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --line-strong: #86868b;
  --success: #1f6f36;
  --success-soft: #eaf6ed;
  --error: #a51d28;
  --error-soft: #fff0f1;
  --radius: 12px;
  --radius-large: 26px;
  --shadow: 0 8px 28px rgb(0 0 0 / 5%);
  --shadow-large: 0 18px 50px rgb(0 0 0 / 8%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--panel);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

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

button,
input,
select {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.03;
}

h1 {
  font-size: clamp(3rem, 5.4vw, 4.75rem);
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

::selection {
  background: var(--ink);
  color: var(--panel);
}

:focus-visible {
  outline: 3px solid #2879e8;
  outline-offset: 3px;
}

.shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

#products,
#approach,
#waitlist,
#features {
  scroll-margin-top: 88px;
}

.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;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

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

.site-header,
.admin-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgb(245 245 247 / 94%);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.site-header.scrolled,
.site-header.menu-active,
.admin-header {
  border-bottom-color: rgb(0 0 0 / 9%);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.brand strong {
  font-weight: 750;
}

.brand-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  padding: 6px;
  border-radius: 10px;
  background: var(--ink);
}

.brand-mark i {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: #fff;
}

.brand-mark i:nth-child(1) { height: 7px; }
.brand-mark i:nth-child(2) { height: 14px; }
.brand-mark i:nth-child(3) { height: 10px; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  color: #515154;
  font-size: 0.9rem;
  font-weight: 540;
}

.desktop-nav a,
.site-footer a,
.legal-copy a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover,
.legal-copy a:hover {
  color: #000;
}

.desktop-cta {
  margin-left: 6px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  inset: 76px 0 auto;
  display: grid;
  gap: 0;
  padding: 12px 24px 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-nav a {
  padding: 15px 2px;
  border-bottom: 1px solid #ececef;
  font-weight: 650;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 680;
  line-height: 1;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 39px;
  padding-inline: 16px;
  font-size: 0.86rem;
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: #000;
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--line-strong);
  background: var(--panel-soft);
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  background: var(--panel-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 680;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #aaaab0;
}

.status-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 7px 11px;
  border: 1px solid #badfc2;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 730;
  letter-spacing: 0.02em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgb(31 111 54 / 10%);
}

.status-neutral {
  border-color: var(--line);
  background: var(--panel-soft);
  color: #515154;
}

.home-hero,
.product-hero {
  overflow: hidden;
  border-bottom: 1px solid #ededf0;
  background: linear-gradient(180deg, #fff 0%, #fff 74%, #f8f8fa 100%);
}

.home-hero-grid,
.product-hero-grid {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.hero-copy h1,
.product-hero-copy h1 {
  max-width: 810px;
  margin-bottom: 24px;
}

.hero-lede,
.product-hero-copy > p:not(.status-label):not(.hero-note) {
  max-width: 650px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.55;
}

.button-row,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-note {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.hero-visual,
.product-hero-visual {
  position: relative;
}

.app-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-large);
}

.app-window img {
  width: 100%;
}

.window-bar {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border-bottom: 1px solid #e4e4e7;
  background: #f7f7f8;
}

.window-bar > span {
  width: 7px;
  height: 7px;
  border: 1px solid #b7b7bc;
  border-radius: 50%;
  background: #fff;
}

.window-bar small {
  margin-left: 6px;
  color: var(--muted);
  font-size: 0.68rem;
}

.floating-note {
  position: absolute;
  right: -20px;
  bottom: -25px;
  display: flex;
  max-width: 280px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.floating-note strong,
.floating-note small {
  display: block;
}

.floating-note strong {
  font-size: 0.9rem;
}

.floating-note small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.icon-tile,
.form-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 750;
}

.trust-strip,
.fact-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-row {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  color: #515154;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-row i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line-strong);
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2,
.product-intro h2,
.company-grid h2,
.pricing-layout h2,
.showcase-copy h2 {
  margin-bottom: 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 50px;
}

.split-heading > p,
.center-heading > p:last-child {
  max-width: 540px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.08rem;
}

.center-heading {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.center-heading > p:last-child {
  margin: 24px auto 0;
}

.products-section {
  background: var(--panel-soft);
}

.product-grid {
  display: grid;
  gap: 28px;
}

.product-card {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: #fff;
  box-shadow: 0 1px 0 rgb(0 0 0 / 2%);
}

.product-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 66px);
}

.product-card-reverse .product-card-copy {
  order: 2;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 730;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-soft);
  color: #515154;
  font-size: 0.7rem;
  font-weight: 730;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: none;
  white-space: nowrap;
}

.badge-beta {
  border-color: #badfc2;
  background: var(--success-soft);
  color: var(--success);
}

.product-card h3 {
  margin-bottom: 11px;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.card-tagline {
  margin-bottom: 20px;
  color: var(--ink) !important;
  font-size: 1.15rem;
  font-weight: 650;
}

.product-card-copy > p:not(.card-tagline) {
  max-width: 530px;
  color: var(--muted);
}

.feature-list,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 32px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #515154;
  font-size: 0.75rem;
  font-weight: 650;
}

.product-card-image {
  display: grid;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  padding: 44px 34px 0;
  background: #e9eaec;
}

.product-card-image img {
  width: min(270px, 75%);
  height: 520px;
  object-fit: cover;
  object-position: top center;
  border: 7px solid #171719;
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  box-shadow: var(--shadow-large);
}

.product-card-image-wide {
  padding: 60px 0 60px 38px;
  background: #e5e5e7;
}

.product-card-image-wide img {
  width: 110%;
  max-width: none;
  height: auto;
  border: 1px solid #c8c8cc;
  border-right: 0;
  border-radius: 10px 0 0 10px;
}

.approach-section {
  background: #fff;
}

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

.principles-grid article {
  min-height: 270px;
  padding: 36px;
  border-right: 1px solid var(--line);
}

.principles-grid article:last-child {
  border-right: 0;
}

.principle-index,
.feature-num {
  display: block;
  margin-bottom: 58px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 730;
}

.principles-grid h3,
.feature-card h3 {
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}

.principles-grid p,
.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.waitlist-section {
  background: var(--ink);
  color: #fff;
}

.waitlist-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  align-items: start;
  gap: clamp(50px, 8vw, 100px);
}

.waitlist-copy {
  position: sticky;
  top: 110px;
}

.waitlist-copy h2 {
  margin-bottom: 24px;
}

.waitlist-copy > p:not(.eyebrow):not(.privacy-short) {
  color: #c8c8cd;
  font-size: 1.08rem;
}

.waitlist-steps {
  display: grid;
  gap: 0;
  margin: 36px 0;
  padding: 0;
  list-style: none;
}

.waitlist-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid #3b3b3f;
}

.waitlist-steps li:last-child {
  border-bottom: 1px solid #3b3b3f;
}

.waitlist-steps li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
}

.waitlist-steps strong,
.waitlist-steps small {
  display: block;
}

.waitlist-steps small {
  margin-top: 2px;
  color: #aaaab0;
}

.privacy-short {
  color: #aaaab0;
  font-size: 0.83rem;
}

.privacy-short a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-card {
  padding: clamp(25px, 4vw, 42px);
  border-radius: var(--radius-large);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 80px rgb(0 0 0 / 25%);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.form-heading h3,
.form-heading p {
  margin-bottom: 0;
}

.form-heading p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

.waitlist-form,
.admin-login-form {
  display: grid;
  gap: 19px;
}

.form-grid {
  display: grid;
  gap: 15px;
}

.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-group {
  display: grid;
  gap: 7px;
}

.field-group label,
.consent-group legend {
  font-size: 0.81rem;
  font-weight: 700;
}

.field-group input,
.field-group select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 0.94rem;
}

.field-group input:hover,
.field-group select:hover {
  border-color: var(--line-strong);
}

.field-group input:focus,
.field-group select:focus {
  border-color: var(--ink);
  outline: 2px solid rgb(29 29 31 / 15%);
  outline-offset: 1px;
}

.field-group small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-group {
  display: grid;
  gap: 13px;
  margin: 2px 0 0;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.consent-group legend {
  padding: 0 0 5px;
}

.check-control {
  display: grid;
  grid-template-columns: 19px 1fr;
  align-items: start;
  gap: 10px;
  color: #454549;
  font-size: 0.8rem;
  line-height: 1.45;
  cursor: pointer;
}

.check-control input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--ink);
}

.check-control small {
  color: var(--muted);
}

.submit-button {
  width: 100%;
  margin-top: 3px;
}

.submit-button[disabled],
.button[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-disclaimer {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.71rem;
  line-height: 1.5;
  text-align: center;
}

.form-status,
.admin-status {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.82rem;
}

.form-status.is-success,
.admin-status.is-success {
  border-color: #badfc2;
  background: var(--success-soft);
  color: var(--success);
}

.form-status.is-error,
.admin-status.is-error {
  border-color: #efbdc1;
  background: var(--error-soft);
  color: var(--error);
}

.company-section {
  border-bottom: 1px solid var(--line);
}

.company-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 100px);
}

.company-grid p {
  color: var(--muted);
}

.company-grid .large-copy {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 560;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.site-footer {
  padding: 58px 0 24px;
  background: #fff;
  color: var(--muted);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(50px, 9vw, 120px);
  padding-bottom: 50px;
}

.footer-main > div p {
  margin: 14px 0 0;
  font-size: 0.84rem;
}

.footer-main nav {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 125px;
  font-size: 0.83rem;
}

.footer-main nav strong {
  margin-bottom: 4px;
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
}

/* Product pages */
.product-hero-grid {
  min-height: 660px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.back-link:hover {
  color: var(--ink);
}

.product-hero-copy h1 {
  font-size: clamp(3.25rem, 5.4vw, 4.75rem);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.facts-grid div {
  min-width: 0;
  min-height: 116px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

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

.facts-grid strong,
.facts-grid span {
  display: block;
}

.facts-grid strong {
  margin-bottom: 4px;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

.facts-grid span {
  color: var(--muted);
  font-size: 0.78rem;
}

.product-intro {
  background: #fff;
}

.product-intro-grid {
  display: grid;
  grid-template-columns: 0.5fr 1.2fr 0.8fr;
  align-items: start;
  gap: 45px;
}

.product-intro-grid > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.product-features,
.simple-pricing,
.jobsites-section {
  background: var(--panel-soft);
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-card-large {
  grid-column: span 2;
}

.feature-card .feature-num {
  margin-bottom: 70px;
}

.data-demo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.data-demo span {
  padding: 14px;
  background: var(--panel-soft);
}

.data-demo small,
.data-demo strong {
  display: block;
}

.data-demo small {
  color: var(--muted);
  font-size: 0.66rem;
}

.data-demo strong {
  margin-top: 2px;
  font-size: 1.05rem;
}

.scan-demo {
  position: relative;
  display: grid;
  min-height: 85px;
  align-items: center;
  margin-top: 30px;
  padding: 16px 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.scan-line {
  position: absolute;
  inset: 0 auto 0 22%;
  width: 2px;
  background: var(--ink);
  opacity: 0.6;
}

.scan-demo div {
  margin-left: auto;
}

.scan-demo small,
.scan-demo strong {
  display: block;
}

.scan-demo small {
  color: var(--muted);
  font-size: 0.68rem;
}

.showcase-section {
  background: #fff;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(50px, 10vw, 140px);
}

.showcase-grid-reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.phone-preview {
  display: grid;
  min-height: 610px;
  place-items: end center;
  overflow: hidden;
  padding: 54px 40px 0;
  border-radius: var(--radius-large);
  background: #e9eaec;
}

.phone-frame {
  width: min(290px, 85%);
  height: 570px;
  overflow: hidden;
  border: 8px solid #19191b;
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
  background: #fff;
  box-shadow: var(--shadow-large);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-speaker {
  position: absolute;
}

.showcase-copy > p:not(.eyebrow) {
  max-width: 570px;
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  margin-top: 28px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 630;
}

.check-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--success);
}

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

.role-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.role-list span {
  color: var(--muted);
  font-size: 0.79rem;
}

.role-list strong {
  font-size: 0.9rem;
}

.jobsites-section .app-window-wide {
  max-width: 1020px;
  margin-inline: auto;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}

.pricing-layout > div:first-child > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
}

.pricing-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: #fff;
  box-shadow: var(--shadow);
}

.pricing-card > span:first-child {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
}

.pricing-card > strong {
  display: block;
  margin: 16px 0;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.pricing-card > strong small {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.pricing-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-cta {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--ink);
  color: #fff;
}

.product-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.product-cta-inner h2 {
  margin-bottom: 12px;
}

.product-cta-inner p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: #aaaab0;
}

/* Privacy */
.legal-hero {
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
  background: var(--panel-soft);
}

.legal-shell {
  max-width: 900px;
}

.legal-hero h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.legal-lede {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.15rem;
}

.last-updated {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  align-items: start;
  gap: clamp(45px, 9vw, 120px);
  max-width: 1000px;
}

.legal-summary {
  position: sticky;
  top: 100px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.legal-summary p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.legal-summary a,
.legal-copy a {
  color: #1d5b9f;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-copy section {
  padding: 0 0 34px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.legal-copy section:last-child {
  margin-bottom: 0;
}

.legal-copy h2 {
  margin-bottom: 17px;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.legal-copy p {
  color: #515154;
}

/* Admin */
.admin-page {
  min-height: 100vh;
  background: var(--panel-soft);
}

.admin-label {
  margin-left: auto;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 720;
  text-transform: uppercase;
}

.admin-main {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.admin-shell {
  max-width: 1100px;
}

.admin-heading {
  margin-bottom: 38px;
}

.admin-heading h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5.3rem);
}

.admin-heading > p:last-child {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.05rem;
}

.admin-login-card {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.7fr);
  align-items: end;
  gap: 36px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: #fff;
  box-shadow: var(--shadow);
}

.admin-login-card h2 {
  margin-bottom: 9px;
  font-size: 1.55rem;
}

.admin-login-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.admin-login-card .form-status {
  grid-column: 1 / -1;
}

.admin-dashboard {
  display: grid;
  gap: 24px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.summary-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.summary-grid span,
.summary-grid strong {
  display: block;
}

.summary-grid span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 650;
}

.summary-grid strong {
  margin-top: 10px;
  font-size: 2rem;
  letter-spacing: -0.045em;
}

.admin-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.compact-field {
  width: 220px;
}

.compact-field select {
  min-height: 42px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.admin-actions .button {
  min-height: 42px;
}

.text-button {
  padding: 9px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
}

.text-button:hover {
  color: var(--error);
}

.delete-signup-button {
  color: var(--error);
}

.table-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 930px;
  border-collapse: collapse;
  font-size: 0.78rem;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid #e8e8eb;
  text-align: left;
  white-space: nowrap;
}

th {
  background: #fafafa;
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: 0;
}

td:nth-child(3) {
  font-weight: 630;
}

.empty-state {
  margin: 0;
  padding: 45px 20px;
  color: var(--muted);
  text-align: center;
}

.admin-note {
  color: var(--muted);
  font-size: 0.73rem;
}

.status-page {
  min-height: 100vh;
  background: var(--panel-soft);
}

.status-page .header-inner {
  justify-content: space-between;
}

.status-main {
  display: grid;
  min-height: calc(100vh - 77px);
  place-items: center;
  padding: 48px 24px;
}

.status-card {
  width: min(640px, 100%);
  padding: clamp(34px, 7vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--panel);
  box-shadow: var(--shadow-large);
  text-align: center;
}

.status-card h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 7vw, 4rem);
}

.status-card > p:not(.eyebrow) {
  color: var(--muted);
}

.status-card .button-row {
  justify-content: center;
  margin-top: 30px;
}

.status-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
}

.status-icon-success {
  background: var(--success-soft);
  color: var(--success);
}

.status-icon-error {
  background: var(--error-soft);
  color: var(--error);
}

.status-card .status-fine-print {
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .home-hero-grid,
  .product-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .home-hero-grid {
    padding-bottom: 7rem;
  }

  .hero-visual,
  .product-hero-visual {
    width: min(760px, 100%);
  }

  .product-card {
    min-height: 500px;
  }

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

  .waitlist-copy {
    position: static;
    max-width: 720px;
  }

  .product-intro-grid {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .product-intro-grid > p:last-child {
    grid-column: 2;
  }
}

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

  .menu-button {
    display: block;
  }

  html:not(.js) .menu-button {
    display: none;
  }

  html:not(.js) .mobile-nav[hidden] {
    position: static;
    display: grid !important;
    box-shadow: none;
  }

  .split-heading,
  .company-grid,
  .pricing-layout,
  .legal-layout,
  .admin-login-card {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
    gap: 24px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card-copy,
  .product-card-reverse .product-card-copy {
    order: 1;
  }

  .product-card-image {
    order: 2;
    min-height: 460px;
  }

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

  .principles-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles-grid article:last-child {
    border-bottom: 0;
  }

  .principle-index {
    margin-bottom: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > div {
    grid-column: 1 / -1;
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .facts-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .feature-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid,
  .showcase-grid-reverse {
    grid-template-columns: 1fr;
  }

  .showcase-grid-reverse .showcase-copy {
    order: 2;
  }

  .showcase-grid-reverse .phone-preview {
    order: 1;
  }

  .product-cta-inner,
  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .legal-summary {
    position: static;
  }

  .summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-login-card {
    align-items: start;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

  .section {
    padding: 4.5rem 0;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .home-hero-grid,
  .product-hero-grid {
    gap: 42px;
    padding-block: 4rem 5.5rem;
  }

  .button-row,
  .card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .card-actions .button,
  .card-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .floating-note {
    right: 10px;
    bottom: -34px;
    max-width: calc(100% - 20px);
  }

  .trust-row {
    display: grid;
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
    padding-block: 22px;
  }

  .trust-row i {
    display: none;
  }

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

  .facts-grid div,
  .facts-grid div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .facts-grid div:last-child {
    border-bottom: 0;
  }

  .product-card-copy {
    padding: 30px 24px 36px;
  }

  .card-meta {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .product-card-image {
    min-height: 390px;
    padding-top: 28px;
  }

  .product-card-image img {
    height: 420px;
  }

  .product-card-image-wide {
    min-height: 300px;
    padding: 35px 0 35px 22px;
  }

  .two-columns,
  .feature-card-grid,
  .product-intro-grid,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .product-intro-grid {
    gap: 18px;
  }

  .product-intro-grid > p:last-child {
    grid-column: auto;
  }

  .feature-card-large {
    grid-column: auto;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card .feature-num {
    margin-bottom: 38px;
  }

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

  .phone-preview {
    min-height: 510px;
    padding-inline: 20px;
  }

  .phone-frame {
    height: 480px;
  }

  .product-cta-inner .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-main > div {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .admin-login-card,
  .admin-toolbar {
    padding: 22px;
  }

  .admin-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .admin-actions .text-button {
    grid-column: 1 / -1;
  }

  .compact-field {
    width: 100%;
  }
}

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

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