:root {
  --home-ink: #1a1a1a;
  --home-ink-soft: #5c5c5c;
  --home-muted: #85837f;
  --home-canvas: #faf9f7;
  --home-surface: #ffffff;
  --home-surface-soft: #f5f4f2;
  --home-border-subtle: #efeee9;
  --home-border: #dedcd8;
  --home-border-strong: #bfbdb8;
  --home-red: #b30000;
  --home-red-hover: #990000;
  --home-red-soft: rgba(179, 0, 0, 0.07);
  --home-green: #146c43;
  --home-shadow-sm: 0 1px 2px rgba(28, 24, 20, 0.045);
  --home-shadow-md: 0 12px 32px rgba(28, 24, 20, 0.09);
}

.home-page {
  background: var(--home-canvas);
  color: var(--home-ink);
}

.home-page::before {
  display: none;
}

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

.home-nav {
  padding: 0;
  background: rgba(250, 249, 247, 0.94);
  border-bottom-color: var(--home-border);
}

.home-nav__inner {
  display: flex;
  width: min(1320px, calc(100% - 48px));
  height: 60px;
  margin-inline: auto;
  align-items: center;
  gap: 14px;
}

.home-nav .site-nav-logo {
  margin-right: 2px;
}

.home-nav .site-nav-links {
  gap: 0;
}

.home-nav .site-nav-links a {
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 13px;
}

.home-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-nav__signin,
.home-nav__cta {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.home-nav__signin {
  color: var(--home-ink-soft);
}

.home-nav__signin:hover {
  color: var(--home-ink);
}

.home-nav__cta {
  border: 1px solid var(--home-ink);
  background: var(--home-ink);
  color: #fff;
}

.home-nav__cta:hover {
  border-color: var(--home-red);
  background: var(--home-red);
  color: #fff;
}

.home-kicker,
.section-marker,
.pilot-band__label,
.access-card__status,
.boundary-pane__label,
.command-plans__head span,
.command-plans__group,
.command-workspace__head span,
.command-message__speaker,
.command-rail__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-kicker,
.section-marker {
  display: block;
  color: var(--home-muted);
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--home-ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--home-border-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.home-text-link:hover {
  color: var(--home-red);
  text-decoration-color: var(--home-red);
}

.home-button,
.home-demo-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid var(--home-ink);
  border-radius: 8px;
  background: var(--home-ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.home-button:hover,
.home-button:focus-visible {
  border-color: var(--home-red);
  background: var(--home-red);
  color: #fff;
}

.home-hero {
  padding: 82px 0 78px;
  overflow: hidden;
  border-bottom: 1px solid var(--home-border);
  background: var(--home-canvas);
}

.home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  column-gap: clamp(48px, 6vw, 86px);
  row-gap: 20px;
  align-items: start;
}

.home-hero__copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 720px;
  align-self: end;
}

.home-hero__copy h1 {
  max-width: 710px;
  margin: 17px 0 24px;
  font-size: clamp(3.3rem, 5.7vw, 5.25rem);
  line-height: 0.99;
  letter-spacing: -0.058em;
}

.home-hero__lede {
  max-width: 670px;
  color: var(--home-ink);
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  line-height: 1.53;
}

.home-hero__context {
  max-width: 650px;
  color: var(--home-ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.home-hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin: 28px 0 25px;
  color: var(--home-ink-soft);
  font-size: 12px;
  font-weight: 650;
}

.home-hero__support {
  grid-column: 1;
  grid-row: 2;
  max-width: 680px;
  align-self: start;
}

.home-hero__assurances span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-hero__assurances span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-ink);
}

.access-card {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid var(--home-border);
  border-radius: 14px;
  background: var(--home-surface);
  box-shadow: var(--home-shadow-md);
}

.access-card__status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--home-ink-soft);
}

.access-card__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-green);
}

.access-card h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.access-card__intro {
  color: var(--home-ink-soft);
  font-size: 14px;
  line-height: 1.58;
}

.home-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.home-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.home-form__field {
  display: grid;
  gap: 6px;
}

.home-form label {
  color: var(--home-ink);
  font-size: 12px;
  font-weight: 700;
}

.home-form label small {
  margin-left: 5px;
  color: var(--home-muted);
  font-size: 10px;
  font-weight: 500;
}

.home-form input,
.home-form textarea {
  width: 100%;
  border: 1px solid var(--home-border);
  border-radius: 7px;
  background: var(--home-canvas);
  color: var(--home-ink);
  outline: 0;
  font-size: 13px;
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.home-form input {
  height: 44px;
  padding: 0 12px;
}

.home-form textarea {
  min-height: 88px;
  padding: 11px 12px;
  resize: vertical;
  line-height: 1.45;
}

.home-form input::placeholder,
.home-form textarea::placeholder {
  color: #999792;
}

.home-form input:focus,
.home-form textarea:focus {
  border-color: var(--home-red);
  background: #fff;
  box-shadow: 0 0 0 3px var(--home-red-soft);
}

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

.home-form__note,
.home-form__status {
  color: var(--home-muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.home-form__note a,
.home-form__status a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-form__status {
  min-height: 15px;
  color: var(--home-red);
  font-weight: 600;
}

.access-card__success {
  display: none;
  min-height: 346px;
  place-items: center;
  align-content: center;
  text-align: center;
}

.access-card__success-mark {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-ink);
  color: #fff;
  font-weight: 800;
}

.access-card__success p {
  color: var(--home-ink-soft);
  font-size: 14px;
}

.access-card.is-submitted .access-card__form-copy,
.access-card.is-submitted .home-form {
  display: none;
}

.access-card.is-submitted .access-card__success {
  display: grid;
}

.pilot-band {
  border-bottom: 1px solid var(--home-border);
  background: var(--home-surface);
}

.pilot-band__inner {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) auto;
  gap: 26px;
  min-height: 96px;
  align-items: center;
}

.pilot-band__label {
  color: var(--home-red);
}

.pilot-band p {
  color: var(--home-ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.pilot-band p strong {
  color: var(--home-ink);
}

.home-section {
  padding: clamp(88px, 9vw, 128px) 0;
  border-bottom: 1px solid var(--home-border);
}

.home-section h2,
.attack-section h2,
.home-final h2 {
  font-size: clamp(2.55rem, 4.5vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.053em;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(530px, 1.28fr);
  gap: clamp(58px, 7vw, 98px);
  align-items: center;
}

.why-copy h2 {
  margin: 16px 0 25px;
}

.why-copy > p {
  margin-bottom: 17px;
  color: var(--home-ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.why-copy code {
  padding: 2px 5px;
  background: var(--home-surface-soft);
  color: var(--home-ink);
  font-size: 0.82em;
}

.why-copy .home-text-link {
  margin-top: 10px;
}

.boundary-figure {
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 14px;
  background: var(--home-surface);
  box-shadow: var(--home-shadow-sm);
}

.boundary-figure figcaption {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--home-border-subtle);
  background: var(--home-surface-soft);
}

.boundary-figure figcaption span {
  color: var(--home-muted);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.boundary-figure figcaption strong {
  font-size: 14px;
}

.boundary-figure__flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px minmax(0, 1fr);
  min-height: 330px;
}

.boundary-pane {
  padding: 24px;
}

.boundary-pane__label {
  display: block;
  margin-bottom: 18px;
  color: var(--home-muted);
}

.boundary-pane dl {
  display: grid;
  gap: 9px;
}

.boundary-pane dl > div {
  min-width: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--home-border-subtle);
}

.boundary-pane dl > div:last-child {
  border-bottom: 0;
}

.boundary-pane dt {
  margin-bottom: 3px;
  color: var(--home-muted);
  font-size: 10px;
}

.boundary-pane dd {
  overflow: hidden;
  color: var(--home-ink);
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.boundary-pane dd code {
  padding: 0;
  background: transparent;
  color: var(--home-red);
  font-size: 11px;
}

.boundary-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--home-ink);
  color: #fff;
  text-align: center;
}

.boundary-gate span {
  margin-bottom: 18px;
  color: #aaa7a2;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.boundary-gate strong {
  font-size: 13px;
  line-height: 1.45;
}

.boundary-gate small {
  margin-top: 8px;
  color: #ccc9c4;
  font-size: 9px;
}

.boundary-figure__result {
  padding: 17px 22px;
  border-top: 1px solid var(--home-border-subtle);
  color: var(--home-ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.boundary-figure__result strong {
  color: var(--home-ink);
}

.home-product {
  background: var(--home-surface);
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.64fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 46px;
}

.product-intro h2 {
  max-width: 710px;
  margin-top: 14px;
}

.product-intro > p {
  color: var(--home-ink-soft);
  font-size: 15px;
  line-height: 1.67;
}

.command-center {
  overflow: hidden;
  border: 1px solid var(--home-border-strong);
  border-radius: 14px;
  background: var(--home-surface);
  box-shadow: var(--home-shadow-md);
  font-size: 12px;
}

.command-center__toolbar {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  gap: 16px;
  min-height: 51px;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid var(--home-border);
  background: var(--home-surface-soft);
}

.command-center__brand {
  font: 800 14px "Courier New", Courier, monospace;
  letter-spacing: 1.5px;
}

.command-center__area {
  padding-left: 16px;
  border-left: 1px solid var(--home-border);
  color: var(--home-ink-soft);
  font-size: 10px;
  font-weight: 700;
}

.command-center__sample {
  justify-self: center;
  color: var(--home-muted);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.command-center__attention {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--home-ink-soft);
  font-size: 9px;
  font-weight: 700;
}

.command-center__attention i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-red);
}

.command-center__attention b {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-red);
  color: #fff;
  font: 700 8px var(--font-mono);
}

.command-center__avatar {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-ink);
  color: #fff;
  font: 700 9px var(--font-mono);
  line-height: 1;
}

.command-center__body {
  display: grid;
  grid-template-columns: 208px minmax(0, 1fr) 254px;
  min-height: 600px;
}

.command-plans {
  min-width: 0;
  border-right: 1px solid var(--home-border);
  background: var(--home-surface-soft);
}

.command-plans__head {
  min-height: 61px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--home-border-subtle);
  background: var(--home-surface);
}

.command-plans__head span,
.command-plans__head strong {
  display: block;
}

.command-plans__head span {
  color: var(--home-muted);
}

.command-plans__head strong {
  margin-top: 1px;
  font-size: 13px;
}

.command-plans__search {
  height: 32px;
  margin: 10px 11px 6px;
  padding: 7px 10px;
  border: 1px solid var(--home-border);
  border-radius: 6px;
  background: var(--home-surface);
  color: var(--home-muted);
  font-size: 9px;
}

.command-plans__group {
  display: block;
  padding: 10px 14px 5px;
  color: var(--home-muted);
  font-size: 8px;
}

.command-plan {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
  min-height: 53px;
  align-items: center;
  padding: 8px 12px 8px 14px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.command-plan--active {
  border-color: var(--home-border-subtle);
  background: var(--home-surface);
}

.command-plan strong,
.command-plan span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.command-plan strong {
  font-size: 10px;
}

.command-plan span {
  margin-top: 2px;
  color: var(--home-muted);
  font-size: 8px;
}

.command-plan i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-green);
}

.command-plan b {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-red);
  color: #fff;
  font: 700 8px var(--font-mono);
}

.command-workspace {
  min-width: 0;
  background: var(--home-surface);
}

.command-workspace__head {
  display: flex;
  min-height: 61px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--home-border-subtle);
}

.command-workspace__head span {
  display: block;
  color: var(--home-muted);
  font-size: 8px;
}

.command-workspace__head h3 {
  margin-top: 2px;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.command-state {
  display: inline-flex !important;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid var(--home-border-subtle);
  border-radius: 13px;
  background: var(--home-surface-soft);
  color: var(--home-ink-soft) !important;
  font: 600 8px var(--font-mono) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.command-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-green);
}

.command-context {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  overflow: hidden;
  border-bottom: 1px solid var(--home-border-subtle);
  background: var(--home-surface-soft);
  white-space: nowrap;
}

.command-context > span {
  margin-right: 3px;
  color: var(--home-muted);
  font: 700 8px var(--font-mono);
  text-transform: uppercase;
}

.command-context code {
  padding: 3px 5px;
  border: 1px solid var(--home-border);
  border-radius: 4px;
  background: var(--home-surface);
  color: var(--home-red);
  font-size: 7px;
}

.command-context b {
  margin-left: auto;
  color: var(--home-red);
  font: 600 8px var(--font-mono);
}

.command-timeline {
  width: min(650px, calc(100% - 34px));
  margin-inline: auto;
  padding: 24px 0 30px;
}

.command-message {
  padding-bottom: 18px;
}

.command-message__speaker {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--home-muted);
  font-size: 8px;
}

.command-message__speaker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-ink);
}

.command-message p {
  max-width: 590px;
  margin-top: 7px;
  color: var(--home-ink-soft);
  font-size: 11px;
  line-height: 1.58;
}

.command-object {
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 10px;
  background: var(--home-surface);
  box-shadow: var(--home-shadow-sm);
}

.command-object > header {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 13px;
  border-bottom: 1px solid var(--home-border-subtle);
  background: var(--home-surface-soft);
}

.command-object > header span,
.command-object > header strong {
  display: block;
}

.command-object > header div > span {
  color: var(--home-muted);
  font: 700 8px var(--font-mono);
  text-transform: uppercase;
}

.command-object > header strong {
  margin-top: 2px;
  font-size: 11px;
}

.command-object__state {
  flex: 0 0 auto;
  padding: 4px 6px;
  border: 1px solid rgba(179, 0, 0, 0.2);
  border-radius: 5px;
  background: var(--home-red-soft);
  color: var(--home-red);
  font: 700 7px var(--font-mono);
  text-transform: uppercase;
}

.command-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 8px 13px;
}

.command-fields > div {
  min-width: 0;
  padding: 9px 0;
  border-bottom: 1px solid var(--home-border-subtle);
}

.command-fields > div:nth-child(odd) {
  padding-right: 12px;
}

.command-fields > div:nth-child(even) {
  padding-left: 12px;
  border-left: 1px solid var(--home-border-subtle);
}

.command-fields > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.command-fields dt {
  color: var(--home-muted);
  font-size: 8px;
}

.command-fields dd {
  margin-top: 2px;
  overflow: hidden;
  color: var(--home-ink);
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.command-fields code {
  padding: 0;
  background: transparent;
  color: var(--home-red);
  font-size: 8px;
}

.command-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 10px 13px;
  border-top: 1px solid var(--home-border-subtle);
  color: var(--home-ink-soft);
  font-size: 8px;
}

.command-checks span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.command-checks i {
  color: var(--home-green);
  font-style: normal;
  font-weight: 800;
}

.command-object > footer {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 11px 8px 13px;
  border-top: 1px solid var(--home-border-subtle);
  background: var(--home-surface-soft);
}

.command-object > footer > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--home-ink-soft);
  font-size: 8px;
}

.command-object > footer > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-red);
}

.command-object > footer div {
  display: flex;
  gap: 5px;
}

.command-object button,
.command-approval button {
  min-height: 29px;
  padding: 0 8px;
  border: 1px solid var(--home-border);
  border-radius: 5px;
  background: var(--home-surface);
  color: var(--home-ink-soft);
  font: 700 8px var(--font-mono);
}

.command-object button:last-child,
.command-approval button {
  border-color: var(--home-ink);
  background: var(--home-ink);
  color: #fff;
}

.command-receipt {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) auto;
  gap: 9px;
  min-height: 52px;
  margin-top: 12px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--home-border-subtle);
  border-radius: 8px;
  background: var(--home-surface-soft);
}

.command-receipt > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--home-border);
  border-radius: 50%;
  background: var(--home-surface);
  color: var(--home-green);
  font-weight: 800;
}

.command-receipt strong,
.command-receipt small {
  display: block;
}

.command-receipt strong {
  font-size: 9px;
}

.command-receipt small {
  margin-top: 1px;
  color: var(--home-muted);
  font-size: 7px;
}

.command-receipt > code {
  padding: 0;
  background: transparent;
  color: var(--home-muted);
  font-size: 7px;
}

.command-rail {
  min-width: 0;
  border-left: 1px solid var(--home-border);
  background: var(--home-surface-soft);
}

.command-rail__head {
  min-height: 61px;
  padding: 12px;
  border-bottom: 1px solid var(--home-border-subtle);
  background: var(--home-surface);
}

.command-rail__head span,
.command-rail__head strong {
  display: block;
}

.command-rail__head span {
  color: var(--home-muted);
  font: 700 8px var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.command-rail__head strong {
  margin-top: 3px;
  color: var(--home-red);
  font-size: 11px;
}

.command-rail__section {
  padding: 14px 12px;
  border-bottom: 1px solid var(--home-border-subtle);
}

.command-rail__label {
  display: block;
  margin-bottom: 7px;
  color: var(--home-muted);
  font-size: 8px;
}

.command-approval {
  padding: 12px;
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: var(--home-surface);
  box-shadow: var(--home-shadow-sm);
}

.command-approval__person {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
}

.command-approval__person i {
  display: grid;
  grid-column: 1;
  grid-row: 1 / 3;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-ink);
  color: #fff;
  font: normal 700 7px var(--font-mono);
}

.command-approval__person b {
  grid-column: 2;
  font-size: 9px;
}

.command-approval__person small {
  grid-column: 2;
  color: var(--home-muted);
  font-size: 7px;
}

.command-approval h4 {
  margin: 14px 0 5px;
  font-size: 12px;
}

.command-approval p {
  color: var(--home-muted);
  font-size: 8px;
  line-height: 1.5;
}

.command-approval button {
  width: 100%;
  margin-top: 10px;
}

.command-audit {
  list-style: none;
}

.command-audit li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 7px;
  padding: 8px 0;
  border-bottom: 1px solid var(--home-border-subtle);
}

.command-audit li:last-child {
  border-bottom: 0;
}

.command-audit time {
  color: var(--home-muted);
  font: 500 7px var(--font-mono);
}

.command-audit span {
  color: var(--home-ink-soft);
  font-size: 8px;
  line-height: 1.45;
}

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

.product-principles > div {
  padding: 24px 28px 25px 0;
}

.product-principles > div + div {
  padding-left: 28px;
  border-left: 1px solid var(--home-border);
}

.product-principles dt {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
}

.product-principles dd {
  color: var(--home-ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.attack-section {
  padding: clamp(90px, 9vw, 126px) 0;
  background: #171717;
  color: #fff;
}

.attack-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(500px, 1.25fr);
  gap: clamp(60px, 8vw, 110px);
  align-items: center;
}

.attack-copy .section-marker {
  color: #9e9b96;
}

.attack-copy h2 {
  margin: 15px 0 22px;
  color: #fff;
}

.attack-copy p {
  color: #c6c3be;
  font-size: 15px;
  line-height: 1.67;
}

.home-demo-button {
  min-height: 52px;
  margin-top: 28px;
  border-color: var(--home-red);
  background: var(--home-red);
  color: #fff;
  font-size: 15px;
}

.home-demo-button:hover,
.home-demo-button:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--home-ink);
}

.home-demo-note {
  display: block;
  margin-top: 10px;
  color: #8f8c88;
  font: 500 9px var(--font-mono);
}

.attack-evidence {
  overflow: hidden;
  border: 1px solid #3a3937;
  border-radius: 12px;
  background: #202020;
}

.attack-evidence__row {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 24px;
  padding: 23px 25px;
  border-bottom: 1px solid #383735;
}

.attack-evidence__row > span {
  color: #989590;
  font: 700 9px var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.attack-evidence__row p {
  color: #d8d5d0;
  font-size: 12px;
  line-height: 1.55;
}

.attack-evidence__row--outbound > span {
  color: #ff8181;
}

.attack-evidence pre,
.attack-evidence code {
  margin: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  font: 500 12px/1.75 var(--font-mono);
}

.attack-evidence__result {
  padding: 18px 25px;
  color: #aaa7a2;
  font-size: 11px;
  line-height: 1.55;
}

.attack-evidence__result strong {
  color: #fff;
}

.home-security {
  background: var(--home-canvas);
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(500px, 1.3fr);
  gap: clamp(60px, 8vw, 110px);
  align-items: start;
}

.security-copy {
  position: sticky;
  top: 106px;
}

.security-copy h2 {
  margin: 15px 0 23px;
}

.security-copy p {
  margin-bottom: 24px;
  color: var(--home-ink-soft);
  font-size: 15px;
  line-height: 1.68;
}

.security-ledger {
  border-top: 1px solid var(--home-border-strong);
}

.security-ledger > div {
  display: grid;
  grid-template-columns: minmax(145px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--home-border);
}

.security-ledger dt {
  color: var(--home-ink);
  font-size: 13px;
  font-weight: 800;
}

.security-ledger dd {
  color: var(--home-ink-soft);
  font-size: 13px;
  line-height: 1.57;
}

.home-industries {
  background: var(--home-surface);
}

.industry-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.58fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 47px;
}

.industry-intro p {
  color: var(--home-ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.industry-list {
  border-top: 1px solid var(--home-border-strong);
}

.industry-row {
  display: grid;
  grid-template-columns: 58px minmax(170px, 0.42fr) minmax(0, 1fr) 28px;
  gap: 20px;
  min-height: 104px;
  align-items: center;
  border-bottom: 1px solid var(--home-border);
  color: var(--home-ink);
  transition: background-color 150ms ease, color 150ms ease;
}

.industry-row:hover,
.industry-row:focus-visible {
  background: var(--home-surface-soft);
  color: var(--home-ink);
}

.industry-row__number {
  color: var(--home-muted);
  font: 600 10px var(--font-mono);
}

.industry-row h3 {
  font-size: 21px;
  letter-spacing: -0.035em;
}

.industry-row p {
  color: var(--home-ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.industry-row__arrow {
  color: var(--home-muted);
  font-size: 18px;
}

.industry-row:hover .industry-row__arrow {
  color: var(--home-red);
}

.home-credibility {
  padding-block: 76px;
  background: var(--home-canvas);
}

.credibility-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(450px, 1.25fr);
  gap: 80px;
  align-items: center;
}

.credibility-layout h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.credibility-layout > p {
  color: var(--home-ink-soft);
  font-size: 14px;
  line-height: 1.68;
}

.credibility-layout > p strong {
  color: var(--home-ink);
}

.home-final {
  padding: 74px 0;
  background: var(--home-surface);
}

.home-final__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.home-final h2 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
}

.home-final p {
  max-width: 650px;
  margin-top: 10px;
  color: var(--home-ink-soft);
  font-size: 15px;
}

.home-final .home-button {
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .home-nav .site-nav-links a:nth-child(2) {
    display: none;
  }

  .home-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 44px;
  }

  .command-center__body {
    grid-template-columns: 184px minmax(0, 1fr);
  }

  .command-rail {
    display: none;
  }
}

@media (max-width: 900px) {
  .home-nav .site-nav-links {
    display: none;
  }

  .home-nav .site-nav-divider {
    margin-right: auto;
  }

  .home-hero {
    padding-top: 64px;
  }

  .home-hero__inner,
  .why-layout,
  .product-intro,
  .attack-layout,
  .security-layout,
  .industry-intro,
  .credibility-layout {
    grid-template-columns: 1fr;
  }

  .home-hero__copy {
    max-width: 780px;
  }

  .home-hero__copy,
  .access-card,
  .home-hero__support {
    grid-column: 1;
    grid-row: auto;
  }

  .home-hero__copy h1 {
    max-width: 780px;
  }

  .access-card {
    width: min(100%, 680px);
  }

  .pilot-band__inner {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 12px 22px;
    padding-block: 20px;
  }

  .pilot-band__inner .home-text-link {
    grid-column: 2;
  }

  .why-layout,
  .attack-layout,
  .security-layout,
  .credibility-layout {
    gap: 48px;
  }

  .product-intro,
  .industry-intro {
    gap: 20px;
  }

  .security-copy {
    position: static;
  }

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

  .product-principles > div,
  .product-principles > div + div {
    padding: 20px 0;
    border-left: 0;
    border-bottom: 1px solid var(--home-border);
  }

  .product-principles > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  .home-shell,
  .home-nav__inner {
    width: min(100% - 30px, 1220px);
  }

  .home-nav__signin {
    display: none;
  }

  .home-nav__cta {
    padding-inline: 10px;
    font-size: 10px;
  }

  .home-nav__inner {
    gap: 9px;
  }

  .home-nav .site-nav-divider {
    height: 24px;
  }

  .home-hero {
    padding: 48px 0 54px;
  }

  .home-hero__copy h1 {
    font-size: clamp(2.65rem, 11.5vw, 3.4rem);
  }

  .home-hero__assurances {
    display: grid;
  }

  .home-form__row {
    grid-template-columns: 1fr;
  }

  .pilot-band__inner {
    display: block;
  }

  .pilot-band__inner p {
    margin: 8px 0 11px;
  }

  .home-section,
  .attack-section {
    padding-block: 76px;
  }

  .home-section h2,
  .attack-section h2 {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
  }

  .boundary-figure__flow {
    grid-template-columns: 1fr;
  }

  .boundary-gate {
    min-height: 112px;
  }

  .boundary-gate span {
    margin-bottom: 8px;
  }

  .boundary-pane {
    padding: 20px;
  }

  .boundary-figure figcaption {
    display: block;
  }

  .boundary-figure figcaption strong {
    display: block;
    margin-top: 5px;
  }

  .command-center__toolbar {
    grid-template-columns: 1fr auto auto;
  }

  .command-center__area,
  .command-center__sample {
    display: none;
  }

  .command-center__body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .command-plans {
    display: none;
  }

  .command-workspace__head {
    align-items: flex-start;
  }

  .command-state {
    display: none !important;
  }

  .command-context code:nth-of-type(n + 2),
  .command-context b {
    display: none;
  }

  .command-timeline {
    width: calc(100% - 24px);
    padding-top: 18px;
  }

  .command-object > footer {
    display: block;
  }

  .command-object > footer div {
    margin-top: 9px;
  }

  .command-receipt > code {
    display: none;
  }

  .attack-evidence__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .security-ledger > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .industry-row {
    grid-template-columns: 38px minmax(0, 1fr) 24px;
    gap: 10px;
    padding: 19px 0;
  }

  .industry-row h3 {
    font-size: 19px;
  }

  .industry-row p {
    grid-column: 2 / 4;
  }

  .industry-row__arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .home-final__inner {
    display: block;
  }

  .home-final .home-button {
    margin-top: 25px;
  }
}

@media (max-width: 430px) {
  .home-nav .site-nav-divider {
    display: none;
  }

  .home-nav__inner {
    justify-content: space-between;
  }

  .access-card {
    padding: 24px 20px;
  }

  .command-center {
    margin-inline: -4px;
  }

  .command-center__toolbar {
    padding-inline: 11px;
  }

  .command-center__attention {
    font-size: 0;
    gap: 5px;
  }

  .command-center__attention i {
    display: none;
  }

  .command-fields {
    grid-template-columns: 1fr;
  }

  .command-fields > div:nth-child(odd),
  .command-fields > div:nth-child(even) {
    padding: 8px 0;
    border-left: 0;
    border-bottom: 1px solid var(--home-border-subtle);
  }

  .command-fields > div:last-child {
    border-bottom: 0;
  }

  .command-checks span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-button,
  .home-demo-button,
  .industry-row,
  .home-form input,
  .home-form textarea {
    transition: none;
  }
}
