:root {
  --ink: #102033;
  --muted: #5c6b78;
  --brand: #303e9f;
  --brand-dark: #10226b;
  --accent: #1fb1ed;
  --teal: #0f746f;
  --gold: #b88b2e;
  --line: #d9e1ea;
  --soft: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(18, 39, 67, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(2.3rem, 4.8vw, 4.85rem);
  font-weight: 760;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  font-weight: 720;
}

h3 {
  font-size: 1.08rem;
  font-weight: 700;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  background: var(--white);
  color: var(--brand-dark);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 225, 234, 0.92);
  backdrop-filter: blur(14px);
}

.prototype-strip {
  padding: 0.45rem 1rem;
  color: var(--white);
  background: var(--brand-dark);
  font-size: 0.78rem;
  text-align: center;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--max);
  min-height: 76px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--white);
  background: var(--brand);
  border-radius: 6px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 650;
}

.nav-links a {
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand);
  border-bottom-color: var(--accent);
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(82vh - 116px);
  overflow: hidden;
  background: #0f1d33;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 25, 48, 0.88) 0%, rgba(10, 25, 48, 0.7) 43%, rgba(10, 25, 48, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 5.7rem 1.5rem 6.2rem;
}

.eyebrow,
.section-kicker {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 680px;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 780;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--brand);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--brand-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--max);
  margin: -3.2rem auto 0;
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.signal {
  min-height: 130px;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
}

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

.signal span,
.signal small {
  display: block;
}

.signal span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
  text-transform: uppercase;
}

.signal strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.15;
}

.signal small {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.8rem 1.5rem;
}

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

.intro-section {
  padding-top: 7.8rem;
}

.section-grid {
  display: grid;
  gap: 3.2rem;
}

.two-col {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

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

.section-grid p,
.section-heading p {
  font-size: 1rem;
}

.review-note,
.legal-note,
.asset-warning {
  margin-top: 1.1rem;
  padding-left: 0.85rem;
  color: #445d72;
  border-left: 3px solid var(--gold);
  font-size: 0.91rem;
}

.system-section {
  max-width: none;
  background: var(--soft);
}

.system-section > .section-kicker,
.system-section > .section-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.component-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.component-list div {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.component-list strong,
.component-list span {
  display: block;
}

.component-list span {
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.visual-panel {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(32, 49, 72, 0.1);
}

.visual-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0.85rem;
}

.visual-grid figure {
  display: grid;
  align-items: center;
  min-height: 270px;
  margin: 0;
  padding: 1rem;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.visual-grid img {
  width: 100%;
  max-height: 220px;
  margin: auto;
  object-fit: contain;
}

figcaption {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.scenario-card {
  min-height: 220px;
  padding: 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-card {
  border-top: 4px solid var(--accent);
}

.scenario-card {
  background: #fbfdff;
}

.info-card p,
.scenario-card p {
  margin-top: 0.8rem;
  font-size: 0.92rem;
}

.status {
  display: inline-block;
  margin-bottom: 0.95rem;
  padding: 0.25rem 0.5rem;
  color: var(--brand-dark);
  background: #eaf4fb;
  border: 1px solid #cae4f5;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.workflow-section {
  max-width: none;
  background: #102033;
  color: var(--white);
}

.workflow-section > .section-kicker,
.workflow-section > h2,
.workflow-section > .timeline {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.workflow-section h2 {
  max-width: 830px;
  color: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.3rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.timeline-item {
  min-height: 230px;
  padding: 1.2rem;
  background: #162a42;
}

.timeline-item span {
  display: block;
  color: var(--accent);
  font-weight: 850;
}

.timeline-item h3 {
  margin-top: 1.4rem;
  color: var(--white);
}

.timeline-item p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.evidence-panel {
  padding: 1.4rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
}

.markets-section {
  max-width: none;
  background: var(--soft);
}

.markets-section > .section-kicker,
.markets-section > .market-layout {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.market-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: start;
}

.market-table {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.market-table [role="row"] {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  border-bottom: 1px solid var(--line);
}

.market-table [role="row"]:last-child {
  border-bottom: 0;
}

.market-table span {
  padding: 1rem;
}

.market-table span:first-child {
  font-weight: 800;
  border-right: 1px solid var(--line);
}

.table-head {
  color: var(--white);
  background: var(--brand-dark);
}

.legal-note {
  grid-column: 2;
  margin-top: -1.8rem;
}

.company-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.company-visual {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--soft);
}

.company-visual img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.mini-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.mini-list span {
  padding: 0.85rem 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: start;
  max-width: none;
  padding-left: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  background: #eef5f9;
}

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

.contact-intro > p:not(.review-note) {
  margin-top: 1.2rem;
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.1);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-required-note {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

.form-required-note span,
.field-label > span[aria-hidden="true"],
.field-prompt span,
.consent span span {
  color: #a73535;
}

.form-section {
  min-width: 0;
  margin: 0;
  padding: 1.25rem 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.form-section > legend {
  width: 100%;
  padding: 0;
  color: var(--brand-dark);
  font-size: 1.06rem;
  font-weight: 800;
}

.form-section-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.field-prompt {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 740;
}

.role-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.choice-card {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  min-height: 92px;
  padding: 0.9rem;
  background: #fbfdff;
  border: 1px solid #cfdbe6;
  border-radius: 6px;
  cursor: pointer;
}

.choice-card:hover {
  border-color: #8bbbd5;
}

.choice-card:focus-within {
  outline: 3px solid rgba(31, 177, 237, 0.22);
  border-color: var(--accent);
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  line-height: 1.35;
}

.choice-card small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 740;
}

input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 0.8rem;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #cfdbe6;
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:not([type="checkbox"]):not([type="radio"]):focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 177, 237, 0.22);
  border-color: var(--accent);
}

input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 0.18rem 0 0;
  accent-color: var(--brand);
}

.contact-form [aria-invalid="true"] {
  border-color: #b64242;
}

.nested-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.nested-fieldset > legend {
  margin-bottom: 0.55rem;
  padding: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 740;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem 0.8rem;
}

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

.radio-stack,
.request-options {
  display: grid;
  gap: 0.55rem;
}

.check-option {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--muted);
  font-weight: 560;
  line-height: 1.45;
}

.field-help {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.form-notice {
  padding: 0.9rem 1rem;
  color: #315467;
  background: #f0f8fb;
  border-left: 3px solid var(--teal);
  font-size: 0.86rem;
}

.conditional-panel[hidden],
.form-notice[hidden],
.form-status[hidden] {
  display: none;
}

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

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--muted);
  font-weight: 500;
}

.submit-button {
  min-height: 50px;
}

.button:disabled,
.button:disabled:hover {
  color: #7b8792;
  background: #dfe6ec;
  cursor: not-allowed;
}

.submit-button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.78;
}

.form-security {
  display: grid;
  gap: 0.55rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.turnstile-container {
  display: grid;
  align-items: center;
  min-height: 68px;
  color: var(--muted);
  font-size: 0.84rem;
}

.consent a,
.legal-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-size: 0.88rem;
}

.form-status.status-error {
  color: #842828;
  background: #fff1f0;
  border: 1px solid #efc3bf;
}

.form-status.status-success {
  color: #145d43;
  background: #edf8f2;
  border: 1px solid #b9dfcb;
}

.text-button {
  color: var(--brand-dark);
  background: var(--white);
  border-color: var(--line);
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--white);
  background: var(--brand-dark);
}

.legal-page {
  background: var(--white);
}

.legal-hero {
  padding: 5.5rem max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  background: #eef5f9;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.legal-lead {
  max-width: 780px;
  margin-top: 1.2rem;
  font-size: 1.08rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  margin: 2rem 0 0;
}

.legal-meta div {
  min-width: 150px;
}

.legal-meta dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-meta dd {
  margin: 0.25rem 0 0;
  color: var(--ink);
  font-weight: 700;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 4rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 6rem;
}

.legal-summary {
  position: sticky;
  top: 130px;
  align-self: start;
  padding: 1rem 0 1rem 1rem;
  border-left: 3px solid var(--gold);
}

.legal-summary strong {
  color: var(--ink);
}

.legal-summary p {
  margin-top: 0.7rem;
  font-size: 0.88rem;
}

.legal-content {
  max-width: 790px;
}

.legal-content section {
  padding: 0 0 2.6rem;
  scroll-margin-top: 128px;
}

.legal-content section + section {
  padding-top: 2.6rem;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 1rem;
  font-size: 1.55rem;
}

.legal-content p + p,
.legal-content p + ul,
.legal-content ul + p,
.legal-content address + p,
.legal-content .legal-table + p {
  margin-top: 1rem;
}

.legal-content ul {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.legal-content address {
  margin-top: 1rem;
  color: var(--muted);
  font-style: normal;
}

.legal-review-note {
  padding-left: 0.9rem;
  border-left: 3px solid var(--gold);
}

.legal-table {
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.55fr);
  border-bottom: 1px solid var(--line);
}

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

.legal-table-row span {
  padding: 0.85rem 1rem;
  color: var(--muted);
}

.legal-table-row span + span {
  border-left: 1px solid var(--line);
}

.legal-table-head {
  background: var(--brand-dark);
}

.legal-table-head span {
  color: var(--white);
  font-weight: 750;
}

.legal-footer {
  background: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.3rem 1.5rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 660px;
  margin-top: 0.4rem;
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand);
}

.footer-note {
  grid-column: 1 / -1;
  color: #6d7782;
}

@media (max-width: 980px) {
  h1 {
    font-size: 2.7rem;
  }

  .nav-toggle-label {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 6px;
  }

  .nav-toggle-label span {
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.8rem 1.5rem 1.1rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav-links a {
    width: 100%;
    padding: 0.85rem 0;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .signal-band,
  .card-grid.four,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .signal:nth-child(1),
  .signal:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .two-col,
  .section-heading,
  .market-layout,
  .company-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }

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

  .legal-summary {
    position: static;
  }

  .legal-note {
    grid-column: auto;
    margin-top: 0;
  }

  .card-grid.three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .prototype-strip {
    font-size: 0.7rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-content {
    padding: 4.2rem 1.1rem 4.8rem;
  }

  .hero-shade {
    background: rgba(10, 25, 48, 0.76);
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .signal-band {
    grid-template-columns: 1fr;
    margin-top: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .signal {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 4rem 1.1rem;
  }

  .intro-section {
    padding-top: 4rem;
  }

  .visual-grid,
  .card-grid.four,
  .timeline,
  .contact-form,
  .form-section-body,
  .role-options,
  .check-grid,
  .two-column-options {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.1rem;
  }

  .legal-hero {
    padding: 4rem 1.1rem;
  }

  .legal-layout {
    padding: 3rem 1.1rem 4rem;
  }

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

  .legal-table-row span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .timeline-item {
    min-height: auto;
  }

  .market-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .market-table span:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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