@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ink: #0b0b0b;
  --ink-soft: #242424;
  --paper: #e9e9e6;
  --paper-bright: #f7f7f5;
  --terminal: #51e66c;
  --terminal-dark: #15943b;
  --amber: #ffca61;
  --blue: #2c66ff;
  --grey: #8f918d;
  --line: #d3d3cf;
  --line-dark: #343434;
  --danger: #ff684d;
  --max: 1240px;
  --header-height: 112px;
  --radius: 24px;
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

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

[id] {
  scroll-margin-top: calc(var(--header-height) + 40px);
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.02;
  font-weight: 650;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--terminal);
  transform: translateY(-160%);
}

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

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

.container {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}

.mono,
.section-label,
.eyebrow,
.status-label,
.console-kicker,
.field-note,
.legal-updated {
  font-family: var(--mono);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 242, 233, 0.97);
}

.service-ribbon {
  height: 34px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 34px;
}

.ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-ribbon a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terminal);
  white-space: nowrap;
}

.service-ribbon a:hover {
  color: var(--paper);
}

.main-nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.brand-name {
  font-size: 24px;
  font-weight: 760;
  line-height: 1;
}

.brand-service {
  color: #59605d;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav-links > a {
  position: relative;
  padding-block: 12px;
  font-size: 14px;
  font-weight: 560;
}

.nav-links > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  background: var(--terminal-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links > a:hover::after,
.nav-links > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--terminal);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 720;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--ink);
  border-color: var(--terminal);
  background: var(--terminal);
}

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

.button-dark {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: transparent;
}

.button-light {
  color: var(--paper);
  border-color: var(--paper);
  background: transparent;
}

.button-light:hover {
  color: var(--ink);
  background: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
}

.section-link {
  margin-top: 32px;
}

.statement .text-link {
  font-size: inherit;
  font-weight: inherit;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--terminal);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 760px;
  padding-top: 84px;
  padding-bottom: 76px;
}

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

.hero-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 58px;
  font-family: var(--mono);
  font-size: 13px;
}

.hero-brand img {
  width: 50px;
  height: 50px;
}

.hero h1 {
  max-width: 930px;
  margin-bottom: 26px;
  font-size: 88px;
  font-weight: 700;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #d1d3ce;
  font-size: 20px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-console {
  position: absolute;
  right: 0;
  bottom: 50px;
  width: 470px;
  border: 1px solid #5f6864;
  background: rgba(17, 21, 24, 0.94);
  box-shadow: 14px 14px 0 rgba(51, 240, 106, 0.13);
}

.console-top,
.console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 11px;
}

.console-footer {
  border-top: 1px solid var(--line-dark);
  border-bottom: 0;
  color: var(--grey);
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terminal);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terminal);
  box-shadow: 0 0 0 5px rgba(51, 240, 106, 0.11);
  animation: pulse 1.8s ease-in-out infinite;
}

.console-body {
  padding: 18px 16px;
}

.console-event {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  border-bottom: 1px solid #2b3235;
  font-family: var(--mono);
  font-size: 11px;
}

.console-event:last-child {
  border-bottom: 0;
}

.console-time {
  color: var(--grey);
}

.event-state {
  width: 9px;
  height: 9px;
  background: var(--terminal);
}

.event-state.amber {
  background: var(--amber);
}

.event-state.blue {
  background: var(--blue);
}

.hero-index {
  position: absolute;
  left: 0;
  bottom: 28px;
  color: #a6aca8;
  font-family: var(--mono);
  font-size: 11px;
}

.section {
  padding-block: 112px;
}

.section-compact {
  padding-block: 78px;
}

.section-dark {
  color: var(--paper);
  background: var(--ink);
}

.section-white {
  background: var(--paper-bright);
}

.section-blue {
  color: var(--paper);
  background: var(--blue);
}

.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 44px;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  margin-bottom: 64px;
}

.section-label,
.eyebrow {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-label {
  color: var(--terminal-dark);
}

.section-dark .section-label,
.section-blue .section-label {
  color: var(--terminal);
}

.section-intro h2,
.display-heading {
  max-width: 930px;
  margin-bottom: 22px;
  font-size: 58px;
}

.section-intro p {
  max-width: 720px;
  margin-bottom: 0;
  color: #59605d;
  font-size: 19px;
}

.section-dark .section-intro p,
.section-blue .section-intro p {
  color: #cbd0cc;
}

.statement {
  max-width: 1170px;
  margin-bottom: 0;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 560;
}

.statement em {
  color: var(--terminal-dark);
  font-style: normal;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-cell {
  min-height: 330px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
}

.capability-number {
  display: block;
  margin-bottom: 98px;
  color: var(--terminal-dark);
  font-family: var(--mono);
  font-size: 12px;
}

.capability-cell h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.capability-cell p {
  margin-bottom: 22px;
  color: #59605d;
  font-size: 14px;
}

.capability-list {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: var(--mono);
  font-size: 11px;
}

.capability-list li {
  padding-block: 7px;
  border-top: 1px solid var(--line);
}

.workflow-shell {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.workflow-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line-dark);
}

.workflow-tab {
  min-height: 66px;
  padding: 14px 16px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  color: #b7bdb9;
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}

.workflow-tab:last-child {
  border-right: 0;
}

.workflow-tab[aria-selected="true"] {
  color: var(--ink);
  background: var(--terminal);
}

.workflow-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}

.workflow-copy,
.workflow-flow {
  padding: 52px;
}

.workflow-copy {
  border-right: 1px solid var(--line-dark);
}

.workflow-copy h3 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: 43px;
}

.workflow-copy p {
  max-width: 560px;
  color: #b7bdb9;
  font-size: 17px;
}

.workflow-flow {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flow-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 66px;
  border-top: 1px solid var(--line-dark);
}

.flow-row:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.flow-index,
.flow-status {
  color: var(--terminal);
  font-family: var(--mono);
  font-size: 11px;
}

.flow-status {
  color: var(--grey);
}

.logo-rail {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.integration-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.integration-list li {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px;
  border-right: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.integration-list img {
  width: 118px;
  height: 30px;
  object-fit: contain;
}

.integration-list li:last-child img {
  width: 30px;
}

.integration-list li:last-child {
  border-right: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-step {
  min-height: 380px;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step .step-number {
  display: block;
  margin-bottom: 120px;
  color: var(--terminal-dark);
  font-family: var(--mono);
  font-size: 13px;
}

.process-step h3 {
  margin-bottom: 16px;
  font-size: 28px;
}

.process-step p {
  color: #59605d;
}

.control-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: start;
}

.control-grid h2 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: 62px;
}

.control-grid .lead {
  max-width: 650px;
  color: #cbd0cc;
  font-size: 19px;
}

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

.control-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.control-list span {
  color: var(--terminal);
  font-family: var(--mono);
  font-size: 11px;
}

.control-list strong {
  display: block;
  margin-bottom: 5px;
}

.control-list p {
  color: #aeb4b0;
  font-size: 14px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: 100px;
  color: var(--ink);
  background: var(--terminal);
}

.cta-band::after {
  content: "H";
  position: absolute;
  right: 2%;
  top: -135px;
  color: rgba(17, 21, 24, 0.08);
  font-size: 470px;
  line-height: 1;
  font-weight: 900;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}

.cta-content h2 {
  max-width: 940px;
  margin-bottom: 16px;
  font-size: 64px;
}

.cta-content p {
  max-width: 670px;
  font-size: 18px;
}

.page-hero {
  position: relative;
  min-height: 550px;
  padding-block: 80px;
  color: var(--paper);
  background: var(--ink);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 90px;
  align-items: end;
  min-height: 390px;
}

.page-hero h1 {
  max-width: 1000px;
  margin-bottom: 22px;
  font-size: 76px;
}

.page-hero .lead {
  max-width: 700px;
  color: #cbd0cc;
  font-size: 19px;
}

.page-hero-aside {
  padding-top: 18px;
  border-top: 1px solid var(--terminal);
  color: #cbd0cc;
  font-family: var(--mono);
  font-size: 12px;
}

.page-hero-aside p {
  margin-bottom: 18px;
}

.service-index {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 90px 0.8fr 1.4fr;
  gap: 30px;
  min-height: 180px;
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}

.service-row .mono {
  color: var(--terminal-dark);
  font-size: 12px;
}

.service-row h2,
.service-row h3 {
  margin-bottom: 0;
  font-size: 31px;
}

.service-row p {
  max-width: 700px;
  color: #59605d;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.service-tags li {
  padding: 7px 9px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-split > div {
  min-height: 420px;
  padding: 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-split h3 {
  max-width: 500px;
  margin-bottom: 22px;
  font-size: 37px;
}

.feature-split p {
  max-width: 560px;
  color: #59605d;
}

.feature-split ul {
  padding-left: 20px;
  color: #59605d;
}

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

.timeline-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 40px;
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}

.timeline-row .mono {
  color: var(--terminal-dark);
  font-size: 12px;
}

.timeline-row h3 {
  font-size: 27px;
}

.timeline-row p {
  color: #59605d;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: start;
}

.founder-image {
  position: relative;
  margin: 0;
}

.founder-image img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(1) contrast(1.06);
}

.founder-image figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  border-top: 5px solid var(--terminal);
  font-family: var(--mono);
  font-size: 11px;
}

.about-copy h2 {
  margin-bottom: 26px;
  font-size: 55px;
}

.about-copy p {
  max-width: 710px;
  color: #4f5653;
  font-size: 18px;
}

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

.principles li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
}

.principles span {
  color: var(--terminal-dark);
  font-family: var(--mono);
  font-size: 11px;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 145px;
}

.form-intro h2 {
  margin-bottom: 20px;
  font-size: 46px;
}

.form-intro p {
  color: #59605d;
}

.form-contact {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
}

.agent-form {
  padding: 44px;
  border: 1px solid var(--line);
  background: var(--paper-bright);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid #999e9a;
  border-radius: 0;
  color: var(--ink);
  background: #fff;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
}

.field-note {
  color: #6a716d;
  font-size: 10px;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.checkbox-field label {
  color: #4f5653;
  font-size: 13px;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.form-submit p {
  max-width: 370px;
  color: #6a716d;
  font-size: 11px;
}

.form-submit .button-primary:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.legal-main {
  padding-block: 90px 120px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  gap: 90px;
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 145px;
  padding-top: 14px;
  border-top: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
}

.legal-content h1 {
  margin-bottom: 14px;
  font-size: 62px;
}

.legal-updated {
  margin-bottom: 44px;
  color: #6a716d;
  font-size: 11px;
}

.legal-content h2 {
  margin-top: 46px;
  margin-bottom: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 27px;
}

.legal-content h3 {
  margin-top: 28px;
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: #454c49;
}

.legal-content a {
  border-bottom: 1px solid currentColor;
}

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

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

.faq-item summary {
  position: relative;
  padding: 25px 48px 25px 0;
  font-size: 20px;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 20px;
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  max-width: 800px;
  padding: 0 48px 26px 0;
  color: #59605d;
}

.thank-you {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding-block: 90px;
  color: var(--paper);
  background: var(--ink);
}

.thank-you h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: 76px;
}

.thank-you p {
  max-width: 650px;
  margin-bottom: 30px;
  color: #cbd0cc;
  font-size: 19px;
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.75fr);
  gap: 50px;
  padding-block: 74px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand .brand-name {
  font-size: 31px;
}

.footer-brand .brand-service {
  color: #aeb4b0;
}

.footer-brand p {
  max-width: 410px;
  margin-top: 24px;
  color: #aeb4b0;
}

.footer-column h2 {
  margin-bottom: 18px;
  color: var(--terminal);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: #d5d8d3;
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--terminal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px;
  color: #8f9692;
  font-family: var(--mono);
  font-size: 10px;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 18px;
  }

  .brand-service {
    display: none;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-console {
    width: 420px;
  }

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

  .integration-list {
    grid-template-columns: repeat(5, 1fr);
  }

  .page-hero-grid {
    grid-template-columns: 1fr 280px;
    gap: 50px;
  }

  .form-layout {
    gap: 55px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 96px;
  }

  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .service-ribbon {
    height: 30px;
    line-height: 30px;
  }

  .main-nav {
    height: 66px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 96px 0 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 34px 18px;
    color: var(--paper);
    background: var(--ink);
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links > a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 18px;
  }

  .nav-links > a::after {
    display: none;
  }

  .nav-links .nav-cta {
    margin-top: 24px;
    color: var(--ink);
    background: var(--terminal);
  }

  .hero,
  .hero-inner {
    min-height: 0;
  }

  .hero-inner {
    padding-top: 60px;
    padding-bottom: 54px;
  }

  .hero-brand {
    margin-bottom: 44px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .hero-console {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 470px;
    margin-top: 46px;
  }

  .hero-index {
    display: none;
  }

  .section {
    padding-block: 86px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-intro h2,
  .display-heading,
  .statement {
    font-size: 47px;
  }

  .workflow-panel,
  .control-grid,
  .about-grid,
  .form-layout,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .workflow-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

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

  .integration-list li:nth-child(even) {
    border-right: 0;
  }

  .integration-list li:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .control-grid {
    gap: 50px;
  }

  .control-grid h2,
  .cta-content h2,
  .page-hero h1,
  .legal-content h1,
  .thank-you h1 {
    font-size: 55px;
  }

  .cta-content {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-hero-aside {
    max-width: 500px;
  }

  .service-row {
    grid-template-columns: 65px 1fr;
  }

  .service-row > :last-child {
    grid-column: 2;
  }

  .timeline-row {
    grid-template-columns: 100px 1fr;
  }

  .timeline-row > :last-child {
    grid-column: 2;
  }

  .form-intro,
  .legal-aside {
    position: static;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .ribbon-inner {
    gap: 10px;
  }

  .ribbon-inner > span {
    max-width: 132px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .service-ribbon a {
    gap: 4px;
    font-size: 9px;
  }

  .brand-name {
    font-size: 21px;
  }

  .hero-inner {
    padding-top: 42px;
    padding-bottom: 32px;
  }

  .hero-brand {
    margin-bottom: 34px;
  }

  .hero-brand img {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-lead {
    font-size: 17px;
  }

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

  .hero-actions .button,
  .hero-actions .text-link {
    width: fit-content;
  }

  .hero-console {
    display: none;
  }

  .console-event {
    grid-template-columns: 58px 1fr auto;
    gap: 8px;
    font-size: 9px;
  }

  .section,
  .section-compact {
    padding-block: 66px;
  }

  .section-head {
    margin-bottom: 42px;
  }

  .section-intro h2,
  .display-heading,
  .statement,
  .control-grid h2,
  .cta-content h2,
  .page-hero h1,
  .legal-content h1,
  .thank-you h1,
  .about-copy h2,
  .form-intro h2 {
    font-size: 39px;
  }

  .capability-grid,
  .process-grid,
  .feature-split {
    grid-template-columns: 1fr;
  }

  .capability-cell,
  .process-step {
    min-height: 0;
  }

  .capability-number,
  .process-step .step-number {
    margin-bottom: 60px;
  }

  .workflow-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-tab:nth-child(2) {
    border-right: 0;
  }

  .workflow-tab:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .workflow-copy,
  .workflow-flow,
  .feature-split > div {
    padding: 30px 20px;
  }

  .workflow-copy h3 {
    font-size: 33px;
  }

  .integration-list li {
    font-size: 13px;
  }

  .page-hero {
    min-height: 510px;
    padding-block: 60px;
  }

  .page-hero-grid {
    min-height: 390px;
  }

  .service-row,
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-row > :last-child,
  .timeline-row > :last-child {
    grid-column: 1;
  }

  .about-grid {
    gap: 45px;
  }

  .agent-form {
    padding: 24px 18px;
  }

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

  .field-full {
    grid-column: 1;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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

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

/* Framer-derived Hostable theme */
body {
  background: var(--paper);
  font-weight: 400;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
}

.container {
  width: min(calc(100% - 72px), var(--max));
}

.site-header {
  border-bottom: 0;
  background: rgba(233, 233, 230, 0.9);
  box-shadow: 0 1px 0 rgba(11, 11, 11, 0.08);
  backdrop-filter: blur(18px);
}

.service-ribbon {
  height: 30px;
  line-height: 30px;
  font-size: 10px;
}

.main-nav {
  height: 82px;
}

.main-nav > .brand {
  padding: 9px 14px 9px 10px;
  border: 1px solid rgba(11, 11, 11, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(11, 11, 11, 0.04);
}

.brand img {
  width: 31px;
  height: 31px;
}

.brand-name {
  font-size: 21px;
  font-weight: 650;
}

.brand-service {
  color: rgba(11, 11, 11, 0.5);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
}

.control-grid {
  gap: 100px;
}

.control-grid h2 {
  font-size: 58px;
  font-weight: 400;
}

.control-grid .lead {
  color: rgba(255, 255, 255, 0.6);
}

.control-list {
  border-color: rgba(255, 255, 255, 0.14);
}

.control-list li {
  padding-block: 22px;
  border-color: rgba(255, 255, 255, 0.14);
}

.control-list p {
  color: rgba(255, 255, 255, 0.55);
}

.cta-band {
  padding-block: 128px;
  color: #fff;
  background: #0b0b0b;
}

.cta-band::after {
  display: none;
}

.cta-content h2 {
  max-width: 870px;
  font-size: 68px;
  font-weight: 400;
  line-height: 1.05;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.6);
}

.cta-band .button-dark {
  color: #000;
  background: #fff;
}

.cta-band .button-dark:hover {
  color: #000;
  background: #e8e8e5;
}

.page-hero {
  min-height: 630px;
  padding-block: 100px;
  color: #000;
  background: #eeeeec;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 80px;
  min-height: 430px;
}

.page-hero h1 {
  max-width: 980px;
  font-size: 82px;
  font-weight: 400;
  line-height: 0.99;
}

.page-hero .lead {
  color: rgba(0, 0, 0, 0.55);
  font-size: 18px;
}

.page-hero-aside {
  padding: 26px;
  border: 1px solid rgba(11, 11, 11, 0.06);
  border-radius: 22px;
  color: rgba(0, 0, 0, 0.55);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(11, 11, 11, 0.06);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
}

.page-hero-aside p:last-child {
  margin-bottom: 0;
}

.service-index,
.timeline {
  display: grid;
  gap: 10px;
  border: 0;
}

.service-row,
.timeline-row {
  padding: 32px;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
}

.service-row .mono,
.timeline-row .mono {
  color: var(--terminal-dark);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
}

.service-row h2,
.service-row h3,
.timeline-row h3 {
  font-size: 28px;
  font-weight: 500;
}

.service-row p,
.timeline-row p {
  color: rgba(0, 0, 0, 0.55);
}

.service-tags li {
  padding: 7px 11px;
  border: 0;
  border-radius: 999px;
  background: #ececea;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
}

.feature-split {
  gap: 16px;
  border: 0;
}

.feature-split > div {
  min-height: 390px;
  padding: 42px;
  border: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.feature-split h3 {
  font-size: 36px;
  font-weight: 400;
}

.feature-split p,
.feature-split ul {
  color: rgba(0, 0, 0, 0.55);
}

.about-grid {
  gap: 90px;
}

.founder-image img {
  border-radius: 24px;
  filter: none;
}

.founder-image figcaption {
  padding: 13px 4px 0;
  border: 0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
}

.about-copy h2 {
  font-size: 52px;
  font-weight: 400;
}

.about-copy p {
  color: rgba(0, 0, 0, 0.58);
}

.principles {
  display: grid;
  gap: 8px;
  border: 0;
}

.principles li {
  padding: 17px 18px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.form-layout {
  gap: 78px;
}

.form-intro h2 {
  font-size: 48px;
  font-weight: 400;
}

.form-intro p {
  color: rgba(0, 0, 0, 0.55);
}

.form-contact {
  border-color: rgba(0, 0, 0, 0.12);
  font-family: var(--sans);
}

.agent-form {
  padding: 42px;
  border: 0;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 55px rgba(11, 11, 11, 0.07);
}

.field input,
.field textarea,
.field select {
  border: 1px solid #d4d4d0;
  border-radius: 12px;
  background: #f7f7f5;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: #000;
  outline: 2px solid rgba(0, 0, 0, 0.08);
}

.form-submit {
  border-color: rgba(0, 0, 0, 0.1);
}

.legal-main {
  padding-block: 110px 140px;
}

.legal-layout {
  grid-template-columns: 250px minmax(0, 820px);
}

.legal-aside {
  padding: 24px;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
}

.legal-content h1 {
  font-size: 70px;
  font-weight: 400;
}

.legal-content h2 {
  padding-top: 0;
  border-top: 0;
  font-size: 29px;
  font-weight: 500;
}

.legal-content p,
.legal-content li {
  color: rgba(0, 0, 0, 0.65);
}

.faq-list {
  display: grid;
  gap: 8px;
  border: 0;
}

.faq-item {
  padding-inline: 24px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.faq-item summary {
  font-size: 19px;
  font-weight: 500;
}

.faq-answer {
  color: rgba(0, 0, 0, 0.58);
}

.thank-you {
  background: #0b0b0b;
}

.thank-you h1 {
  font-size: 78px;
  font-weight: 400;
}

.site-footer {
  background: #0b0b0b;
}

.site-footer .brand {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer-main {
  padding-block: 86px;
  border-color: rgba(255, 255, 255, 0.13);
}

.footer-brand .brand-name {
  font-size: 30px;
  font-weight: 500;
}

.footer-brand p,
.footer-column a {
  color: rgba(255, 255, 255, 0.58);
}

.footer-column h2 {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--sans);
}

.reveal {
  transform: translateY(16px);
  transition: opacity 620ms ease, transform 620ms ease;
}

@media (max-width: 1120px) {
  .container {
    width: min(calc(100% - 48px), var(--max));
  }

  .hero h1 {
    font-size: 84px;
  }

  .hero-title-tile {
    width: 94px;
    height: 76px;
    border-radius: 21px;
  }

  .hero-console {
    width: 430px;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 52px;
  }

  .form-layout {
    gap: 56px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 100px;
  }

  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .main-nav {
    height: 70px;
  }

  .main-nav > .brand {
    padding-block: 7px;
  }

  .nav-links {
    inset: 100px 0 0;
    gap: 5px;
    padding: 28px 18px;
    color: #000;
    background: rgba(247, 247, 245, 0.98);
    backdrop-filter: blur(18px);
  }

  .nav-links > a {
    padding: 15px 18px;
    border: 0;
    border-radius: 14px;
    font-size: 18px;
  }

  .nav-links .nav-cta {
    margin-top: 18px;
    margin-left: 0;
    color: #fff;
    background: #000;
  }

  .hero,
  .hero-inner {
    min-height: 0;
  }

  .hero-inner {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-title-line {
    gap: 12px;
  }

  .hero-title-tile {
    width: 76px;
    height: 64px;
    border-radius: 18px;
  }

  .hero-title-tile img {
    width: 36px;
    height: 36px;
  }

  .hero-console {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 600px;
    margin: 64px auto 0;
  }

  .hero-index {
    display: none;
  }

  .section {
    padding-block: 96px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 54px;
  }

  .section-intro h2,
  .display-heading,
  .statement {
    font-size: 46px;
  }

  .section-label,
  .eyebrow {
    font-size: 22px;
  }

  .workflow-copy,
  .workflow-flow {
    padding: 40px;
  }

  .control-grid {
    gap: 58px;
  }

  .control-grid h2,
  .cta-content h2 {
    font-size: 54px;
  }

  .page-hero {
    min-height: 0;
    padding-block: 82px;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: 0;
  }

  .page-hero h1,
  .legal-content h1,
  .thank-you h1 {
    font-size: 58px;
  }

  .page-hero-aside {
    max-width: 560px;
  }

  .service-row {
    grid-template-columns: 70px 1fr;
  }

  .service-row > :last-child {
    grid-column: 2;
  }

  .timeline-row {
    grid-template-columns: 100px 1fr;
  }

  .timeline-row > :last-child {
    grid-column: 2;
  }

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

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .main-nav > .brand {
    padding-right: 11px;
  }

  .hero-inner {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero-brand {
    margin-bottom: 36px;
    padding: 9px 14px;
    font-size: 11px;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: 42px;
  }

  .hero-title-line {
    gap: 8px;
  }

  .hero-title-tile {
    width: 56px;
    height: 48px;
    border-radius: 14px;
  }

  .hero-title-tile img {
    width: 28px;
    height: 28px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-console {
    display: none;
  }

  .section,
  .section-compact {
    padding-block: 78px;
  }

  .section-head {
    margin-bottom: 42px;
  }

  .section-intro h2,
  .display-heading,
  .statement,
  .control-grid h2,
  .cta-content h2,
  .about-copy h2,
  .form-intro h2 {
    font-size: 40px;
  }

  .section-intro p {
    font-size: 16px;
  }

  .capability-cell,
  .process-step {
    padding: 26px;
    border-radius: 20px;
  }

  .workflow-shell {
    border-radius: 20px;
  }

  .workflow-copy,
  .workflow-flow,
  .feature-split > div {
    padding: 28px 22px;
  }

  .integration-list li {
    min-height: 110px;
  }

  .cta-band {
    padding-block: 90px;
  }

  .page-hero {
    padding-block: 66px;
  }

  .page-hero h1,
  .legal-content h1,
  .thank-you h1 {
    font-size: 46px;
  }

  .page-hero .lead {
    font-size: 16px;
  }

  .service-row,
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px;
  }

  .service-row > :last-child,
  .timeline-row > :last-child {
    grid-column: 1;
  }

  .feature-split > div {
    min-height: 0;
  }

  .agent-form {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .footer-main {
    padding-block: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transform: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    backdrop-filter: none;
  }

  .nav-links {
    min-height: calc(100dvh - 100px);
    overflow-y: auto;
    background: #f7f7f5;
  }
}

.nav-links {
  gap: 6px;
}

.nav-links > a {
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links > a::after {
  display: none;
}

.nav-links > a:hover,
.nav-links > a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.9);
}

.nav-links .nav-cta {
  min-height: 44px;
  margin-left: 7px;
  padding-inline: 20px;
  border: 0;
  color: #fff;
  background: #000;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.16);
}

.nav-links .nav-cta:hover {
  color: #fff;
  background: #252525;
}

.nav-links .nav-cta[aria-current="page"] {
  color: #fff;
  background: #000;
}

.menu-button {
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 5px 18px rgba(11, 11, 11, 0.08);
}

.menu-button span {
  height: 1px;
}

.button {
  min-height: 52px;
  padding: 14px 23px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.button-primary,
.button-dark {
  color: #fff;
  background: #000;
}

.button-primary:hover,
.button-dark:hover {
  color: #fff;
  background: #252525;
}

.button-light {
  color: #000;
  background: #fff;
}

.button-light:hover {
  color: #000;
  background: #ededeb;
}

.text-link {
  padding-bottom: 3px;
  font-weight: 600;
}

.hero {
  min-height: 900px;
  color: #000;
  background: #eeeeec;
}

.hero::after {
  display: none;
}

.hero-inner {
  min-height: 900px;
  padding-top: 76px;
  padding-bottom: 72px;
}

.hero-copy {
  max-width: none;
  text-align: center;
}

.hero-brand {
  width: fit-content;
  margin: 0 auto 48px;
  padding: 11px 18px;
  border: 1px solid rgba(11, 11, 11, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 30px rgba(11, 11, 11, 0.05);
  font-family: var(--sans);
  font-size: 13px;
}

.hero-brand .live-dot {
  width: 7px;
  height: 7px;
}

.hero h1 {
  max-width: 1160px;
  margin: 0 auto 34px;
  font-size: 106px;
  font-weight: 400;
  line-height: 0.98;
}

.hero-title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  white-space: nowrap;
}

.hero-title-muted {
  color: rgba(0, 0, 0, 0.43);
}

.hero-title-tile {
  width: 112px;
  height: 88px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #222;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
  transform: rotate(-2deg);
}

.hero-title-tile img {
  width: 46px;
  height: 46px;
}

.hero-lead {
  max-width: 660px;
  margin: 0 auto 32px;
  color: rgba(0, 0, 0, 0.55);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  justify-content: center;
}

.hero-console {
  right: 0;
  bottom: 48px;
  width: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  color: #f3f3f1;
  background: rgba(18, 18, 18, 0.97);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.hero-console .console-event {
  color: rgba(255, 255, 255, 0.82);
}

.console-top,
.console-footer {
  padding: 13px 17px;
}

.hero-index {
  color: rgba(0, 0, 0, 0.45);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
}

.section {
  padding-block: 128px;
}

.section-compact {
  padding-block: 88px;
}

.section-white {
  background: var(--paper-bright);
}

.section-dark {
  color: #fff;
  background: #101010;
}

.section-head {
  grid-template-columns: 230px 1fr;
  gap: 40px;
  padding-top: 0;
  border-top: 0;
  margin-bottom: 66px;
}

.section-label,
.eyebrow {
  color: rgba(0, 0, 0, 0.48);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

.section-dark .section-label,
.section-blue .section-label {
  color: rgba(255, 255, 255, 0.55);
}

.section-intro h2,
.display-heading {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.12;
}

.section-intro p {
  color: rgba(0, 0, 0, 0.55);
  font-size: 18px;
}

.section-dark .section-intro p,
.section-blue .section-intro p {
  color: rgba(255, 255, 255, 0.6);
}

.statement {
  max-width: 1120px;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.08;
}

.statement em {
  color: rgba(0, 0, 0, 0.42);
}

.capability-grid,
.process-grid {
  gap: 16px;
  border: 0;
}

.capability-cell,
.process-step {
  min-height: 350px;
  padding: 30px;
  border: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 0 rgba(11, 11, 11, 0.06), 0 16px 40px rgba(11, 11, 11, 0.035);
}

.capability-number,
.process-step .step-number {
  margin-bottom: 76px;
  color: var(--terminal-dark);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
}

.capability-cell h3,
.process-step h3 {
  font-size: 25px;
  font-weight: 500;
}

.capability-cell p,
.process-step p {
  color: rgba(0, 0, 0, 0.55);
}

.capability-list {
  font-family: var(--sans);
  font-size: 12px;
}

.capability-list li {
  border-color: rgba(0, 0, 0, 0.1);
}

.workflow-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: #171717;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.workflow-tabs {
  border-color: rgba(255, 255, 255, 0.1);
}

.workflow-tab {
  border-color: rgba(255, 255, 255, 0.1);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
}

.workflow-tab[aria-selected="true"] {
  color: #000;
  background: #fff;
}

.workflow-copy,
.workflow-flow {
  padding: 54px;
}

.workflow-copy {
  border-color: rgba(255, 255, 255, 0.1);
}

.workflow-copy h3 {
  font-size: 42px;
  font-weight: 400;
}

.workflow-copy p {
  color: rgba(255, 255, 255, 0.58);
}

.flow-row {
  border-color: rgba(255, 255, 255, 0.12);
}

.logo-rail {
  border: 0;
}

.integration-list {
  gap: 8px;
}

.integration-list + .integration-list {
  margin-top: 8px;
}

.integration-list li {
  min-height: 120px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
}

/* Responsive theme rules must follow all desktop theme overrides. */
@media (max-width: 1120px) {
  .container {
    width: min(calc(100% - 48px), var(--max));
  }

  .hero h1 {
    font-size: 84px;
  }

  .hero-title-tile {
    width: 94px;
    height: 76px;
    border-radius: 21px;
  }

  .hero-console {
    width: 430px;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 52px;
  }

  .form-layout {
    gap: 56px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 100px;
  }

  .site-header {
    backdrop-filter: none;
  }

  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .main-nav {
    height: 70px;
  }

  .main-nav > .brand {
    padding-block: 7px;
  }

  .nav-links {
    inset: 100px 0 0;
    min-height: calc(100dvh - 100px);
    gap: 5px;
    padding: 28px 18px;
    overflow-y: auto;
    color: #000;
    background: #f7f7f5;
    backdrop-filter: blur(18px);
  }

  .nav-links > a {
    padding: 15px 18px;
    border: 0;
    border-radius: 14px;
    font-size: 18px;
  }

  .nav-links .nav-cta {
    margin-top: 18px;
    margin-left: 0;
    color: #fff;
    background: #000;
  }

  .hero,
  .hero-inner {
    min-height: 0;
  }

  .hero-inner {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-title-line {
    gap: 12px;
  }

  .hero-title-tile {
    width: 76px;
    height: 64px;
    border-radius: 18px;
  }

  .hero-title-tile img {
    width: 36px;
    height: 36px;
  }

  .hero-console {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 600px;
    margin: 64px auto 0;
  }

  .hero-index {
    display: none;
  }

  .section {
    padding-block: 96px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 54px;
  }

  .section-intro h2,
  .display-heading,
  .statement {
    font-size: 46px;
  }

  .section-label,
  .eyebrow {
    font-size: 22px;
  }

  .workflow-copy,
  .workflow-flow {
    padding: 40px;
  }

  .control-grid {
    gap: 58px;
  }

  .control-grid h2,
  .cta-content h2 {
    font-size: 54px;
  }

  .page-hero {
    min-height: 0;
    padding-block: 82px;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: 0;
  }

  .page-hero h1,
  .legal-content h1,
  .thank-you h1 {
    font-size: 58px;
  }

  .page-hero-aside {
    max-width: 560px;
  }

  .service-row {
    grid-template-columns: 70px 1fr;
  }

  .service-row > :last-child {
    grid-column: 2;
  }

  .timeline-row {
    grid-template-columns: 100px 1fr;
  }

  .timeline-row > :last-child {
    grid-column: 2;
  }

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

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .main-nav > .brand {
    padding-right: 11px;
  }

  .hero-inner {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero-brand {
    margin-bottom: 36px;
    padding: 9px 14px;
    font-size: 11px;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: 42px;
  }

  .hero-title-line {
    gap: 8px;
  }

  .hero-title-tile {
    width: 56px;
    height: 48px;
    border-radius: 14px;
  }

  .hero-title-tile img {
    width: 28px;
    height: 28px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-console {
    display: none;
  }

  .section,
  .section-compact {
    padding-block: 78px;
  }

  .section-head {
    margin-bottom: 42px;
  }

  .section-intro h2,
  .display-heading,
  .statement,
  .control-grid h2,
  .cta-content h2,
  .about-copy h2,
  .form-intro h2 {
    font-size: 40px;
  }

  .section-intro p {
    font-size: 16px;
  }

  .capability-cell,
  .process-step {
    padding: 26px;
    border-radius: 20px;
  }

  .workflow-shell {
    border-radius: 20px;
  }

  .workflow-copy,
  .workflow-flow,
  .feature-split > div {
    padding: 28px 22px;
  }

  .integration-list li {
    min-height: 110px;
  }

  .cta-band {
    padding-block: 90px;
  }

  .page-hero {
    padding-block: 66px;
  }

  .page-hero h1,
  .legal-content h1,
  .thank-you h1 {
    font-size: 46px;
  }

  .page-hero .lead {
    font-size: 16px;
  }

  .service-row,
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px;
  }

  .service-row > :last-child,
  .timeline-row > :last-child {
    grid-column: 1;
  }

  .feature-split > div {
    min-height: 0;
  }

  .agent-form {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .footer-main {
    padding-block: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transform: none;
  }
}
