.prospectus-hero {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
}
.prospectus-hero h1 {
  max-width: 18ch;
}
.prospectus-hero .lede {
  max-width: 65ch;
}
.measure-wide {
  max-width: 68ch;
}
.mt-md {
  margin-top: 1.5rem;
}
.mt-lg {
  margin-top: 2rem;
}
.footnote {
  color: var(--muted);
  font-size: 0.8rem;
}

.disclaimer {
  width: min(
    calc(100% - 2rem - var(--safe-left) - var(--safe-right)),
    var(--measure)
  );
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  background: rgb(17 25 30 / 92%);
}
.disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  max-width: none;
}
.disclaimer strong {
  color: var(--ink);
}

.stat-grid {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgb(17 25 30 / 44%);
}
.stat-grid li {
  min-width: 0;
  padding: 1.5rem;
}
.stat-grid li + li {
  border-left: 1px solid var(--line);
}
.stat-grid .stat-value {
  display: block;
  color: var(--orange);
  font:
    700 clamp(1.35rem, 2vw, 1.75rem)/1.1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  overflow-wrap: anywhere;
}
.stat-grid .stat-label {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
}
.stat-grid .stat-note {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.68rem;
  opacity: 0.8;
}

.data-table-wrap {
  margin-top: 2.5rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  scrollbar-color: var(--line) var(--surface);
}
.data-table-wrap:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}
table.data-table {
  width: 100%;
  min-width: 46rem;
  border-collapse: collapse;
  font-size: 0.86rem;
}
table.data-table caption {
  caption-side: top;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font:
    700 0.68rem/1.25 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}
table.data-table th,
table.data-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
table.data-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--surface);
  color: var(--cyan);
  font:
    700 0.68rem/1.3 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
table.data-table tbody th {
  color: var(--ink);
  font-weight: 700;
}
table.data-table td {
  color: var(--muted);
}
table.data-table tbody tr:last-child th,
table.data-table tbody tr:last-child td {
  border-bottom: 0;
}
tr.row-highlight th,
tr.row-highlight td {
  background: rgb(255 90 54 / 8%);
  color: var(--ink);
}

.two-col {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
}
.two-col > * {
  min-width: 0;
}
.two-col article {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--line);
  background: rgb(17 25 30 / 44%);
}
.two-col h3 {
  margin-bottom: 1rem;
  color: var(--cyan);
  font-size: 0.9rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.two-col ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}
.two-col li + li {
  margin-top: 0.72rem;
}
.two-col p {
  margin: 0;
}
.evidence-columns article:first-child {
  border-top-color: var(--cyan);
}
.evidence-columns article:last-child {
  border-top-color: var(--orange);
}

.buyer-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}
.buyer-grid article {
  min-width: 0;
  padding: clamp(1.35rem, 3vw, 1.75rem);
}
.buyer-grid article + article {
  border-left: 1px solid var(--line);
}
.buyer-k {
  display: block;
  margin-bottom: 1.8rem;
  color: var(--orange);
  font:
    700 0.66rem/1.3 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.buyer-grid h3 {
  margin-bottom: 0.55rem;
}
.buyer-grid p {
  margin: 0;
  font-size: 0.9rem;
}

.phase-list {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: rgb(17 25 30 / 38%);
}
.phase-list > li {
  padding: clamp(1.35rem, 3vw, 1.75rem);
}
.phase-list > li + li {
  border-top: 1px solid var(--line);
}
.phase-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.75rem;
}
.phase-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
}
.phase-status {
  padding: 0.22rem 0.55rem;
  font:
    700 0.65rem/1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}
.phase-status[data-state="delivered"] {
  border-color: var(--cyan);
  color: var(--cyan);
}
.phase-status[data-state="in-progress"] {
  border-color: var(--orange);
  color: var(--orange);
}
.phase-status[data-state="planned"] {
  color: var(--muted);
}
.phase-list p {
  margin: 0;
  max-width: 80ch;
}

.risk-list {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.risk-list li {
  padding: 1.25rem 1.5rem;
  background: rgb(11 16 20 / 96%);
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 1rem;
}
.risk-list .risk-tag {
  color: var(--orange);
  font:
    700 0.68rem/1.4 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.risk-list p {
  margin: 0;
  font-size: 0.9rem;
}

.contact-card {
  margin-top: 2.5rem;
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid var(--line);
  background: var(--panel);
  display: grid;
  gap: 1.1rem;
}
.contact-card .name {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 700;
}
.contact-card .role {
  margin-top: -0.6rem;
  color: var(--muted);
  font:
    700 0.7rem/1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-rows {
  display: grid;
  gap: 0.5rem;
  font:
    0.95rem/1.4 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
}
.contact-rows a {
  color: var(--cyan);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-rows a:hover {
  text-decoration: underline;
}
.contact-rows span.k {
  display: inline-block;
  min-width: 4.5rem;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.ask-grid {
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}
.ask-grid li {
  min-width: 0;
  padding: 1.5rem;
  list-style: none;
  color: var(--muted);
  font-size: 0.88rem;
}
.ask-grid li + li {
  border-left: 1px solid var(--line);
}
.ask-grid strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

@media (max-width: 980px) {
  .stat-grid,
  .ask-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-grid li:nth-child(3),
  .ask-grid li:nth-child(3) {
    border-left: 0;
  }
  .stat-grid li:nth-child(n + 3),
  .ask-grid li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
  .buyer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .buyer-grid article:nth-child(3) {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .risk-list li {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .buyer-grid {
    grid-template-columns: 1fr;
  }
  .buyer-grid article + article,
  .buyer-grid article:nth-child(3) {
    grid-column: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .prospectus-hero {
    padding-top: 3rem;
  }
  .disclaimer {
    width: min(
      calc(100% - 1.5rem - var(--safe-left) - var(--safe-right)),
      var(--measure)
    );
    padding: 1rem 1.1rem;
  }
  .stat-grid,
  .ask-grid {
    grid-template-columns: 1fr;
  }
  .stat-grid li + li,
  .ask-grid li + li {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .stat-grid li:nth-child(3),
  .ask-grid li:nth-child(3) {
    border-top: 1px solid var(--line);
  }
  table.data-table {
    min-width: 40rem;
    font-size: 0.82rem;
  }
  table.data-table th,
  table.data-table td {
    padding: 0.8rem 0.85rem;
  }
  .phase-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-rows span.k {
    display: block;
    margin-bottom: 0.2rem;
  }
}

@media (orientation: landscape) and (max-height: 560px) and (min-width: 640px) {
  .prospectus-hero {
    min-height: calc(100svh - 3.5rem);
    display: grid;
    align-content: center;
    padding-block: 2rem;
  }
  .prospectus-hero h1 {
    font-size: clamp(2.6rem, 7vw, 4.6rem);
    max-width: 16ch;
  }
  .prospectus-hero .lede {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
  }
  .stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .stat-grid li:nth-child(3) {
    border-left: 1px solid var(--line);
  }
  .stat-grid li:nth-child(n + 3) {
    border-top: 0;
  }
}
