:root {
  --paper: #f6f6f7;
  --cream: #ffffff;
  --ink: #1c1c1c;
  --muted: #5e5e5e;
  --line: #e4e4e6;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --shadow: 0 0 0 1px rgb(28 28 28 / 0.06), 0 1px 2px rgb(28 28 28 / 0.04);
  --shadow-hover: 0 0 0 1px rgb(28 28 28 / 0.1);
  --lift: 0 16px 40px -20px rgb(28 28 28 / 0.2);
  --font: "Figtree", "Segoe UI", system-ui, sans-serif;
  --pu-bg: #f6f4ef;
  --pu-fg: #1a1f1c;
  --pu-muted: #6b706c;
  --pu-accent: #3f5c51;
  --pu-line: #e4dfd6;
  --pu-bezel: #1a1c1e;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
}

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

button,
[role="button"] {
  font-family: inherit;
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-wrap: balance;
  margin: 0;
}

p {
  margin: 0;
  text-wrap: pretty;
}

.wrap {
  width: min(72rem, calc(100% - 2rem));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .wrap {
    width: min(72rem, calc(100% - 3rem));
  }
}

.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 50;
  background: var(--ink);
  color: var(--cream);
  padding: 8px 12px;
  border-radius: 8px;
}

header.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklab, var(--paper) 90%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.wordmark .lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wordmark span.name {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.wordmark span.ndis {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: none;
  gap: 24px;
}
.nav-links a {
  font-size: 0.875rem;
  color: var(--muted);
}
.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  display: none;
  gap: 8px;
}

.menu-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
}
.menu-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 16px;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: flex;
  height: 44px;
  align-items: center;
}
.mobile-menu .stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

@media (min-width: 768px) {
  .nav-links,
  .nav-cta {
    display: flex;
    align-items: center;
  }
  .menu-btn,
  .mobile-menu {
    display: none !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 999px;
  transition: opacity 150ms var(--ease), background 150ms var(--ease);
}
.btn:active {
  transform: scale(0.96);
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: #333;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.btn-outline:hover {
  background: var(--cream);
}
.btn-invert {
  background: var(--cream);
  color: var(--ink);
}
.btn-ghost {
  background: transparent;
  color: inherit;
}
.btn-ghost:hover {
  background: rgb(242 240 235 / 0.1);
}
.btn-block {
  width: 100%;
  border-radius: var(--radius);
}

.hero {
  padding: 64px 0;
}
.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.75rem);
}
.hero .lede {
  margin-top: 20px;
  max-width: 28rem;
  color: var(--muted);
}
.hero .btn {
  margin-top: 32px;
}

@media (min-width: 1024px) {
  .hero {
    padding: 96px 0;
  }
  .hero-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.monitor {
  max-width: 42rem;
  margin-inline: auto;
}
.monitor-bezel {
  background: var(--pu-bezel);
  border-radius: 18px 18px 6px 6px;
  padding: 6px 6px 0;
  box-shadow: var(--lift);
}
.monitor-screen {
  background: var(--pu-bg);
  color: var(--pu-fg);
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}
.monitor-chin {
  display: flex;
  height: 18px;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, var(--pu-bezel) 82%, white);
}
.monitor-camera {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #0e0f10;
}
.monitor-neck {
  width: 5rem;
  height: 2.35rem;
  margin-inline: auto;
  background: var(--pu-bezel);
  clip-path: polygon(30% 0, 70% 0, 100% 100%, 0 100%);
}
.monitor-foot {
  width: 11rem;
  height: 0.45rem;
  margin-inline: auto;
  border-radius: 999px;
  background: var(--pu-bezel);
}
.monitor-desk {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 32px;
  margin-top: 24px;
}
.monitor-keyboard {
  width: 13.5rem;
  height: 0.5rem;
  border-radius: 4px;
  background: color-mix(in oklab, var(--pu-bezel) 78%, white);
}
.monitor-mouse {
  width: 1.35rem;
  height: 0.7rem;
  border-radius: 999px;
  background: color-mix(in oklab, var(--pu-bezel) 70%, white);
}

.screen-bar,
.screen-search,
.screen-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--pu-line);
  font-size: 0.75rem;
  color: var(--pu-muted);
}
.screen-bar strong {
  font-size: 0.875rem;
  color: var(--pu-fg);
  font-weight: 500;
}
.screen-tabs {
  display: none;
  gap: 16px;
}
.pill-on {
  background: var(--pu-fg);
  color: var(--pu-bg);
  border-radius: 999px;
  padding: 2px 8px;
}
.screen-search {
  justify-content: flex-start;
}
.screen-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
  text-align: left;
}
.screen-table th {
  font-weight: 500;
  color: var(--pu-muted);
  padding: 8px 16px;
}
.screen-table td {
  padding: 8px 16px;
  border-top: 1px solid var(--pu-line);
}
.screen-table td.accent {
  color: var(--pu-accent);
}
.screen-foot {
  border-bottom: 0;
  border-top: 1px solid var(--pu-line);
}
.hide-sm {
  display: none;
}

@media (min-width: 640px) {
  .screen-tabs,
  .hide-sm {
    display: flex;
  }
  td.hide-sm,
  th.hide-sm {
    display: table-cell;
  }
}

.trust {
  border-top: 1px solid var(--line);
  background: var(--cream);
  text-align: center;
  padding: 24px 0 32px;
}
.trust p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.trust ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

section.band {
  border-top: 1px solid var(--line);
  padding: 64px 0;
}
@media (min-width: 1024px) {
  section.band {
    padding: 96px 0;
  }
}
section.band.alt {
  background: var(--cream);
}

.kicker {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
section.band h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.sub {
  margin-top: 20px;
  color: var(--muted);
  max-width: 36rem;
}

.cards {
  display: grid;
  gap: 16px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .cards.three {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards.two {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cards.dir {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card h3 {
  margin-top: 16px;
  font-size: 1.5rem;
}
.card p {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--muted);
}
.icon {
  width: 20px;
  height: 20px;
  color: var(--ink);
}

.split {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .split {
    grid-template-columns: 5fr 7fr;
  }
  .split.legal {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .split.faq {
    grid-template-columns: 4fr 8fr;
  }
}

.steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}
.step-btn {
  width: 100%;
  display: flex;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: var(--radius-lg);
  padding: 12px;
}
.step-btn.active {
  background: var(--paper);
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  background: rgb(28 28 28 / 0.06);
  color: var(--muted);
  flex-shrink: 0;
}
.step-btn.active .step-num {
  background: var(--ink);
  color: var(--cream);
}
.step-title {
  font-weight: 500;
}
.photo {
  overflow: hidden;
  border-radius: var(--radius-2xl);
}
.photo img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}
.step-panel {
  margin-top: 16px;
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow);
}
.rubric {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}
@media (min-width: 640px) {
  .rubric {
    grid-template-columns: repeat(5, 1fr);
  }
}
.rubric div {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 8px 12px;
}
.rubric dt {
  font-size: 0.75rem;
  color: var(--muted);
}
.rubric dd {
  margin: 0;
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
}

.search-wrap {
  position: relative;
  margin-top: 32px;
}
.search-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--muted);
  pointer-events: none;
}
input[type="search"],
input[type="text"],
input[type="email"] {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--cream);
  padding: 0 14px;
  font: inherit;
  font-size: 0.875rem;
  color: var(--ink);
  box-shadow: var(--shadow);
  outline: none;
}
.search-wrap input {
  padding-left: 40px;
}
input:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0 4px;
}
.chip {
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--cream);
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.chip.on {
  background: var(--ink);
  color: var(--cream);
  box-shadow: none;
}

.count {
  margin: 16px 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.worker {
  width: 100%;
  text-align: left;
  background: var(--cream);
  border: 0;
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.worker:hover {
  box-shadow: var(--shadow-hover);
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgb(28 28 28 / 0.08);
  font-size: 0.875rem;
  font-weight: 500;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgb(28 28 28 / 0.08);
}
.worker .top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.worker .name {
  margin-top: 16px;
  font-weight: 500;
}
.worker .meta {
  font-size: 0.875rem;
  color: var(--muted);
}
.worker .stats {
  margin-top: 12px;
  font-size: 0.875rem;
}

.price-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
@media (min-width: 640px) {
  .price-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--paper);
  padding: 4px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: min(20rem, 100%);
}
.seg button {
  height: 40px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  font-weight: 500;
}
.seg button.on {
  background: var(--ink);
  color: var(--cream);
}
.toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 44px;
  padding: 0 8px 0 16px;
  background: var(--paper);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.875rem;
}
.switch {
  position: relative;
  width: 40px;
  height: 24px;
  border-radius: 999px;
  background: var(--line);
}
.toggle.on .switch {
  background: var(--ink);
}
.knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--cream);
  transition: transform 150ms var(--ease);
}
.toggle.on .knob {
  transform: translateX(16px);
}

.tiers {
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 1024px) {
  .tiers.three {
    grid-template-columns: repeat(3, 1fr);
  }
  .tiers.two {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tier {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  padding: 24px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.tier.featured {
  background: var(--ink);
  color: var(--cream);
  box-shadow: none;
}
.tier .price {
  margin-top: 16px;
  font-size: 2.25rem;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.tier .period {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}
.tier .blurb {
  margin-top: 12px;
  font-size: 0.875rem;
  opacity: 0.75;
}
.tier ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.875rem;
  flex: 1;
}
.tier li {
  display: flex;
  gap: 8px;
}
.tier .btn {
  margin-top: 32px;
}
.tier.featured .btn {
  background: var(--cream);
  color: var(--ink);
}

.legal ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--muted);
}
.legal strong {
  color: var(--ink);
  font-weight: 500;
}
.disclaimer {
  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--muted);
}
.shot {
  overflow: hidden;
  border-radius: var(--radius-2xl);
}
.shot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
  transition: transform 200ms var(--ease);
}
.faq details[open] summary svg {
  transform: rotate(180deg);
}
.faq details p {
  padding-bottom: 20px;
  font-size: 0.875rem;
  color: var(--muted);
}

.cta {
  position: relative;
  overflow: hidden;
  color: #f2f0eb;
  background: #16181b;
  text-align: center;
  padding: 96px 0;
}
.cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.cta .scrim {
  position: absolute;
  inset: 0;
  background: rgb(22 24 27 / 0.55);
}
.cta .inner {
  position: relative;
  max-width: 48rem;
  margin-inline: auto;
  width: min(48rem, calc(100% - 2rem));
}
.cta .kicker {
  color: rgb(242 240 235 / 0.7);
}
.cta h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.cta .sub {
  margin-inline: auto;
  color: rgb(242 240 235 / 0.75);
}
.cta-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}

footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.foot {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .foot {
    flex-direction: row;
    justify-content: space-between;
  }
}
.cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cols p.label {
  font-weight: 500;
}
.cols ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}
.cols a:hover {
  color: var(--ink);
}
.copy {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.dialog {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(40rem, calc(100% - 1.5rem));
}
.dialog::backdrop {
  background: rgb(28 28 28 / 0.45);
}
.dialog-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--lift);
}
.dialog-card h2 {
  font-size: 1.5rem;
}
.dialog-card .desc {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--muted);
}
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}
.err {
  color: #8a3a32;
  font-size: 0.875rem;
}
.ok {
  display: none;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn:active {
    transform: none;
  }
}
