:root {
  --ink-900: #07111a;
  --ink-800: #0b1f3a;
  --ink-700: #102a43;
  --blue-700: #005f9e;
  --blue-300: #7daab9;
  --teal-700: #00818f;
  --slate-700: #343741;
  --slate-500: #5f6673;
  --slate-300: #cbd5e1;
  --slate-100: #eef2f4;
  --surface-0: #ffffff;
  --surface-50: #f8fafc;
  --gold-600: #bd9b6b;
  --font-sans: Inter, "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-mono: "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --frame: 1240px;
  --frame-padding: clamp(1.25rem, 4vw, 3rem);
  --section-space: clamp(5.5rem, 10vw, 9.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--ink-900);
  color: var(--slate-700);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-180%);
  background: var(--surface-50);
  color: var(--ink-900);
  font-weight: 700;
}

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

.section-frame {
  width: min(100%, var(--frame));
  margin-inline: auto;
  padding-inline: var(--frame-padding);
}

.hero-shell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-800) 64%, var(--ink-700) 100%);
  color: var(--surface-50);
}

.hero-shell::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(203, 213, 225, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203, 213, 225, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - (var(--frame-padding) * 2)), calc(var(--frame) - (var(--frame-padding) * 2)));
  min-height: 5.5rem;
  margin-inline: auto;
  border-bottom: 1px solid rgba(203, 213, 225, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  justify-self: start;
}

.brand img {
  width: 10.5rem;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.primary-nav a,
.header-cta {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.primary-nav a {
  color: var(--slate-300);
  transition: color 160ms ease;
}

.primary-nav a:hover {
  color: var(--surface-50);
}

.header-cta {
  justify-self: end;
  gap: 0.45rem;
  color: var(--surface-50);
  font-size: 0.86rem;
  font-weight: 700;
}

.header-cta::before {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold-600);
  content: "";
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7.5rem);
  min-height: min(52rem, calc(100svh - 5.5rem));
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.hero-copy {
  max-width: 47rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.7rem;
  color: var(--slate-300);
  font-family: var(--font-mono);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.25rem;
  height: 1px;
  flex: 0 0 auto;
  background: var(--gold-600);
  content: "";
}

.eyebrow-dark {
  color: var(--slate-500);
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.75rem;
  color: var(--surface-50);
  font-size: clamp(3.15rem, 6.2vw, 6.1rem);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero-lede {
  max-width: 42rem;
  margin-bottom: 2.25rem;
  color: var(--slate-300);
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.2rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.2;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button-primary {
  border-color: var(--surface-50);
  background: var(--surface-50);
  color: var(--ink-900);
}

.button-primary:hover {
  border-color: var(--gold-600);
  background: var(--gold-600);
}

.button-secondary {
  border-color: rgba(203, 213, 225, 0.34);
  color: var(--surface-50);
}

.button-secondary:hover {
  border-color: var(--slate-300);
  background: rgba(203, 213, 225, 0.08);
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.principles li {
  display: flex;
  align-items: center;
}

.principles li:not(:last-child)::after {
  width: 3px;
  height: 3px;
  margin-inline: 0.8rem;
  border-radius: 50%;
  background: var(--gold-600);
  content: "";
}

.workflow-panel {
  position: relative;
  margin: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(203, 213, 225, 0.26);
  border-radius: 0.5rem;
  background: rgba(7, 17, 26, 0.54);
  box-shadow: 0 2rem 5rem rgba(7, 17, 26, 0.36);
}

.workflow-panel::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  left: -1px;
  height: 3px;
  background: var(--gold-600);
  content: "";
  opacity: 0.72;
}

.workflow-panel figcaption,
.workflow-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.workflow-panel figcaption {
  margin-bottom: 1.6rem;
  color: var(--slate-300);
}

.workflow-panel figcaption span:last-child {
  color: var(--blue-300);
}

.workflow-stack {
  position: relative;
  display: grid;
  gap: 0.75rem;
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 5.2rem;
  padding: 1rem;
  border: 1px solid rgba(95, 102, 115, 0.68);
  border-radius: 0.38rem;
  background: var(--ink-800);
}

.workflow-step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  bottom: -0.8rem;
  left: 2.25rem;
  width: 1px;
  height: 0.8rem;
  background: var(--gold-600);
  content: "";
}

.workflow-step-accent {
  border-color: rgba(189, 155, 107, 0.8);
  background: linear-gradient(90deg, rgba(189, 155, 107, 0.09), transparent 60%), var(--ink-800);
}

.step-number {
  color: var(--gold-600);
  font-family: var(--font-mono);
  font-size: 0.69rem;
  font-weight: 700;
}

.step-copy {
  min-width: 0;
}

.step-copy small,
.step-copy strong {
  display: block;
}

.step-copy small {
  margin-bottom: 0.12rem;
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.step-copy strong {
  overflow: hidden;
  color: var(--surface-50);
  font-size: 0.97rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.step-state {
  padding: 0.28rem 0.45rem;
  border: 1px solid rgba(125, 170, 185, 0.32);
  border-radius: 999px;
  color: var(--slate-300);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.workflow-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(203, 213, 225, 0.14);
  color: var(--blue-300);
}

.workflow-footer span:last-child {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--slate-300);
}

.workflow-footer span:last-child::before {
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal-700);
  box-shadow: 0 0 0 3px rgba(0, 129, 143, 0.14);
  content: "";
}

.section {
  padding-block: var(--section-space);
}

.section-light,
.section-products {
  background: var(--surface-50);
  color: var(--slate-700);
}

.section-heading {
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.section-heading .eyebrow {
  margin-bottom: 1.35rem;
}

.section-heading h2,
.closing h2 {
  margin-bottom: 0;
  color: var(--ink-900);
  font-size: clamp(2.25rem, 4.7vw, 4.6rem);
  font-weight: 720;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.two-column-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
}

.two-column-heading > p {
  max-width: 31rem;
  margin-bottom: 0.4rem;
  color: var(--slate-500);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.75;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-grid li {
  position: relative;
  padding-top: 2.1rem;
  border-top: 1px solid var(--slate-300);
}

.process-grid li::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 3rem;
  height: 2px;
  background: var(--gold-600);
  content: "";
}

.process-number,
.application-index,
.product-meta {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-number {
  display: block;
  margin-bottom: 2.7rem;
  color: var(--slate-500);
}

.process-grid h3,
.application-grid h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.process-grid h3 {
  color: var(--ink-900);
}

.process-grid p {
  max-width: 31rem;
  margin-bottom: 0;
  color: var(--slate-500);
}

.invariant-strip {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr;
  gap: 0;
  margin-top: clamp(4rem, 8vw, 7rem);
  border: 1px solid var(--slate-300);
  background: var(--surface-0);
}

.invariant-strip span,
.invariant-strip strong {
  display: flex;
  align-items: center;
  min-height: 4.4rem;
  padding: 1rem;
  border-right: 1px solid var(--slate-300);
}

.invariant-strip span {
  background: var(--slate-100);
  color: var(--slate-500);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.invariant-strip strong {
  color: var(--ink-800);
  font-size: 0.86rem;
  line-height: 1.45;
}

.invariant-strip strong:last-child {
  border-right: 0;
}

.section-navy {
  position: relative;
  background: var(--ink-800);
  color: var(--surface-50);
}

.section-navy::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-600), transparent);
  content: "";
  opacity: 0.65;
}

.section-heading-dark {
  max-width: 58rem;
}

.section-heading-dark h2 {
  color: var(--surface-50);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(203, 213, 225, 0.2);
  background: rgba(203, 213, 225, 0.2);
}

.application-grid article {
  min-height: 26rem;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  background: var(--ink-800);
}

.application-index {
  display: block;
  margin-bottom: clamp(4rem, 7vw, 6.5rem);
  color: var(--gold-600);
}

.application-grid h3 {
  color: var(--surface-50);
}

.application-grid p {
  color: var(--slate-300);
}

.application-grid ul {
  display: grid;
  gap: 0.45rem;
  margin: 1.8rem 0 0;
  padding: 1.3rem 0 0;
  border-top: 1px solid rgba(203, 213, 225, 0.16);
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.application-grid li::before {
  margin-right: 0.65rem;
  color: var(--gold-600);
  content: "—";
}

.section-products {
  background: linear-gradient(180deg, var(--surface-50), var(--slate-100));
}

.products-heading {
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 34rem;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  overflow: hidden;
  border: 1px solid var(--slate-300);
  border-radius: 0.5rem;
  background: var(--surface-0);
  box-shadow: 0 1.5rem 4rem rgba(7, 17, 26, 0.07);
}

.product-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--gold-600);
  content: "";
}

.product-card-markets::before {
  background: var(--blue-700);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(4rem, 7vw, 6.5rem);
  color: var(--slate-500);
}

.product-meta span:last-child {
  color: var(--blue-700);
}

.product-logo {
  width: min(100%, 22rem);
  height: auto;
  margin-bottom: 1.7rem;
}

.product-card > p {
  max-width: 34rem;
  margin-bottom: 1.7rem;
  color: var(--slate-500);
  font-size: 1.04rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}

.product-tags li {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--slate-300);
  border-radius: 0.25rem;
  background: var(--surface-50);
  color: var(--slate-500);
  font-family: var(--font-mono);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.45rem;
  min-height: 2.75rem;
  margin-top: auto;
  border-bottom: 1px solid var(--gold-600);
  color: var(--ink-800);
  font-size: 0.87rem;
  font-weight: 750;
}

.text-link:hover {
  color: var(--blue-700);
}

.text-link-static {
  border-bottom-color: var(--slate-300);
  color: var(--slate-500);
}

.closing {
  position: relative;
  padding-block: var(--section-space);
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink-900), var(--ink-800));
  color: var(--surface-50);
}

.closing::after {
  position: absolute;
  right: -8rem;
  bottom: -13rem;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(189, 155, 107, 0.28);
  border-radius: 50%;
  content: "";
}

.closing-inner {
  position: relative;
  z-index: 1;
}

.closing h2 {
  max-width: 14ch;
  margin-bottom: 1.6rem;
  color: var(--surface-50);
}

.closing > .section-frame > p:not(.eyebrow) {
  max-width: 43rem;
  margin-bottom: 2.2rem;
  color: var(--slate-300);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.site-footer {
  background: var(--ink-900);
  color: var(--slate-300);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 0.75fr);
  gap: 3rem;
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}

.footer-brand img {
  width: 9.5rem;
  height: auto;
  margin-bottom: 1.2rem;
}

.footer-brand p,
.footer-note {
  margin-bottom: 0;
}

.footer-brand p {
  color: var(--surface-50);
  font-size: 0.92rem;
  font-weight: 650;
}

.footer-note {
  color: var(--blue-300);
  font-size: 0.77rem;
  line-height: 1.7;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  border-top: 1px solid rgba(203, 213, 225, 0.14);
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 66rem) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .hero-copy {
    max-width: 54rem;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .workflow-panel {
    width: min(100%, 46rem);
  }

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

  .application-grid article:last-child {
    grid-column: 1 / -1;
    min-height: 20rem;
  }

  .invariant-strip {
    grid-template-columns: auto 1fr;
  }

  .invariant-strip strong,
  .invariant-strip span {
    border-bottom: 1px solid var(--slate-300);
  }

  .invariant-strip strong:nth-last-child(-n + 2),
  .invariant-strip span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .invariant-strip span {
    border-right: 1px solid var(--slate-300);
  }

  .invariant-strip strong {
    border-right: 0;
  }
}

@media (max-width: 48rem) {
  :root {
    --section-space: clamp(4.5rem, 17vw, 6.5rem);
  }

  .two-column-heading,
  .process-grid,
  .application-grid,
  .product-grid,
  .footer-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .two-column-heading {
    align-items: start;
    gap: 1.7rem;
  }

  .process-grid {
    gap: 2.8rem;
  }

  .process-number {
    margin-bottom: 1.6rem;
  }

  .application-grid article {
    min-height: auto;
  }

  .application-grid article:last-child {
    grid-column: auto;
  }

  .application-index {
    margin-bottom: 3.5rem;
  }

  .product-card {
    min-height: 31rem;
  }

  .product-meta {
    margin-bottom: 4rem;
  }

  .footer-main {
    gap: 2rem;
  }

  .footer-note {
    max-width: 35rem;
  }
}

@media (max-width: 34rem) {
  .site-header {
    min-height: 4.75rem;
  }

  .brand img {
    width: 8.6rem;
  }

  .header-cta {
    font-size: 0.76rem;
  }

  .header-cta::before {
    display: none;
  }

  .hero {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .principles {
    display: grid;
    gap: 0.45rem;
  }

  .principles li:not(:last-child)::after {
    display: none;
  }

  .workflow-panel {
    padding: 1rem;
  }

  .workflow-panel figcaption,
  .workflow-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .workflow-step {
    grid-template-columns: 2.15rem minmax(0, 1fr);
    gap: 0.65rem;
    padding: 0.9rem;
  }

  .workflow-step:not(:last-child)::after {
    left: 1.95rem;
  }

  .step-state {
    grid-column: 2;
    justify-self: start;
  }

  .invariant-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .invariant-strip span,
  .invariant-strip strong,
  .invariant-strip strong:nth-last-child(-n + 2),
  .invariant-strip span:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--slate-300);
  }

  .invariant-strip strong:last-child {
    border-bottom: 0;
  }

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

  .product-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 3rem;
  }

  .text-link {
    margin-top: 1rem;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1.25rem;
  }
}

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

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

@media print {
  .hero-shell,
  .section-navy,
  .closing,
  .site-footer {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

.error-page {
  min-height: 100svh;
  padding-inline: var(--frame-padding);
  overflow: hidden;
  background:
    linear-gradient(rgba(203, 213, 225, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203, 213, 225, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, var(--ink-900), var(--ink-800));
  background-size: 72px 72px, 72px 72px, auto;
  color: var(--surface-50);
}

.error-header,
.error-main {
  width: min(100%, calc(var(--frame) - (var(--frame-padding) * 2)));
  margin-inline: auto;
}

.error-header {
  display: flex;
  align-items: center;
  min-height: 5.5rem;
  border-bottom: 1px solid rgba(203, 213, 225, 0.18);
}

.error-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: calc(100svh - 5.5rem);
  padding-block: 4rem;
}

.error-main h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  color: var(--surface-50);
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.error-main > p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: var(--slate-300);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}
