:root {
  color-scheme: light;
  --bg: #f6f7f9;
  --panel: #ffffff;
  --text: #17202a;
  --muted: #667085;
  --line: #d8dee8;
  --line-soft: #e8edf4;
  --brand: #116149;
  --brand-strong: #0b4937;
  --accent: #2457a6;
  --accent-soft: #eef4ff;
  --success: #067647;
  --warning: #b54708;
  --danger: #b42318;
  --shadow: 0 14px 36px rgba(16, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #eef4ff 0, rgba(238, 244, 255, 0) 260px),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.shell {
  min-height: 100vh;
}

.topbar {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.02);
  display: flex;
  gap: 24px;
  height: 64px;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  align-items: center;
  background: var(--brand);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.nav a,
.nav button {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  padding: 0;
}

.nav button:hover,
.nav a:hover {
  color: var(--text);
}

.main {
  margin: 0 auto;
  max-width: 1160px;
  padding: 36px 24px 56px;
}

.hero {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  min-height: 430px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 0;
}

.eyebrow {
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  line-height: 1.05;
  margin: 0 0 18px;
}

h2 {
  font-size: 28px;
  margin: 0 0 18px;
}

h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

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

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.actions.compact {
  margin-top: 16px;
}

.btn {
  align-items: center;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  min-height: 40px;
  justify-content: center;
  padding: 0 16px;
}

.btn:hover {
  background: var(--brand-strong);
}

.btn.secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.btn.full {
  margin-top: 18px;
  width: 100%;
}

.text-link {
  color: var(--brand);
  font-weight: 700;
}

.hero-visual,
.panel,
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
}

.terminal {
  background: #101828;
  border-radius: 8px;
  color: #d1fadf;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.7;
  min-height: 190px;
  padding: 18px;
}

.terminal .muted {
  color: #98a2b3;
}

.network-map {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
}

.node {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
}

.node strong {
  display: block;
  font-size: 14px;
}

.node span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  margin-top: 42px;
}

.section-header {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.section-lead {
  font-size: 16px;
  max-width: 920px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card,
.panel {
  padding: 22px;
}

.intro-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.industry-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.insight-card,
.scenario-card {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.insight-card span {
  color: var(--accent);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.capability-split {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.value-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.value-strip div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.value-strip strong,
.value-strip span {
  display: block;
}

.value-strip strong {
  color: var(--text);
  font-size: 20px;
  margin-bottom: 4px;
}

.value-strip span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.ops-board {
  background: #101828;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  padding: 18px;
}

.ops-row {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  min-height: 70px;
  padding: 14px;
}

.ops-row strong {
  color: #f9fafb;
}

.ops-row span {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.55;
}

.scenario-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-card {
  min-height: 170px;
}

.price {
  color: var(--brand);
  font-size: 28px;
  font-weight: 800;
  margin: 8px 0 12px;
}

.price.small {
  font-size: 16px;
  margin: 0;
}

.features {
  color: var(--muted);
  line-height: 1.8;
  margin: 16px 0 0;
  padding-left: 18px;
}

.notice {
  border-left: 4px solid var(--accent);
  color: var(--muted);
  margin-top: 14px;
  padding: 8px 12px;
}

.notice strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.notice p {
  margin: 0;
}

.code {
  background: #101828;
  border-radius: 8px;
  color: #f2f4f7;
  overflow-x: auto;
  padding: 16px;
}

.code code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.7;
  white-space: pre;
}

.split {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.auth-page {
  display: grid;
  min-height: calc(100vh - 64px);
  place-items: start center;
}

.auth-panel {
  max-width: 520px;
  width: 100%;
}

label {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 14px 0 6px;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font: inherit;
  min-height: 40px;
  padding: 9px 11px;
  width: 100%;
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.checkbox-row label {
  align-items: center;
  display: inline-flex;
  gap: 7px;
  margin: 0;
}

.checkbox-row input {
  min-height: auto;
  width: auto;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.hidden {
  display: none;
}

.inline-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.stack {
  display: grid;
  gap: 12px;
}

.plan-row {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 14px;
}

.plan-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  white-space: nowrap;
}

.console-main {
  max-width: 1240px;
}

.docs-main {
  max-width: 1180px;
}

.docs-hero {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
}

.docs-hero h1 {
  font-size: 42px;
}

.docs-callout {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.docs-callout strong,
.docs-callout span {
  display: block;
}

.docs-callout strong {
  color: var(--text);
  margin-bottom: 8px;
}

.docs-callout span {
  color: var(--muted);
  line-height: 1.6;
}

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

.process-grid,
.endpoint-list,
.error-list {
  display: grid;
  gap: 12px;
}

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

.process-grid div,
.error-list div {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.process-grid strong,
.process-grid span,
.error-list strong,
.error-list span {
  display: block;
}

.process-grid strong,
.error-list strong {
  color: var(--text);
  margin-bottom: 6px;
}

.process-grid span,
.error-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.endpoint {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.endpoint:first-child {
  border-top: 0;
  padding-top: 0;
}

.endpoint > span {
  color: var(--text);
  display: block;
  font-weight: 800;
  margin-bottom: 10px;
}

.console-hero {
  align-items: flex-end;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 28px;
}

.console-hero h1 {
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.console-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.dashboard-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.stat-card.active {
  border-color: rgba(6, 118, 71, 0.35);
  box-shadow: inset 0 3px 0 var(--success);
}

.stat-card.warning {
  border-color: rgba(181, 71, 8, 0.35);
  box-shadow: inset 0 3px 0 var(--warning);
}

.stat-card span,
.api-grid span,
.detail-grid span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.stat-card strong {
  color: var(--text);
  display: block;
  font-size: 24px;
  line-height: 1.2;
  min-height: 30px;
  overflow-wrap: anywhere;
}

.stat-card small {
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

.console-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
}

.panel {
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.04);
}

.panel-header {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.panel-header .eyebrow {
  margin-bottom: 6px;
}

.panel-header h2 {
  margin-bottom: 0;
}

.network-select-row {
  min-width: 240px;
}

.network-select-row label {
  margin-top: 0;
}

.network-note {
  align-items: center;
  background: var(--accent-soft);
  border: 1px solid #c7d7fe;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 12px;
}

.network-note span {
  color: var(--accent);
  font-weight: 700;
}

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

.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 360px;
  padding: 18px;
}

.plan-card.featured {
  border-color: rgba(17, 97, 73, 0.45);
  box-shadow: inset 0 3px 0 var(--brand);
}

.plan-card .price {
  margin: 0;
}

.plan-card p {
  margin: 0;
}

.plan-card .btn {
  margin-top: auto;
  width: 100%;
}

.plan-topline {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.plan-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.plan-features {
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

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

.billing-summary-grid.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.billing-summary-grid div,
.billing-help {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.billing-summary-grid strong,
.billing-summary-grid span,
.billing-help strong,
.billing-help span {
  display: block;
}

.billing-summary-grid strong,
.billing-help strong {
  color: var(--text);
  margin-bottom: 6px;
}

.billing-summary-grid span,
.billing-help span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.billing-help {
  margin-top: 14px;
}

.payment-summary {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.payment-workspace {
  display: grid;
  gap: 14px;
}

.payment-stepper {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 10px;
}

.payment-stepper span {
  background: #f8fafc;
  border-radius: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  min-height: 34px;
  padding: 8px 10px;
  text-align: center;
}

.payment-stepper span.active {
  background: #ecfdf3;
  color: var(--success);
}

.payment-summary-head {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.payment-head-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.payment-summary-head h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.detail-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 14px;
}

.detail-grid strong {
  font-size: 18px;
}

.copy-line {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 12px;
}

.copy-line > div {
  min-width: 0;
}

.copy-line strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.copy-line span {
  min-width: 0;
}

.field-caption,
.field-help {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.field-help {
  font-weight: 500;
  margin-top: 8px;
}

.payment-order-message,
.order-message {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  margin: 12px 0;
  padding: 12px;
}

.payment-order-message strong,
.payment-order-message span,
.payment-order-message small,
.order-message strong,
.order-message span {
  display: block;
}

.payment-order-message strong,
.order-message strong {
  color: var(--text);
  font-size: 13px;
  margin-bottom: 5px;
}

.payment-order-message span,
.payment-order-message small,
.order-message span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.payment-order-message small {
  margin-top: 6px;
}

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

.payment-rules div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.payment-rules strong,
.payment-rules span {
  display: block;
}

.payment-rules strong {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 6px;
}

.payment-rules span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.confirm-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.payment-feedback .notice,
.payment-feedback .error {
  margin-top: 10px;
}

.api-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 16px;
}

.api-grid > div {
  background: #f8fafc;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 12px;
}

.api-grid strong {
  display: block;
  overflow-wrap: anywhere;
}

.empty-state {
  align-items: flex-start;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  color: var(--muted);
  display: grid;
  gap: 4px;
  padding: 18px;
}

.empty-state strong {
  color: var(--text);
}

.compact-section {
  margin-top: 16px;
}

.ip-list {
  display: grid;
  gap: 10px;
}

.ip-chip {
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 10px;
}

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

.support-grid div {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.support-grid strong,
.support-grid span {
  display: block;
}

.support-grid strong {
  color: var(--text);
  margin-bottom: 6px;
}

.support-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.support-grid a {
  color: var(--brand);
  font-weight: 800;
}

.support-list {
  display: grid;
  gap: 12px;
}

.support-list div {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

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

.support-list strong {
  color: var(--text);
  margin-bottom: 6px;
}

.support-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.support-list a {
  color: var(--brand);
  font-weight: 800;
}

.order-filter {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.order-filter button {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  min-height: 32px;
  padding: 0 12px;
}

.order-filter button.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.order-filter span {
  font-weight: 900;
  margin-left: 4px;
}

.order-list {
  display: grid;
  gap: 12px;
}

.order-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 16px;
}

.order-main {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
}

.order-title {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.order-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 8px 14px;
  margin-top: 8px;
}

.order-amount {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.order-side {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.status-pill,
.network-pill {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  min-height: 26px;
  padding: 0 10px;
}

.status-pill.paid {
  background: #ecfdf3;
  color: var(--success);
}

.status-pill.pending {
  background: #fff7ed;
  color: var(--warning);
}

.status-pill.paying {
  background: #eef4ff;
  color: var(--accent);
}

.status-pill.failed,
.status-pill.expired {
  background: #fef3f2;
  color: var(--danger);
}

.status-pill.canceled {
  background: #eef2f7;
  color: #667085;
}

.status-pill.neutral,
.network-pill {
  background: #eef2f7;
  color: #344054;
}

.btn.danger-text {
  color: var(--danger);
}

.icon-text {
  background: transparent;
  border: 0;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  padding: 0;
}

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.copy-box {
  background: #f2f4f7;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
}

.muted {
  color: var(--muted);
}

.error {
  color: #b42318;
  font-size: 13px;
  margin-top: 10px;
}

.toast-root {
  display: grid;
  gap: 10px;
  max-width: min(420px, calc(100vw - 32px));
  position: fixed;
  right: 20px;
  top: 80px;
  z-index: 1000;
}

.toast {
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.16);
  color: var(--text);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  line-height: 1.55;
  padding: 14px 14px 14px 16px;
}

.toast.error {
  border-left-color: var(--danger);
  color: var(--text);
  font-size: 14px;
  margin-top: 0;
}

.toast.notice {
  border-left-color: var(--accent);
  color: var(--text);
  margin-top: 0;
}

.toast button {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  line-height: 1;
  padding: 0 0 0 8px;
}

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    height: auto;
    padding: 16px 20px;
  }

  .hero,
  .plans,
  .split,
  .industry-grid,
  .capability-split,
  .value-strip,
  .scenario-grid,
  .stats,
  .dashboard-grid,
  .console-layout,
  .plan-grid,
  .billing-summary-grid,
  .billing-summary-grid.two-cols,
  .docs-hero,
  .docs-grid,
  .process-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .section-header,
  .plan-row,
  .plan-actions,
  .console-hero,
  .panel-header,
  .payment-summary-head {
    align-items: stretch;
    flex-direction: column;
  }

  .console-actions {
    justify-content: flex-start;
  }

  .order-filter,
  .payment-head-actions {
    justify-content: flex-start;
  }

  .network-select-row {
    min-width: 0;
  }

  .network-note,
  .copy-line,
  .inline-actions,
  .ip-chip,
  .order-card,
  .order-main,
  .order-side {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .order-side {
    justify-content: flex-start;
  }

  .api-grid,
  .detail-grid,
  .payment-rules,
  .payment-stepper {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 36px;
  }

  .toast-root {
    left: 16px;
    right: 16px;
    top: 16px;
  }
}
