:root {
  --black: #0c0c0c;
  --black-2: #101010;
  --black-3: #171717;
  --panel: #1c1b1b;
  --panel-2: #242323;
  --white: #e5e5e5;
  --white-hot: #f8f5f2;
  --concrete: #a8a29e;
  --concrete-2: #6f6864;
  --vermillion: #ff4d00;
  --vermillion-dim: #a33209;
  --line: rgba(168, 162, 158, 0.22);
  --line-strong: rgba(229, 229, 229, 0.42);
  --max: 1440px;
  --mono: "JetBrains Mono", "Courier New", monospace;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  min-height: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image: url("assets/txe-entry-stitch.png");
  background-position: center top;
  background-size: cover;
  opacity: 0.075;
  filter: grayscale(1) contrast(1.15);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: rgba(12, 12, 12, 0.86);
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 50;
  padding: 10px 12px;
  background: var(--vermillion);
  color: var(--black);
  transform: translateY(-140%);
}

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

.app-shell {
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 18px clamp(16px, 3vw, 48px);
  border-bottom: 1px solid rgba(168, 162, 158, 0.14);
  background: rgba(12, 12, 12, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffc2b0;
  font-family: var(--mono);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px clamp(12px, 1.5vw, 22px);
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.nav a,
.footer-links a,
.micro-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--white);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 800;
  text-decoration-color: rgba(255, 77, 0, 0.7);
  text-underline-offset: 6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav a[aria-current="page"] {
  color: #ffc2b0;
}

.gated-link {
  color: #ffc2b0 !important;
}

.lock-icon {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  color: var(--vermillion);
  transform: translateY(1px);
}

.lock-icon::before {
  position: absolute;
  left: 2.5px;
  top: -7px;
  width: 6px;
  height: 8px;
  content: "";
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.lock-icon.large {
  width: 18px;
  height: 14px;
  transform: translateY(0);
}

.lock-icon.large::before {
  left: 3.5px;
  top: -10px;
  width: 9px;
  height: 10px;
}

.lock-banner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 16px clamp(16px, 3vw, 48px);
  border-bottom: 1px solid rgba(255, 77, 0, 0.58);
  background: var(--vermillion);
  color: var(--black);
  font-family: var(--mono);
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.lock-banner .lock-icon {
  color: var(--black);
  flex: 0 0 auto;
}

.lock-banner a {
  color: var(--black);
  text-underline-offset: 5px;
}

.top-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.seat-count,
.status-tag,
.eyebrow,
.kicker,
.label,
.field label,
.section-index,
.metric span,
.timeline time {
  font-family: var(--mono);
  font-weight: 800;
  text-transform: uppercase;
}

.seat-count {
  color: var(--white);
  font-size: clamp(12px, 1.5vw, 16px);
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--white);
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  border-color: var(--vermillion);
  background: var(--vermillion);
  color: var(--black);
}

.button.ghost {
  border-color: transparent;
  padding-inline: 0;
  min-height: 0;
  color: #ffc2b0;
}

.button.full {
  width: 100%;
}

.button:hover,
.button:focus-visible,
.nav a:hover,
.nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  outline: 1px solid var(--vermillion);
  outline-offset: 4px;
}

.main {
  flex: 1;
}

.container {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-inline: clamp(16px, 3vw, 48px);
}

.hero {
  position: relative;
  display: grid;
  min-height: auto;
  align-items: start;
  overflow: hidden;
  padding-block: clamp(44px, 5vw, 76px) 48px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(32px, 5vw, 58px);
}

.hero-copy {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: #ffc2b0;
  font-size: clamp(13px, 1.5vw, 16px);
}

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: var(--mono);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  color: var(--white-hot);
  font-size: clamp(30px, 5vw, 60px);
}

h1 .hot,
h2 .hot,
.hot {
  color: var(--vermillion);
}

.lead {
  max-width: 780px;
  margin: 18px auto 0;
  color: #e5c9c0;
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 700;
  line-height: 1.5;
}

.hero-video-frame {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  width: 100%;
  aspect-ratio: 21 / 9;
  height: auto;
  margin: 0;
  overflow: hidden;
  border-block: 1px solid rgba(255, 77, 0, 0.32);
  background: var(--black);
}

.hero-video-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: rgba(12, 12, 12, 0.52);
  border-block: 1px solid rgba(168, 162, 158, 0.16);
}

.hero-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.55) contrast(1.12) brightness(0.62);
}

.hero-video-frame figcaption {
  position: absolute;
  left: clamp(16px, 3vw, 48px);
  bottom: 16px;
  z-index: 2;
  margin: 0;
  color: #ffc2b0;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.panel,
.card,
.dispatch,
.form-frame,
.side-panel,
.paper-section,
.legal-section {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(23, 23, 23, 0.84);
}

.card {
  min-height: 184px;
  padding: 28px;
}

.card::after,
.form-frame::after,
.side-panel::after {
  position: absolute;
  inset: 4px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(168, 162, 158, 0.16);
}

.kicker {
  margin: 0 0 12px;
  color: var(--vermillion);
  font-size: 13px;
}

.card h2,
.card h3 {
  margin-bottom: 16px;
  font-size: clamp(22px, 2.2vw, 30px);
}

.card p,
.paper-section p,
.legal-section p,
.dispatch p,
.side-panel p {
  margin: 0;
  color: #e1d1cc;
  font-size: 16px;
  line-height: 1.62;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(255, 77, 0, 0.36);
  background: #171717;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker span {
  padding: 12px 18px;
  color: #ffc2b0;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding-block: clamp(56px, 8vw, 108px);
  border-top: 1px solid rgba(168, 162, 158, 0.12);
}

.section-head {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 36px;
}

.section-index {
  color: #ffc2b0;
  font-size: 17px;
}

.section-head h2 {
  font-size: clamp(30px, 5vw, 58px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 32px;
  align-items: start;
}

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

.manifesto-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 20px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
}

.manifesto-row:last-child {
  border-bottom: 0;
}

.manifesto-row strong {
  color: var(--vermillion);
  font-family: var(--mono);
}

.manifesto-row p {
  margin: 0;
  color: #dfd2ce;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.45;
}

.image-panel {
  padding: 24px;
  border: 1px solid rgba(255, 77, 0, 0.28);
  background: rgba(36, 35, 35, 0.72);
}

.image-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(229, 229, 229, 0.1);
  filter: grayscale(1) contrast(1.05);
}

.image-panel figcaption {
  margin-top: 18px;
  color: #e5c9c0;
  font-family: var(--mono);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

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

.metric {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--vermillion);
  font-family: var(--mono);
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 16px;
  color: #d6cbc7;
  font-size: 13px;
}

.footer {
  margin-top: auto;
  border-top: 1px solid rgba(168, 162, 158, 0.18);
  background: rgba(10, 10, 10, 0.94);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding-block: 46px;
}

.footer-mark {
  margin: 0 0 18px;
  color: var(--white);
  font-family: var(--mono);
  font-weight: 800;
  text-transform: uppercase;
}

.copyright {
  margin: 0;
  color: var(--concrete);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-end;
}

.auth-layout,
.content-page {
  padding-block: clamp(56px, 8vw, 108px);
}

.auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 32px;
  align-items: stretch;
}

.auth-panel {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 77, 0, 0.34);
  background: rgba(16, 16, 16, 0.9);
}

.auth-panel h1,
.content-title h1 {
  font-size: clamp(38px, 6vw, 76px);
}

.auth-panel .lead,
.content-title .lead {
  margin-inline: 0;
  text-align: left;
}

.auth-form {
  display: grid;
  gap: 20px;
  margin-top: 36px;
  max-width: 520px;
}

.field {
  display: grid;
  gap: 10px;
}

.field label {
  color: #ffc2b0;
  font-size: 13px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(168, 162, 158, 0.36);
  border-bottom-color: rgba(255, 77, 0, 0.45);
  background: rgba(229, 229, 229, 0.055);
  color: var(--white);
  padding: 15px 16px;
  outline: 0;
}

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

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

.error-message {
  display: none;
  color: #ff9d80;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.field.invalid .error-message {
  display: block;
}

.field.invalid input,
.field.invalid textarea {
  border-color: #ff9d80;
}

.form-status {
  min-height: 22px;
  color: #ffc2b0;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.side-panel {
  min-height: 100%;
  padding: 28px;
}

.side-panel h2,
.side-panel h3 {
  margin-bottom: 24px;
  font-size: 22px;
}

.protocol-list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.protocol-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  color: #ddd2cf;
  font-family: var(--mono);
  font-weight: 800;
  line-height: 1.55;
  text-transform: uppercase;
}

.protocol-list li::before {
  color: var(--vermillion);
  content: "+";
}

.application-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: 32px;
  align-items: start;
}

.form-frame {
  padding: clamp(22px, 4vw, 38px);
}

.progress {
  margin-bottom: 34px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #ffc2b0;
  font-family: var(--mono);
  font-weight: 800;
  text-transform: uppercase;
}

.progress-bar {
  height: 8px;
  margin-top: 12px;
  background: rgba(229, 229, 229, 0.18);
}

.progress-fill {
  width: 98%;
  height: 100%;
  background: var(--vermillion);
}

.form-section {
  display: grid;
  gap: 22px;
  padding-block: 30px;
  border-top: 1px solid rgba(168, 162, 158, 0.18);
}

.form-section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.form-section h2 {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--white-hot);
  font-size: 20px;
}

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

.clearance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.clearance-grid input {
  position: absolute;
  opacity: 0;
}

.clearance-grid label {
  position: relative;
  display: flex;
  gap: 10px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168, 162, 158, 0.38);
  color: var(--white);
  font-family: var(--mono);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.clearance-grid input:checked + label {
  border-color: var(--vermillion);
  background: var(--vermillion);
  color: var(--black);
}

.help-tip {
  position: relative;
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 12px;
  line-height: 1;
}

.help-tip::after {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 8;
  width: min(280px, 70vw);
  padding: 12px;
  border: 1px solid rgba(255, 77, 0, 0.58);
  background: #101010;
  color: var(--white);
  content: attr(aria-label);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  text-transform: none;
  transform: translate(-50%, 6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.clearance-grid input:checked + label .help-tip::after {
  background: #0c0c0c;
  color: var(--white);
}

.help-tip:hover::after,
.help-tip:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.paper-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.paper-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.paper-sidebar .metric {
  border: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.paper-stack,
.dispatch-stack {
  display: grid;
  gap: 22px;
}

.paper-section,
.legal-section,
.dispatch {
  padding: clamp(24px, 4vw, 42px);
}

.paper-section h2,
.legal-section h2,
.dispatch h2 {
  margin-bottom: 20px;
  font-size: clamp(24px, 3vw, 34px);
}

.paper-section p + p,
.legal-section p + p,
.dispatch p + p {
  margin-top: 18px;
}

.legal-document {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 64px);
  border-left: 1px solid rgba(255, 77, 0, 0.42);
  border-right: 1px solid rgba(168, 162, 158, 0.2);
  background: rgba(14, 14, 14, 0.82);
}

.legal-document > p,
.terms-section p,
.terms-section li {
  color: #e1d1cc;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.72;
}

.legal-document > p {
  margin: 0 0 20px;
}

.terms-section {
  padding-top: clamp(28px, 4vw, 46px);
  margin-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid rgba(168, 162, 158, 0.18);
}

.terms-section h2 {
  margin: 0 0 18px;
  color: var(--white-hot);
  font-family: var(--mono);
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
}

.terms-section p {
  margin: 0;
}

.terms-section p + p,
.terms-section ol {
  margin-top: 16px;
}

.terms-section ol {
  padding-left: 24px;
}

.terms-section li + li {
  margin-top: 10px;
}

.paper-section.longform {
  padding-block: clamp(32px, 5vw, 60px);
}

.paper-section.longform h2 {
  max-width: 900px;
  font-size: clamp(30px, 4.2vw, 52px);
}

.paper-section.longform p {
  max-width: 920px;
  font-size: clamp(17px, 1.6vw, 20px);
}

.paper-section.longform .kicker {
  font-size: 14px;
}

.quote-band {
  padding: clamp(28px, 5vw, 54px);
  border-left: 6px solid var(--vermillion);
  background: rgba(255, 77, 0, 0.08);
}

.quote-band p {
  margin: 0;
  color: var(--white-hot);
  font-family: var(--mono);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.timeline article:last-child {
  border-bottom: 0;
}

.timeline time {
  color: var(--vermillion);
  font-size: 13px;
}

.timeline h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.redacted {
  display: inline-block;
  min-width: 74px;
  height: 0.9em;
  background: var(--white);
  vertical-align: -0.08em;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.use-case-card {
  position: relative;
  display: grid;
  min-height: 250px;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(23, 23, 23, 0.86);
}

.use-case-card::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 26px;
  height: 26px;
  content: "";
  border-right: 2px solid var(--vermillion);
  border-bottom: 2px solid var(--vermillion);
}

.use-case-card h2 {
  font-size: clamp(20px, 2.2vw, 28px);
}

.use-case-card p:not(.kicker) {
  margin: 0;
  color: #e1d1cc;
  font-size: 15px;
  line-height: 1.55;
}

.use-case-card .status-tag {
  margin-top: auto;
  color: #ffc2b0;
  font-size: 12px;
}

.success-box {
  padding: 26px;
  border: 1px solid rgba(255, 77, 0, 0.46);
  background: rgba(255, 77, 0, 0.1);
}

.success-box h3 {
  margin-bottom: 12px;
  color: var(--vermillion);
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .nav,
  .top-actions {
    justify-content: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

  .top-actions {
    flex-wrap: wrap;
  }

  .signal-grid,
  .metrics,
  .split,
  .auth-grid,
  .application-grid,
  .paper-layout {
    grid-template-columns: 1fr;
  }

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

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

  .metric:last-child {
    border-bottom: 0;
  }

  .paper-sidebar {
    position: static;
  }
}

@media (max-width: 1320px) and (min-width: 981px) {
  .topbar {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .top-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 720px;
    align-items: center;
    padding-block: 56px 34px;
  }

  .hero-video-frame {
    height: 720px;
    aspect-ratio: auto;
  }

  .hero-video-frame video {
    object-position: 40% top;
  }

  .hero-video-frame figcaption {
    left: 16px;
    bottom: 10px;
    max-width: calc(100% - 32px);
    font-size: 10px;
  }

  .hero-inner {
    gap: 22px;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(31px, 11vw, 44px);
    line-height: 1.02;
  }

  .lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.45;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .topbar {
    position: relative;
    gap: 10px;
    min-height: 0;
    padding: 14px;
  }

  .brand {
    font-size: 20px;
  }

  .nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a,
  .footer-links a,
  .micro-link {
    font-size: 10.5px;
    white-space: nowrap;
    overflow-wrap: anywhere;
  }

  .lock-icon {
    flex: 0 0 auto;
    width: 11px;
    height: 10px;
  }

  .lock-icon::before {
    left: 2px;
    top: -7px;
    width: 5px;
    height: 7px;
  }

  .top-actions {
    gap: 12px;
  }

  .seat-count {
    font-size: 12px;
  }

  .button {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 12.5px;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .field-row,
  .clearance-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .signal-grid {
    gap: 14px;
  }

  .card {
    min-height: 0;
    padding: 20px;
  }

  .card h2,
  .card h3 {
    font-size: 20px;
  }

  .content-page {
    padding-block: 44px;
  }

  .content-title h1 {
    font-size: clamp(34px, 13vw, 52px);
  }

  .content-title .lead {
    max-width: 100%;
  }

  .section {
    padding-block: 44px;
  }

  .form-frame,
  .side-panel,
  .paper-section,
  .dispatch {
    padding: 20px;
    min-width: 0;
  }

  .field input,
  .field textarea,
  .field select {
    min-width: 0;
    font-size: 14px;
  }

  .field label,
  .progress-label,
  .form-status,
  .kicker {
    overflow-wrap: anywhere;
  }

  .progress-label {
    display: grid;
  }

  .form-section h2 {
    align-items: flex-start;
    font-size: 17px;
  }

  .clearance-grid label {
    justify-content: space-between;
    min-height: 52px;
    padding-inline: 14px;
  }

  .legal-document {
    padding: 22px 18px;
  }

  .terms-section h2 {
    font-size: 20px;
  }

  .terms-section p,
  .terms-section li,
  .legal-document > p {
    font-size: 15px;
    line-height: 1.62;
  }

  .section-head,
  .manifesto-row,
  .timeline article,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .lock-banner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 3px 12px;
    justify-content: start;
    padding: 11px 14px;
    font-size: 11px;
    text-align: left;
  }

  .lock-banner > .lock-icon {
    grid-row: 1 / 4;
    align-self: center;
  }

  .lock-banner > strong,
  .lock-banner > span:not(.lock-icon),
  .lock-banner > a {
    grid-column: 2;
  }
}
