@font-face {
  font-family: "Archivo Black";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/archivo-black-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Commissioner";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/commissioner-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: "Commissioner";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/commissioner-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --stone: #f4f2eb;
  --stone-deep: #ebe7dc;
  --paper: #fbfbf8;
  --paper-pure: #ffffff;
  --ink: #29272c;
  --muted: #6f6c73;
  --line: #d9d4ca;
  --line-strong: #c8c1b4;
  --sage: #789083;
  --sage-deep: #3d5b4e;
  --sage-dark: #2f473d;
  --sage-soft: #e4ede8;
  --sage-mist: #edf2ef;
  --white: #fff;
  --shell: 1180px;
  --header-height: 82px;
  --shadow-soft: 0 22px 60px rgba(49, 45, 40, 0.10), 0 2px 5px rgba(49, 45, 40, 0.05);
  --shadow-control: 0 2px 0 rgba(27, 43, 36, 0.35);
  --paper-drift: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--stone);
  color: var(--ink);
  font-family: "Commissioner", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--stone);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  text-wrap: balance;
}

section[id] {
  scroll-margin-top: 70px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 650;
  transform: translateY(calc(-100% - 24px));
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.legal-page .site-header {
  height: 70px;
  border-color: rgba(200, 193, 180, 0.78);
  background: rgba(244, 242, 235, 0.92);
  box-shadow: 0 8px 24px rgba(49, 45, 40, 0.035);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header-inner {
  display: flex;
  width: min(calc(100% - 48px), var(--shell));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: 22px;
  letter-spacing: -0.045em;
}

.site-brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  overflow: visible;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #504d53;
  font-size: 14px;
  font-weight: 600;
}

.site-navigation > a:not(.header-action) {
  position: relative;
  padding: 10px 0;
}

.site-navigation > a:not(.header-action)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--sage-deep);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-navigation > a:not(.header-action):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-navigation > a[aria-current="page"] {
  color: var(--sage-deep);
}

.site-navigation > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid var(--sage-deep);
  border-radius: 9px;
  color: var(--white);
  background: var(--sage-deep);
  box-shadow: var(--shadow-control);
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.header-action:hover {
  background: var(--sage-dark);
  box-shadow: 0 3px 0 rgba(27, 43, 36, 0.42);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 2px 0 10px;
  border: 0;
  cursor: pointer;
  background: transparent;
}

.nav-toggle-label {
  font-size: 13px;
  font-weight: 650;
}

.nav-toggle-lines {
  display: grid;
  width: 28px;
  gap: 6px;
}

.nav-toggle-lines i {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--stone);
}

.hero::before {
  position: absolute;
  width: 52vw;
  height: 52vw;
  max-width: 760px;
  max-height: 760px;
  border: 1px solid rgba(120, 144, 131, 0.18);
  border-radius: 50%;
  content: "";
  top: 7vh;
  right: -17vw;
}

.hero-inner {
  position: relative;
  display: grid;
  width: min(calc(100% - 48px), var(--shell));
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.91fr) minmax(450px, 1.09fr);
  align-items: center;
  gap: clamp(32px, 5vw, 78px);
  margin: 0 auto;
  padding: calc(var(--header-height) + 62px) 0 74px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--sage-deep);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
}

.hero-wordmark {
  display: block;
  margin: 0 0 25px -5px;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: clamp(76px, 9.3vw, 142px);
  font-weight: 400;
  letter-spacing: -0.072em;
  line-height: 0.78;
}

.hero-heading {
  display: block;
  max-width: 590px;
  font-size: clamp(39px, 4.1vw, 61px);
  font-weight: 620;
  letter-spacing: -0.048em;
  line-height: 0.99;
}

.hero-intro {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 460;
  line-height: 1.58;
}

.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 680;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button span,
.text-link span,
.header-action span {
  display: inline-block;
  transition: transform 160ms ease;
}

.button-primary {
  border-color: var(--sage-deep);
  color: var(--white);
  background: var(--sage-deep);
  box-shadow: var(--shadow-control);
}

.button-primary:hover {
  background: var(--sage-dark);
  box-shadow: 0 4px 0 rgba(27, 43, 36, 0.42);
  transform: translateY(-2px);
}

.button-primary:hover span,
.header-action:hover span {
  transform: translate(2px, -2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0 5px;
  border-bottom: 1px solid var(--sage);
  color: var(--sage-deep);
  font-size: 14px;
  font-weight: 680;
}

.text-link:hover span {
  transform: translateY(3px);
}

.final-actions .text-link:hover span {
  transform: translateX(3px);
}

.hero-note {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 540;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-width: 0;
  height: min(640px, 68vh);
  min-height: 560px;
}

.hero-visual-content {
  position: absolute;
  inset: 0;
  transform: translateY(var(--paper-drift));
  transition: transform 100ms linear;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(120, 144, 131, 0.28);
  border-radius: 50%;
}

.hero-orbit-large {
  width: 520px;
  height: 520px;
  top: 38px;
  right: -110px;
}

.hero-orbit-small {
  width: 360px;
  height: 360px;
  right: -24px;
  bottom: 8px;
}

.intake-panel,
.intake-panel-shadow,
.package-panel {
  position: absolute;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
}

.intake-panel-shadow {
  z-index: 0;
  top: 135px;
  left: 1%;
  width: 54%;
  height: 350px;
  border-color: transparent;
  background: rgba(61, 91, 78, 0.07);
  filter: blur(2px);
  transform: rotate(-6deg) translate(-8px, 14px);
}

.intake-panel {
  z-index: 1;
  top: 112px;
  left: 0;
  width: 56%;
  min-height: 350px;
  padding: 25px 24px 22px;
  background: var(--paper-pure);
  box-shadow: 0 18px 45px rgba(49, 45, 40, 0.08);
  transform: rotate(-3deg);
}

.intake-heading {
  display: grid;
  gap: 8px;
}

.intake-heading span,
.package-title span {
  color: var(--sage-deep);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intake-heading strong {
  font-size: 25px;
  font-weight: 630;
  letter-spacing: -0.035em;
}

.intake-files {
  display: grid;
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.intake-file {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  border-bottom: 1px solid var(--line);
}

.intake-file > i {
  display: grid;
  width: 36px;
  height: 39px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: var(--sage-deep);
  background: var(--sage-mist);
  font-size: 7px;
  font-style: normal;
  font-weight: 780;
  letter-spacing: 0.06em;
}

.intake-file > span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.intake-file strong {
  overflow: hidden;
  font-size: 11px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.intake-file small {
  color: var(--muted);
  font-size: 8px;
}

.intake-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--sage-deep);
  font-size: 8px;
  font-weight: 680;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.intake-status i,
.package-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

.organize-route {
  position: absolute;
  z-index: 4;
  top: 31px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-deep);
  transform: translateX(-50%);
}

.organize-route span {
  font-size: 24px;
  line-height: 0.8;
}

.organize-route small {
  order: -1;
  font-size: 7px;
  font-weight: 720;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-panel {
  z-index: 2;
  top: 72px;
  right: 0;
  width: 59%;
  min-height: 430px;
  padding: 28px 27px 24px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
}

.package-topline,
.package-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 8px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-title {
  display: grid;
  gap: 10px;
  margin-top: 49px;
}

.package-title strong {
  font-size: clamp(27px, 2.55vw, 36px);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.package-files {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.package-files > div {
  display: flex;
  min-height: 49px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.package-files span {
  font-size: 11px;
  font-weight: 620;
}

.package-files small {
  color: var(--muted);
  font-size: 9px;
}

.package-status {
  margin-top: 21px;
  color: var(--sage-deep);
}

.package-status span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.section-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
}

.section-heading h2,
.hiring-copy h2,
.audience-intro h2,
.trust-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 77px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.99;
}

.flow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(52px, 6vw, 72px);
  border-top: 1px solid var(--line-strong);
}

.flow-step {
  position: relative;
  min-height: 185px;
  padding: 36px clamp(20px, 3vw, 44px) 0 0;
}

.flow-step:not(:last-child) {
  border-right: 1px solid var(--line);
  margin-right: clamp(20px, 3vw, 44px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 0;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--sage-deep);
  background: var(--paper);
  font-size: 9px;
  font-weight: 750;
}

.flow-step h3 {
  margin: 0 0 13px;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 620;
}

.flow-step p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.workspace-section {
  padding: clamp(100px, 10vw, 145px) 0 clamp(90px, 9vw, 130px);
  overflow: hidden;
  background: var(--stone);
}

.workspace-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: 70px;
}

.workspace-heading > p {
  max-width: 385px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.product-preview {
  width: 100%;
  margin-top: clamp(50px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 19px;
  background: var(--paper);
  box-shadow: 0 35px 80px rgba(49, 45, 40, 0.12), 0 2px 5px rgba(49, 45, 40, 0.06);
}

.preview-browser-bar {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  background: #eeebe3;
}

.preview-browser-bar > span {
  width: 9px;
  height: 9px;
  border: 1px solid #aaa398;
  border-radius: 50%;
  background: #ddd8ce;
}

.preview-browser-bar small {
  margin-left: 12px;
  color: #88837b;
  font-size: 10px;
  letter-spacing: 0.02em;
}

.preview-app {
  min-width: 0;
  background: #f7f5ef;
}

.preview-app-header {
  display: grid;
  height: 82px;
  grid-template-columns: 165px 1fr 175px;
  align-items: center;
  gap: 22px;
  padding: 0 29px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: 19px;
  letter-spacing: -0.05em;
}

.preview-brand i {
  display: grid;
  width: 36px;
  height: 40px;
  place-items: center;
  border: 1.5px solid var(--sage-deep);
  border-radius: 10px;
  color: var(--sage-deep);
  background: var(--paper);
  font-style: normal;
}

.preview-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 25px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.preview-nav b {
  color: var(--sage-deep);
}

.preview-account {
  display: grid;
  justify-items: end;
  gap: 3px;
}

.preview-account strong {
  font-size: 11px;
}

.preview-account small {
  color: var(--muted);
  font-size: 9px;
}

.preview-body {
  min-height: 595px;
  padding: 30px 42px 56px;
}

.preview-breadcrumb {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.preview-breadcrumb span {
  margin: 0 8px;
  color: var(--line-strong);
}

.preview-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 42px;
}

.preview-title-row small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.preview-title-row h3 {
  margin: 7px 0 0;
  font-size: 35px;
  font-weight: 620;
}

.preview-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 17px;
  border: 1px solid var(--sage-deep);
  border-radius: 8px;
  color: var(--white);
  background: var(--sage-deep);
  box-shadow: 0 2px 0 rgba(27, 43, 36, 0.3);
  font-size: 11px;
  font-weight: 670;
}

.preview-panel {
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 8px 20px rgba(49, 45, 40, 0.045);
}

.preview-panel-heading,
.preview-package {
  display: grid;
  align-items: center;
}

.preview-panel-heading {
  min-height: 64px;
  grid-template-columns: 1fr auto;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}

.preview-panel-heading strong {
  font-size: 15px;
}

.preview-panel-heading span {
  color: var(--muted);
  font-size: 10px;
}

.preview-package {
  min-height: 90px;
  grid-template-columns: 60px 1fr auto;
  gap: 17px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}

.preview-package:last-child {
  border-bottom: 0;
}

.preview-package.is-current {
  background: var(--sage-mist);
}

.preview-date {
  color: var(--sage-deep);
  font-size: 16px;
  font-weight: 720;
  line-height: 1;
}

.preview-date small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
}

.preview-package-copy {
  display: grid;
  gap: 5px;
}

.preview-package-copy strong {
  font-size: 13px;
}

.preview-package-copy small {
  color: var(--muted);
  font-size: 9px;
}

.preview-package-copy em {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 999px;
  color: #76582c;
  background: #f3ead9;
  font-size: 8px;
  font-style: normal;
  font-weight: 680;
}

.preview-state {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--sage-deep);
  background: var(--sage-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.preview-state-neutral {
  color: var(--muted);
  background: #efede7;
}

.preview-caption {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.hiring-section {
  padding: clamp(105px, 11vw, 160px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hiring-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(65px, 8vw, 110px);
}

.hiring-copy h2 {
  max-width: 590px;
  font-size: clamp(45px, 5.5vw, 72px);
}

.hiring-intro {
  max-width: 570px;
  margin: 31px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hiring-points {
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.hiring-points li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 15px;
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--line);
}

.hiring-points li > span {
  padding-top: 3px;
  color: var(--sage-deep);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.06em;
}

.hiring-points p {
  display: grid;
  gap: 5px;
  margin: 0;
}

.hiring-points strong {
  font-size: 15px;
  font-weight: 650;
}

.hiring-points small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.hiring-demo {
  position: relative;
  min-height: 575px;
  overflow: hidden;
  border: 1px solid #cfd8d2;
  border-radius: 25px;
  background: linear-gradient(145deg, #eff3f0 0%, #e4ebe7 100%);
  box-shadow: 0 28px 68px rgba(49, 45, 40, 0.11), 0 2px 5px rgba(49, 45, 40, 0.05);
}

.hiring-demo::before,
.hiring-demo::after {
  position: absolute;
  border: 1px solid rgba(61, 91, 78, 0.13);
  border-radius: 50%;
  content: "";
}

.hiring-demo::before {
  width: 420px;
  height: 420px;
  top: -250px;
  right: -165px;
}

.hiring-demo::after {
  width: 290px;
  height: 290px;
  right: -65px;
  bottom: -185px;
}

.hiring-demo-content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 575px;
  grid-template-columns: minmax(0, 1.08fr) 62px minmax(0, 0.92fr);
  align-items: center;
  padding: 40px 30px;
}

.hiring-form-card,
.xlsx-card,
.registry-card {
  border: 1px solid var(--line-strong);
  background: var(--paper);
  box-shadow: 0 16px 35px rgba(49, 45, 40, 0.09);
}

.hiring-form-card {
  min-width: 0;
  padding: 24px 22px 21px;
  border-radius: 17px;
  transform: rotate(-1.2deg);
}

.hiring-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--sage-deep);
  font-size: 7px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hiring-card-topline small {
  overflow: hidden;
  color: var(--muted);
  font-size: 6px;
  font-weight: 650;
  letter-spacing: 0;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.hiring-form-card h3 {
  margin: 23px 0 27px;
  font-size: clamp(22px, 2.25vw, 29px);
  font-weight: 630;
  line-height: 1.04;
}

.hiring-form-fields {
  display: grid;
  gap: 10px;
}

.hiring-form-fields > div,
.hiring-field-pair > span {
  display: grid;
  gap: 5px;
}

.hiring-form-fields > div:not(.hiring-field-pair),
.hiring-field-pair > span {
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f7f2;
}

.hiring-field-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.hiring-form-fields small {
  color: var(--muted);
  font-size: 6px;
}

.hiring-form-fields strong {
  overflow: hidden;
  font-size: 9px;
  font-weight: 640;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hiring-attachments {
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

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

.hiring-attachments i {
  display: grid;
  width: 31px;
  height: 36px;
  place-items: center;
  border: 1px solid #9caaa3;
  border-radius: 6px;
  color: var(--sage-deep);
  background: var(--sage-mist);
  font-size: 6px;
  font-style: normal;
  font-weight: 760;
}

.hiring-attachments span {
  display: grid;
  gap: 3px;
}

.hiring-attachments strong {
  font-size: 9px;
  font-weight: 650;
}

.hiring-attachments small {
  color: var(--muted);
  font-size: 7px;
}

.hiring-submit {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 19px;
  color: var(--sage-deep);
  font-size: 7px;
  font-weight: 720;
}

.hiring-submit i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-soft);
}

.hiring-route {
  display: grid;
  justify-items: center;
  gap: 2px;
  color: var(--sage-deep);
}

.hiring-route span {
  font-size: 25px;
  font-weight: 450;
}

.hiring-route small {
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: 7px;
  letter-spacing: -0.03em;
}

.hiring-results {
  display: grid;
  gap: 15px;
  transform: rotate(1.1deg);
}

.xlsx-card {
  display: grid;
  justify-items: center;
  padding: 28px 17px 25px;
  border-radius: 16px;
  text-align: center;
}

.xlsx-icon {
  display: grid;
  width: 65px;
  height: 76px;
  place-items: center;
  border: 1px solid #8da095;
  border-radius: 11px;
  color: var(--paper);
  background: var(--sage-deep);
}

.xlsx-icon span {
  align-self: end;
  font-size: 27px;
  font-weight: 530;
  line-height: 1;
}

.xlsx-icon small {
  align-self: start;
  margin-top: 3px;
  font-size: 6px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.xlsx-card p {
  display: grid;
  justify-items: center;
  gap: 6px;
  max-width: 100%;
  margin: 19px 0 0;
}

.xlsx-card p small {
  color: var(--muted);
  font-size: 7px;
}

.xlsx-card p strong {
  max-width: 100%;
  overflow: hidden;
  font-size: 12px;
  font-weight: 670;
  text-overflow: ellipsis;
}

.xlsx-card p em {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--sage-deep);
  background: var(--sage-soft);
  font-size: 7px;
  font-style: normal;
  font-weight: 700;
}

.registry-card {
  display: grid;
  grid-template-columns: 29px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px 13px;
  border-radius: 12px;
}

.registry-icon {
  display: flex;
  height: 29px;
  align-items: end;
  justify-content: center;
  gap: 2px;
  padding: 6px 5px;
  border-radius: 7px;
  background: var(--sage-mist);
}

.registry-icon i {
  width: 3px;
  border-radius: 2px;
  background: var(--sage);
}

.registry-icon i:nth-child(1) { height: 8px; }
.registry-icon i:nth-child(2) { height: 15px; }
.registry-icon i:nth-child(3) { height: 11px; }

.registry-card p {
  display: grid;
  gap: 3px;
  min-width: 0;
  margin: 0;
}

.registry-card p small {
  overflow: hidden;
  color: var(--muted);
  font-size: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.registry-card p strong {
  font-size: 9px;
  font-weight: 680;
}

.registry-card > b {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--sage-deep);
  font-size: 8px;
}

.audience-section {
  padding: clamp(100px, 11vw, 160px) 0;
  color: #f8f7f3;
  background: var(--sage-dark);
}

.audience-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(65px, 10vw, 145px);
}

.eyebrow-light {
  color: #b8c8c0;
}

.audience-intro h2 {
  max-width: 500px;
  font-size: clamp(44px, 5.4vw, 70px);
}

.audience-columns {
  display: grid;
  border-top: 1px solid rgba(248, 247, 243, 0.28);
}

.audience-columns article {
  padding: 39px 0 44px;
  border-bottom: 1px solid rgba(248, 247, 243, 0.22);
}

.audience-label {
  color: #b8c8c0;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.audience-columns h3 {
  max-width: 650px;
  margin: 19px 0 27px;
  font-size: clamp(29px, 3.5vw, 43px);
  font-weight: 570;
  line-height: 1.05;
}

.audience-columns ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-columns li {
  position: relative;
  padding-left: 17px;
  color: #cbd5d0;
  font-size: 12px;
  line-height: 1.55;
}

.audience-columns li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #91aa9e;
  content: "";
}

.trust-section {
  padding: clamp(100px, 10vw, 145px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: start;
  gap: clamp(65px, 9vw, 125px);
}

.trust-copy {
  position: sticky;
  top: 120px;
}

.trust-copy h2 {
  max-width: 540px;
  font-size: clamp(43px, 5.1vw, 68px);
}

.trust-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.trust-list li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
}

.trust-list li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--sage-deep);
  font-size: 9px;
  font-weight: 750;
}

.trust-list div {
  display: grid;
  gap: 7px;
}

.trust-list strong {
  font-size: 22px;
  font-weight: 630;
  letter-spacing: -0.025em;
}

.trust-list p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.final-cta {
  position: relative;
  padding: clamp(115px, 14vw, 205px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--stone);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-left: max(24px, calc((100% - var(--shell)) / 2));
}

.final-cta h2 {
  max-width: 820px;
  font-size: clamp(49px, 7vw, 94px);
}

.final-cta-content > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;

}

.final-cta-sheet {
  position: absolute;
  width: clamp(260px, 29vw, 410px);
  height: 480px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  right: clamp(28px, 4vw, 68px);
  bottom: -348px;
}

.final-cta-sheet-back {
  background: var(--sage-soft);
  transform: rotate(-9deg) translate(-56px, -12px);
}

.final-cta-sheet-front {
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transform: rotate(5deg);
}

.site-footer {
  padding: 42px 0 34px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer-inner {
  display: grid;
  width: min(calc(100% - 48px), var(--shell));
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 38px;
  margin: 0 auto;
}

.footer-brand {
  font-size: 19px;
}

.footer-brand .site-brand-mark {
  width: 36px;
  height: 36px;
}

.site-footer p,
.site-footer small {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  font-size: 11px;
  font-weight: 620;
}

.site-footer nav a:hover {
  color: var(--sage-deep);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js .hero-eyebrow,
.js .hero-wordmark,
.js .hero-heading,
.js .hero-intro,
.js .hero-actions,
.js .hero-note,
.js .hero-visual {
  opacity: 0;
  transform: translateY(15px);
}

.js.page-loaded .hero-eyebrow,
.js.page-loaded .hero-wordmark,
.js.page-loaded .hero-heading,
.js.page-loaded .hero-intro,
.js.page-loaded .hero-actions,
.js.page-loaded .hero-note,
.js.page-loaded .hero-visual {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js.page-loaded .hero-wordmark { transition-delay: 60ms; }
.js.page-loaded .hero-heading { transition-delay: 120ms; }
.js.page-loaded .hero-intro { transition-delay: 190ms; }
.js.page-loaded .hero-actions { transition-delay: 250ms; }
.js.page-loaded .hero-note { transition-delay: 290ms; }
.js.page-loaded .hero-visual { transition-delay: 170ms; }

/* Trust center */
.legal-page {
  background: var(--paper);
}

.legal-main {
  background: var(--paper);
}

.legal-hero {
  padding: 145px 0 92px;
  border-bottom: 1px solid var(--line);
  background: var(--stone);
}

.legal-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  align-items: end;
  gap: clamp(70px, 10vw, 145px);
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 56px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 620;
}

.legal-back-link:hover {
  color: var(--sage-deep);
}

.legal-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(58px, 7.6vw, 100px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.legal-hero-summary {
  max-width: 620px;
  margin: 31px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.legal-updated {
  margin: 30px 0 0;
  color: var(--sage-deep);
  font-size: 11px;
  font-weight: 680;
}

.legal-hero-art {
  position: relative;
  display: grid;
  min-height: 310px;
  align-content: space-between;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transform: rotate(2.5deg);
}

.legal-hero-art::before,
.legal-hero-art::after {
  position: absolute;
  border: 1px solid rgba(61, 91, 78, 0.17);
  border-radius: 50%;
  content: "";
}

.legal-hero-art::before {
  width: 240px;
  height: 240px;
  top: 44px;
  right: -115px;
}

.legal-hero-art::after {
  width: 150px;
  height: 150px;
  right: -32px;
  bottom: -78px;
}

.legal-hero-index,
.legal-hero-art-label,
.legal-hero-symbol {
  position: relative;
  z-index: 1;
}

.legal-hero-index {
  color: var(--sage-deep);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.09em;
}

.legal-hero-symbol {
  display: grid;
  width: 82px;
  height: 92px;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 18px;
  color: var(--paper);
  background: var(--sage-deep);
  font-size: 42px;
  font-weight: 450;
  transform: rotate(-3deg);
}

.legal-hero-art-privacy .legal-hero-symbol {
  color: var(--sage-deep);
  background: var(--sage-soft);
}

.legal-hero-art-terms .legal-hero-symbol {
  color: var(--sage-deep);
  background: var(--paper);
}

.legal-hero-art-label {
  max-width: 150px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.legal-highlights {
  border-bottom: 1px solid var(--line);
  background: var(--stone);
}

.legal-highlights-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.legal-highlights a {
  display: grid;
  align-content: start;
  min-height: 178px;
  padding: 35px clamp(24px, 3vw, 42px) 32px 0;
  border-right: 1px solid var(--line);
}

.legal-highlights a:not(:first-child) {
  padding-left: clamp(24px, 3vw, 42px);
}

.legal-highlights a:last-child {
  border-right: 0;
}

.legal-highlights a > span {
  color: var(--sage-deep);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.legal-highlights strong {
  margin-top: 17px;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.legal-highlights small {
  max-width: 290px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.legal-highlights a:hover strong {
  color: var(--sage-deep);
}

.legal-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 735px);
  justify-content: space-between;
  gap: clamp(70px, 10vw, 135px);
  padding-top: 100px;
  padding-bottom: 145px;
}

.legal-toc {
  position: sticky;
  top: 110px;
  align-self: start;
}

.legal-toc > strong {
  color: var(--muted);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.legal-toc a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.legal-toc a:hover {
  color: var(--ink);
}

.legal-document {
  min-width: 0;
}

.legal-intro {
  margin: 0 0 60px;
  color: var(--ink);
  font-size: clamp(23px, 2.5vw, 31px);
  font-weight: 520;
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.legal-section {
  scroll-margin-top: 105px;
  padding: 48px 0 52px;
  border-top: 1px solid var(--line-strong);
}

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

.legal-section h2 {
  max-width: 660px;
  margin: 0 0 24px;
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 610;
  letter-spacing: -0.045em;
  line-height: 1;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.legal-section p {
  margin: 0 0 17px;
}

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

.legal-section ul {
  margin: 20px 0 22px;
  padding-left: 22px;
}

.legal-section li {
  margin: 8px 0;
  padding-left: 5px;
}

.legal-section strong {
  font-weight: 680;
}

.legal-section a {
  color: var(--sage-deep);
  font-weight: 620;
  text-decoration: underline;
  text-decoration-color: rgba(61, 91, 78, 0.38);
  text-underline-offset: 3px;
}

.legal-section a:hover {
  text-decoration-color: currentColor;
}

.legal-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 4px 0 0;
  border-top: 1px solid var(--line);
}

.legal-facts > div {
  display: grid;
  align-content: start;
  min-height: 105px;
  gap: 8px;
  padding: 22px 20px 22px 0;
  border-bottom: 1px solid var(--line);
}

.legal-facts > div:nth-child(even) {
  padding-right: 0;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.legal-facts .legal-fact-wide {
  grid-column: 1 / -1;
  min-height: auto;
  padding-left: 0;
  border-left: 0;
}

.legal-facts dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 590;
  line-height: 1.5;
}

.legal-note {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 3px solid var(--sage);
  background: var(--sage-mist);
}

.legal-note p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
}

.legal-contact {
  margin-top: 34px;
  padding: 25px 27px;
  border-radius: 13px;
  color: var(--paper);
  background: var(--sage-dark);
}

.legal-contact > strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.legal-contact p {
  color: #d7e0dc;
  font-size: 14px;
  line-height: 1.6;
}

.legal-contact a {
  color: var(--paper);
  text-decoration-color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 36px;
    padding-top: calc(var(--header-height) + 70px);
    padding-bottom: 72px;
  }

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

  .hero-wordmark {
    font-size: clamp(74px, 10vw, 108px);
  }

  .hero-visual {
    width: min(100%, 680px);
    height: 570px;
    min-height: 570px;
    justify-self: center;
  }

  .audience-shell {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hiring-shell {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .hiring-copy {
    max-width: 720px;
  }

  .hiring-demo {
    width: min(100%, 760px);
    justify-self: center;
  }

  .preview-app-header {
    grid-template-columns: 155px 1fr;
  }

  .preview-account {
    display: none;
  }

  .preview-nav {
    justify-content: end;
  }

  .trust-shell {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .trust-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .site-header-inner,
  .section-shell,
  .site-footer-inner,
  .hero-inner {
    width: min(calc(100% - 36px), var(--shell));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-navigation {
    position: fixed;
    top: 69px;
    right: 0;
    left: 0;
    display: grid;
    height: calc(100dvh - 69px);
    align-content: start;
    gap: 0;
    padding: 38px 18px;
    overflow-y: auto;
    visibility: hidden;
    background: var(--stone);
    opacity: 0;
    overscroll-behavior: contain;
    transform: translateY(-8px);
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .site-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-navigation > a:not(.header-action) {
    padding: 19px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 20px;
    font-weight: 600;
  }

  .site-navigation > a:not(.header-action)::after {
    display: none;
  }

  .site-navigation .header-action {
    width: 100%;
    min-height: 54px;
    justify-content: center;
    margin-top: 28px;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines i:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines i:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero-inner {
    gap: 32px;
    padding-top: 122px;
    padding-bottom: 75px;
  }

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

  .hero-heading {
    max-width: 680px;
  }

  .hero-intro {
    max-width: 650px;
  }

  .hero-visual {
    width: min(100%, 620px);
    height: 540px;
    min-height: 540px;
    justify-self: center;
  }

  .flow-steps {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .flow-step {
    min-height: auto;
    padding: 36px 0 42px 58px;
    border-top: 1px solid var(--line-strong);
  }

  .flow-step:not(:last-child) {
    margin-right: 0;
    border-right: 0;
  }

  .step-number {
    top: 29px;
  }

  .flow-step p {
    max-width: 560px;
  }

  .workspace-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-preview {
    width: 100%;
  }

  .preview-app-header {
    grid-template-columns: 1fr auto;
    padding: 0 22px;
  }

  .preview-nav {
    display: none;
  }

  .preview-account {
    display: grid;
  }

  .audience-columns ul {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    display: none;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .legal-hero-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .legal-hero-art {
    width: min(100%, 520px);
    min-height: 175px;
    grid-template-columns: auto auto 1fr;
    align-content: center;
    align-items: center;
    gap: 25px;
    transform: rotate(1deg);
  }

  .legal-hero-art-label {
    max-width: 170px;
  }

  .legal-highlights-inner {
    grid-template-columns: 1fr;
  }

  .legal-highlights a,
  .legal-highlights a:not(:first-child) {
    min-height: auto;
    padding: 25px 0 27px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .legal-highlights a:last-child {
    border-bottom: 0;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 72px;
    padding-top: 78px;
    padding-bottom: 110px;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
  }
}

@media (max-width: 560px) {
  .site-header-inner,
  .section-shell,
  .site-footer-inner,
  .hero-inner {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-brand {
    font-size: 20px;
  }

  .site-brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-inner {
    gap: 26px;
    padding-top: 111px;
    padding-bottom: 48px;
  }

  .hero-eyebrow {
    max-width: 280px;
  }

  .hero-wordmark {
    margin-bottom: 23px;
    font-size: clamp(69px, 23vw, 102px);
  }

  .hero-heading {
    font-size: clamp(36px, 11.1vw, 53px);
    line-height: 1.01;
  }

  .hero-intro {
    margin-top: 23px;
    font-size: 16px;
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .hero-actions .button,
  .final-actions .button {
    width: 100%;
  }

  .hero-actions .text-link,
  .final-actions .text-link {
    align-self: flex-start;
  }

  .hero-note {
    max-width: 280px;
    line-height: 1.5;
  }

  .hero-visual {
    width: calc(100% + 28px);
    height: 405px;
    min-height: 405px;
    margin-left: -14px;
  }

  .hero-orbit-large {
    width: 390px;
    height: 390px;
    right: -155px;
  }

  .hero-orbit-small {
    width: 285px;
    height: 285px;
  }

  .intake-panel-shadow {
    top: 66px;
    left: 4%;
    width: 58%;
    height: 276px;
  }

  .intake-panel {
    top: 52px;
    left: 4%;
    width: 59%;
    min-height: 276px;
    padding: 16px 15px 14px;
    border-radius: 15px;
  }

  .intake-heading {
    gap: 5px;
  }

  .intake-heading span,
  .package-title span {
    font-size: 6px;
  }

  .intake-heading strong {
    font-size: 17px;
  }

  .intake-files {
    margin-top: 17px;
  }

  .intake-file {
    gap: 7px;
    min-height: 43px;
  }

  .intake-file > i {
    width: 27px;
    height: 30px;
    border-radius: 5px;
    font-size: 5px;
  }

  .intake-file strong {
    font-size: 8px;
  }

  .intake-file small {
    font-size: 6px;
  }

  .intake-status {
    margin-top: 12px;
    font-size: 6px;
  }

  .package-panel {
    top: 30px;
    width: 60%;
    min-height: 318px;
    padding: 18px 16px 15px;
    border-radius: 16px;
  }

  .package-topline,
  .package-status {
    font-size: 6px;
  }

  .package-title {
    gap: 7px;
    margin-top: 32px;
  }

  .package-title strong {
    font-size: 23px;
  }

  .package-files {
    margin-top: 19px;
  }

  .package-files > div {
    min-height: 35px;
  }

  .package-files span {
    font-size: 8px;
  }

  .package-files small {
    font-size: 6px;
  }

  .package-status {
    margin-top: 14px;
  }

  .organize-route {
    top: 2px;
    left: 53%;
  }

  .organize-route span {
    font-size: 18px;
  }

  .organize-route small {
    display: block;
    font-size: 6px;
  }

  .section-heading h2,
  .hiring-copy h2,
  .audience-intro h2,
  .trust-copy h2 {
    font-size: clamp(38px, 12.3vw, 56px);
  }

  .flow-steps {
    margin-top: 48px;
  }

  .flow-step {
    padding: 29px 0 31px 49px;
  }

  .step-number {
    top: 22px;
  }

  .product-preview {
    width: 100%;
    border-radius: 14px;
  }

  .preview-browser-bar {
    height: 38px;
  }

  .preview-app {
    min-width: 0;
  }

  .preview-app-header {
    height: 70px;
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .preview-account {
    display: none;
  }

  .preview-body {
    min-height: 0;
    padding: 22px 15px 26px;
  }

  .preview-title-row {
    align-items: center;
    gap: 12px;
    margin-top: 28px;
  }

  .preview-title-row h3 {
    font-size: 23px;
  }

  .preview-action {
    min-height: 38px;
    padding: 0 11px;
    font-size: 9px;
    white-space: nowrap;
  }

  .preview-panel {
    margin-top: 26px;
  }

  .preview-panel-heading {
    min-height: 52px;
    padding: 0 15px;
  }

  .preview-package {
    min-height: 93px;
    grid-template-columns: 42px 1fr;
    gap: 11px;
    padding: 12px 15px;
  }

  .preview-package .preview-state {
    grid-column: 2;
    width: fit-content;
  }

  .preview-package-copy strong {
    font-size: 11px;
  }

  .preview-package-copy em {
    font-size: 7px;
  }

  .preview-caption {
    text-align: left;
  }

  .audience-columns h3 {
    font-size: 30px;
  }

  .workspace-section {
    padding: 78px 0 72px;
  }

  .hiring-section {
    padding: 78px 0 82px;
  }

  .hiring-shell {
    gap: 42px;
  }

  .hiring-intro {
    margin-top: 23px;
    font-size: 16px;
  }

  .hiring-points {
    margin-top: 34px;
  }

  .hiring-demo {
    min-height: 0;
    border-radius: 18px;
  }

  .hiring-demo-content {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 26px 21px 28px;
  }

  .hiring-form-card {
    width: 94%;
    justify-self: start;
    padding: 22px 19px 19px;
  }

  .hiring-form-card h3 {
    margin: 20px 0 23px;
    font-size: 24px;
  }

  .hiring-route {
    min-height: 70px;
    align-content: center;
  }

  .hiring-route span {
    transform: rotate(90deg);
  }

  .hiring-results {
    width: 88%;
    justify-self: end;
  }

  .xlsx-card {
    grid-template-columns: 52px 1fr;
    align-items: center;
    justify-items: start;
    padding: 18px 16px;
    text-align: left;
  }

  .xlsx-icon {
    width: 52px;
    height: 61px;
  }

  .xlsx-icon span {
    font-size: 23px;
  }

  .xlsx-card p {
    justify-items: start;
    margin: 0 0 0 13px;
  }

  .audience-section {
    padding: 78px 0;
  }

  .audience-shell {
    gap: 42px;
  }

  .audience-columns article {
    padding: 30px 0 33px;
  }

  .audience-columns h3 {
    margin: 16px 0 22px;
  }

  .trust-section {
    padding: 76px 0 80px;
  }

  .trust-shell {
    gap: 36px;
  }

  .trust-copy > p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 16px;
  }

  .trust-list li {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 22px 0 24px;
  }

  .trust-list li > span {
    width: 31px;
    height: 31px;
  }

  .trust-list strong {
    font-size: 18px;
  }

  .final-cta h2 {
    font-size: clamp(45px, 14vw, 66px);
  }

  .final-cta {
    padding: 94px 0;
  }

  .final-cta-sheet {
    opacity: 0.48;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .site-footer nav {
    grid-column: auto;
    grid-row: auto;
    flex-wrap: wrap;
    gap: 18px;
  }

  .legal-hero {
    padding: 124px 0 72px;
  }

  .legal-back-link {
    margin-bottom: 43px;
  }

  .legal-hero h1 {
    font-size: clamp(49px, 15.5vw, 70px);
  }

  .legal-hero-summary {
    margin-top: 24px;
    font-size: 16px;
  }

  .legal-updated {
    margin-top: 23px;
  }

  .legal-hero-art {
    min-height: 142px;
    grid-template-columns: auto auto 1fr;
    gap: 17px;
    padding: 20px;
    border-radius: 17px;
  }

  .legal-hero-symbol {
    width: 58px;
    height: 65px;
    border-radius: 13px;
    font-size: 30px;
  }

  .legal-highlights a,
  .legal-highlights a:not(:first-child) {
    padding: 23px 0 25px;
  }

  .legal-layout {
    gap: 58px;
    padding-top: 65px;
    padding-bottom: 90px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .legal-intro {
    margin-bottom: 45px;
    font-size: 22px;
  }

  .legal-section {
    padding: 39px 0 43px;
  }

  .legal-section h2 {
    margin-bottom: 20px;
    font-size: 35px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 15px;
  }

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

  .legal-facts > div,
  .legal-facts > div:nth-child(even) {
    min-height: auto;
    padding: 18px 0;
    border-left: 0;
  }

  .legal-facts .legal-fact-wide {
    grid-column: auto;
  }

  .legal-note,
  .legal-contact {
    padding: 20px;
  }
}

@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;
  }

  .hero-visual-content {
    transform: none !important;
  }
}
