:root {
  --ink: #101715;
  --ink-soft: #26302d;
  --paper: #f2f5f3;
  --surface: #ffffff;
  --surface-muted: #eef1ed;
  --line: #d8ddd7;
  --line-strong: #bdc6bd;
  --green: #17a474;
  --green-dark: #0c5b44;
  --green-soft: #dcf5e9;
  --cyan: #2299a9;
  --yellow: #e8bb4e;
  --yellow-soft: #fff5d8;
  --red: #b6463c;
  --red-soft: #fbe9e6;
  --text-muted: #65706c;
  --shadow: 0 18px 54px rgba(18, 32, 27, 0.13);
  --shadow-soft: 0 12px 32px rgba(18, 32, 27, 0.08);
  --sidebar-width: 258px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.55;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

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

.currency-option {
  min-height: 54px;
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.currency-option strong,
.currency-option small {
  display: block;
}

.currency-option strong {
  font-size: 14px;
}

.currency-option small {
  color: var(--text-muted);
  font-size: 10px;
}

.currency-option:hover,
.currency-option.is-active {
  border-color: var(--green);
}

.currency-option.is-active {
  color: var(--green-dark);
  background: var(--green-soft);
  box-shadow: inset 0 0 0 1px var(--green);
}

.payment-method strong em {
  display: inline-block;
  margin-left: 7px;
  padding: 2px 5px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 3px;
  font-size: 9px;
  font-style: normal;
  vertical-align: 2px;
}

.payment-method.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.refunds-panel {
  margin-top: 18px;
}

.refund-reason-cell {
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.refund-settle-button {
  min-height: 32px;
  padding: 5px 9px;
  font-size: 11px;
  white-space: nowrap;
}

.refund-reason-field {
  display: grid;
  gap: 7px;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 650;
}

.refund-reason-field textarea {
  width: 100%;
  resize: vertical;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
}

.refund-reason-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 164, 116, 0.12);
}

.payment-sandbox-page {
  min-height: 100vh;
  background-color: #eef3f0;
  background-image:
    linear-gradient(#dce5e0 1px, transparent 1px),
    linear-gradient(90deg, #dce5e0 1px, transparent 1px);
  background-size: 32px 32px;
}

.payment-sandbox-header {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px max(24px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
}

.payment-sandbox-header .brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-sandbox-header .brand-lockup img {
  width: 34px;
  height: 34px;
}

.payment-sandbox-header .brand-lockup strong,
.payment-sandbox-header .brand-lockup small {
  display: block;
}

.payment-sandbox-header .brand-lockup strong {
  line-height: 1.2;
}

.payment-sandbox-header .brand-lockup small {
  color: var(--text-muted);
  font-size: 9px;
  text-transform: uppercase;
}

.environment-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  color: #725511;
  background: var(--yellow-soft);
  border: 1px solid #e9d28a;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
}

.payment-sandbox-main {
  display: grid;
  min-height: calc(100vh - 72px);
  place-items: center;
  padding: 36px 20px;
}

.payment-checkout-panel {
  width: min(100%, 500px);
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.checkout-provider-mark {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 7px;
}

.checkout-provider-mark svg {
  width: 24px;
  height: 24px;
}

.payment-checkout-panel h1 {
  margin: 5px 0 6px;
  font-size: 25px;
  line-height: 1.25;
}

.checkout-subtitle {
  margin: 0;
  color: var(--text-muted);
}

.checkout-details {
  display: grid;
  gap: 0;
  margin: 25px 0 18px;
  padding: 0 16px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.checkout-details div {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.checkout-details div:last-child {
  border-bottom: 0;
}

.checkout-details dt {
  color: var(--text-muted);
  font-size: 11px;
}

.checkout-details dd {
  margin: 0;
  overflow-wrap: anywhere;
  text-align: right;
  font-weight: 700;
}

.checkout-security {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--text-muted);
  font-size: 10px;
}

.checkout-security span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.checkout-security svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

.checkout-actions {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 10px;
  margin-top: 26px;
}

@media (max-width: 620px) {
  .currency-selector {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-sandbox-header {
    padding-inline: 16px;
  }

  .payment-checkout-panel {
    padding: 24px 20px;
  }

  .checkout-actions {
    grid-template-columns: 1fr;
  }
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 21px;
  font-weight: 780;
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  filter: drop-shadow(0 7px 12px rgba(12, 91, 68, 0.2));
  transition: filter 180ms ease, transform 180ms ease;
}

.brand:hover .brand-mark {
  filter: drop-shadow(0 9px 15px rgba(12, 91, 68, 0.28));
  transform: translateY(-1px);
}

.brand-name {
  display: block;
  line-height: 1;
}

.brand-ai {
  color: var(--green);
  font-size: 0.58em;
  font-weight: 820;
  vertical-align: 0.22em;
}

.brand-lockup {
  display: grid;
  gap: 4px;
}

.brand-edition {
  color: var(--text-muted);
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
}

.button,
.icon-button,
.nav-item,
.user-menu {
  border: 0;
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 680;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.icon-button:focus-visible,
.nav-item:focus-visible,
.user-menu:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(34, 153, 169, 0.36);
  outline-offset: 3px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.button-primary {
  color: #fff;
  background: var(--green);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.button-secondary:hover,
.button-ghost:hover {
  background: var(--surface-muted);
  border-color: var(--line-strong);
}

.button-ghost {
  background: transparent;
  border-color: transparent;
}

.button-on-dark {
  color: #fff;
  background: rgba(18, 23, 22, 0.62);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
}

.button-on-dark:hover {
  background: rgba(18, 23, 22, 0.82);
}

.button-large {
  min-height: 50px;
  padding: 0 21px;
}

.button-text {
  min-height: 34px;
  padding: 0 5px;
  color: var(--green-dark);
  background: transparent;
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  background: transparent;
  border-radius: 5px;
}

.icon-button:hover {
  background: var(--surface-muted);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 78px;
  align-items: center;
  padding: 0 4.5vw;
  background: rgba(248, 251, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 26px rgba(13, 38, 30, 0.04);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--ink-soft);
  font-weight: 600;
}

.site-nav a {
  padding: 25px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--green-dark);
  border-color: var(--green);
}

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

.language-switcher {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
}

.language-switcher svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.language-switcher select {
  width: 102px;
  min-width: 0;
  height: 34px;
  padding: 0 2px;
  color: inherit;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 12px;
  font-weight: 650;
}

.mobile-menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 144px);
  overflow: hidden;
  padding: 58px 6vw 66px;
  color: #fff;
  background-color: #07120f;
  background-image: url("/assets/tokenhub-ai-world.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(108, 229, 188, 0.42);
  content: "";
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 12, 9, 0.46) 0%, rgba(3, 12, 9, 0.2) 48%, rgba(3, 12, 9, 0.04) 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1660px, 100%);
  min-height: calc(100vh - 268px);
  grid-template-columns: minmax(540px, 1.03fr) minmax(480px, 0.97fr);
  align-items: center;
  gap: 4vw;
  margin: 0 auto;
}

.hero-content {
  width: min(710px, 100%);
  animation: hero-content-in 620ms ease both;
}

.eyebrow,
.page-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ce2ca;
}

.hero h1 {
  margin: 0;
  font-size: 88px;
  font-weight: 800;
  line-height: 0.96;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.25);
}

.hero h1 span {
  color: #83e8c3;
  font-weight: 620;
}

.hero-tagline {
  margin: 20px 0 0;
  color: #a8f1d6;
  font-size: 21px;
  font-weight: 760;
}

.hero-copy {
  max-width: 680px;
  margin: 17px 0 0;
  color: rgba(236, 248, 243, 0.84);
  font-size: 20px;
  line-height: 1.55;
}

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

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 650;
}

.hero-facts > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-facts svg {
  color: #68dfb7;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: center;
  animation: hero-visual-in 760ms 80ms ease both;
}

.gateway-console {
  width: min(100%, 600px);
  justify-self: end;
  overflow: hidden;
  color: #eaf7f2;
  background: #07130f;
  border: 1px solid rgba(118, 226, 188, 0.38);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.gateway-console::before {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #62dfb4, #40b9c8 66%, #e8bb4e);
  content: "";
}

.gateway-console-header {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(121, 177, 157, 0.2);
}

.gateway-console-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.gateway-console-title img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.gateway-console-title strong,
.gateway-console-title small {
  display: block;
  line-height: 1.25;
}

.gateway-console-title strong {
  font-size: 14px;
}

.gateway-console-title small {
  margin-top: 3px;
  color: #7e9b91;
  font-size: 9px;
}

.gateway-live {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  color: #8de7c5;
  background: rgba(70, 195, 150, 0.08);
  border: 1px solid rgba(99, 226, 181, 0.22);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
}

.gateway-live svg {
  width: 12px;
  height: 12px;
}

.gateway-request {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 16px 18px 0;
  padding: 0 13px;
  color: #b7cec5;
  background: #07110e;
  border: 1px solid #223a32;
  border-radius: 5px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.gateway-request span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gateway-request svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: #61d9b1;
}

.gateway-request code {
  flex: 0 0 auto;
  color: #6ee0b9;
}

.gateway-flow {
  display: grid;
  grid-template-columns: 1fr 14px 1fr 14px 1fr 14px 1fr;
  align-items: center;
  gap: 4px;
  padding: 20px 18px;
  border-bottom: 1px solid rgba(121, 177, 157, 0.18);
}

.gateway-flow > div {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 4px;
  text-align: center;
}

.gateway-flow > div > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 3px;
  color: #6fe0b9;
  background: rgba(48, 163, 125, 0.1);
  border: 1px solid rgba(90, 204, 165, 0.2);
  border-radius: 5px;
}

.gateway-flow > div:nth-of-type(3) > span,
.gateway-flow > div:nth-of-type(4) > span {
  color: #58c4d1;
  background: rgba(49, 151, 166, 0.1);
  border-color: rgba(66, 180, 195, 0.2);
}

.gateway-flow strong,
.gateway-flow small {
  display: flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
}

.gateway-flow strong {
  min-height: 27px;
  font-size: 10px;
}

.gateway-flow small {
  min-height: 20px;
  color: #789087;
  font-size: 8px;
}

.gateway-flow > svg {
  width: 13px;
  color: #547168;
}

.gateway-routes {
  padding: 13px 18px 14px;
}

.gateway-route-heading,
.gateway-route-row {
  display: grid;
  grid-template-columns: 30px minmax(90px, 1fr) 62px 56px 48px;
  align-items: center;
  gap: 8px;
}

.gateway-route-heading {
  grid-template-columns: 1fr auto;
  min-height: 30px;
  color: #637c73;
  font-size: 8px;
  font-weight: 750;
  text-transform: uppercase;
}

.gateway-route-row {
  min-height: 45px;
  border-top: 1px solid rgba(111, 156, 140, 0.13);
  font-size: 9px;
}

.gateway-route-row strong,
.gateway-route-row small,
.gateway-route-row code {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gateway-route-row strong {
  color: #dcece6;
  font-size: 10px;
}

.gateway-route-row small {
  color: #718a81;
}

.gateway-route-row code {
  color: #8ca49b;
  text-align: right;
}

.model-swatch {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 850;
}

.model-swatch-openai {
  color: #c8fff0;
  background: #145b48;
}

.model-swatch-anthropic {
  color: #fff0c8;
  background: #6b4d24;
}

.model-swatch-google {
  color: #dff8ff;
  background: #22576b;
}

.route-status {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #8ed9bf;
}

.route-status i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: #58d5a9;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(88, 213, 169, 0.06);
}

.gateway-console-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 58px;
  align-items: center;
  border-top: 1px solid rgba(121, 177, 157, 0.18);
}

.gateway-console-footer > span {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 8px;
  color: #789087;
  border-right: 1px solid rgba(121, 177, 157, 0.15);
  font-size: 8px;
  white-space: nowrap;
}

.gateway-console-footer > span:last-child {
  border-right: 0;
}

.gateway-console-footer svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  color: #57c8a3;
}

.gateway-console-footer strong {
  color: #d6e9e1;
  font-size: 10px;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 86px;
  color: #17372d;
  background: #e7f4ee;
  border-top: 1px solid #8ccdb7;
  border-bottom: 1px solid #c6dfd6;
}

.proof-band div {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  padding: 24px 20px;
  border-right: 1px solid #c3ded4;
}

.proof-band div::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 40px;
  height: 2px;
  background: var(--green);
  content: "";
  transform: translateX(-50%);
}

.proof-band div:nth-child(2)::before,
.proof-band div:nth-child(4)::before {
  background: var(--cyan);
}

.proof-band div:last-child {
  border-right: 0;
}

.proof-band strong {
  color: var(--green-dark);
  font-size: 22px;
}

.proof-band div > span {
  color: #49675d;
  font-size: 13px;
  font-weight: 650;
}

.section {
  padding: 104px 6vw;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-heading h2,
.security-band h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 740;
  line-height: 1.12;
}

.section-heading > p:last-child,
.contact-section > div > p:last-child {
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 18px;
}

.product-section {
  background: var(--surface);
}

.product-flow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1.15fr auto 1fr auto 1fr;
  align-items: center;
  padding: 36px;
  color: #fff;
  background: #0d201a;
  border: 1px solid #29463c;
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(13, 32, 26, 0.13);
  overflow: hidden;
}

.product-flow::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--yellow));
  content: "";
}

.flow-item {
  display: grid;
  min-height: 164px;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 22px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid #385248;
  border-radius: 6px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.flow-item:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: #557166;
  transform: translateY(-3px);
}

.flow-item-accent {
  background: #11684f;
  border-color: #63c6a5;
  box-shadow: inset 0 0 0 1px rgba(128, 231, 195, 0.1);
}

.flow-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 5px;
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.flow-item strong {
  font-size: 16px;
}

.flow-item small {
  color: #aeb9b5;
}

.flow-arrow {
  margin: 0 14px;
  color: #7f8d88;
}

.guardian-strip {
  display: grid;
  grid-template-columns: 82px minmax(260px, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
  padding: 18px 24px 18px 18px;
  color: #dff5ec;
  background: #142f27;
  border: 1px solid #356253;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(13, 32, 26, 0.11);
}

.guardian-strip > img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.guardian-strip .eyebrow {
  margin-bottom: 5px;
  color: #72dfb9;
}

.guardian-strip strong {
  display: block;
  max-width: 680px;
  font-size: 16px;
}

.guardian-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.guardian-status > span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  color: #b8d6cc;
  background: #0f261f;
  border: 1px solid #31574a;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 650;
}

.guardian-status svg {
  width: 14px;
  color: var(--yellow);
}

.capability-band {
  padding: 104px 6vw;
  color: #fff;
  background: #0d201a;
}

.section-heading-light h2 {
  color: #fff;
}

.capability-list {
  border-top: 1px solid #49534f;
}

.capability-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 152px;
  border-bottom: 1px solid #3d5049;
  transition: background 160ms ease;
}

.capability-row:hover {
  background: rgba(255, 255, 255, 0.025);
}

.capability-row > div {
  transition: transform 180ms ease;
}

.capability-row:hover > div {
  transform: translateX(8px);
}

.capability-number {
  color: var(--yellow);
  font-family: "SFMono-Regular", Consolas, monospace;
}

.capability-row h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.capability-row p {
  max-width: 760px;
  margin: 0;
  color: #b9c3bf;
}

.capability-row > svg {
  width: 34px;
  height: 34px;
  color: #78cdb7;
}

.capability-row:nth-child(2) > svg {
  color: #44b9c7;
}

.capability-row:nth-child(3) > svg {
  color: #e2b552;
}

.deployment-section {
  background: var(--paper);
}

.deployment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.deployment-card {
  position: relative;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(18, 32, 27, 0.035);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.deployment-card:hover {
  border-color: #a8c9bc;
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.deployment-card-featured {
  border: 2px solid var(--green);
}

.card-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 9px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
}

.deployment-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 6px;
}

.deployment-card h3 {
  margin: 24px 0 12px;
  font-size: 23px;
}

.deployment-card p {
  min-height: 72px;
  margin: 0;
  color: var(--text-muted);
}

.deployment-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.deployment-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
}

.deployment-card li svg {
  color: var(--green);
}

.commerce-band {
  padding: 104px 6vw;
  color: #ecf7f3;
  background: #10231d;
  border-top: 1px solid #2f4f43;
  border-bottom: 1px solid #2f4f43;
}

.commerce-band .section-heading > p:last-child {
  color: #a9beb7;
}

.commerce-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #3a554c;
  border-bottom: 1px solid #3a554c;
}

.commerce-column {
  padding: 34px 40px 38px 0;
}

.commerce-column + .commerce-column {
  padding-right: 0;
  padding-left: 40px;
  border-left: 1px solid #3a554c;
}

.commerce-heading {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.commerce-heading > svg {
  width: 46px;
  height: 46px;
  padding: 11px;
  color: #68dfb7;
  background: #173b2f;
  border: 1px solid #2f6250;
  border-radius: 6px;
}

.commerce-heading span {
  color: #75cdb0;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.commerce-heading h3 {
  margin: 3px 0 0;
  color: #fff;
  font-size: 22px;
}

.commerce-row {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid #2f463e;
}

.commerce-row strong {
  color: #fff;
}

.commerce-row p,
.delivery-steps p {
  margin: 0;
  color: #a9b9b3;
}

.delivery-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid #2f463e;
}

.delivery-steps li > span {
  color: #e4bd59;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.delivery-steps strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
}

.commerce-disclosure {
  display: grid;
  grid-template-columns: 0.65fr 1.5fr 1.1fr auto;
  align-items: center;
  gap: 22px;
  padding: 24px 0 0;
}

.commerce-disclosure > div {
  min-width: 0;
}

.commerce-disclosure span,
.commerce-disclosure strong {
  display: block;
}

.commerce-disclosure > div > span {
  color: #78948a;
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.commerce-disclosure strong {
  margin-top: 4px;
  overflow-wrap: anywhere;
  color: #dcece6;
  font-size: 12px;
}

.commerce-disclosure > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7be0bd;
  font-size: 12px;
  font-weight: 700;
}

.pricing-section {
  background: var(--surface);
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.pricing-column {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease;
}

.pricing-column:not(.pricing-column-featured):hover {
  background: #f7faf8;
}

.pricing-column:last-child {
  border-right: 0;
}

.pricing-column-featured {
  color: #fff;
  background: var(--green-dark);
}

.pricing-kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-column-featured .pricing-kicker {
  color: #86dfc6;
}

.pricing-column h3 {
  margin: 18px 0 0;
  font-size: 24px;
}

.pricing-price {
  margin: 42px 0 8px;
  font-size: 27px;
  font-weight: 760;
}

.pricing-note {
  min-height: 66px;
  margin: 0 0 36px;
  color: var(--text-muted);
}

.pricing-column-featured .pricing-note {
  color: #c0d7d0;
}

.pricing-column .button {
  width: 100%;
  margin-top: auto;
}

.security-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) 1.3fr;
  gap: 80px;
  align-items: center;
  padding: 96px 6vw;
  background: var(--yellow-soft);
  border-top: 1px solid #ead89b;
  border-bottom: 1px solid #ead89b;
}

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

.security-grid > span {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  padding: 0 17px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid #e5d49b;
  border-radius: 6px;
  font-weight: 650;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.security-grid > span:hover {
  background: #fff;
  border-color: #d7bf70;
  transform: translateY(-2px);
}

.security-grid svg {
  color: var(--green-dark);
}

.faq-section {
  background: var(--surface);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 54px 24px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--green-dark);
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > p {
  max-width: 980px;
  margin: -4px 0 24px;
  color: var(--text-muted);
}

.faq-list a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(520px, 1.2fr);
  align-items: start;
  gap: 72px;
  padding: 96px 6vw;
  background: var(--paper);
}

.contact-intro {
  max-width: 720px;
}

.contact-console-link {
  margin-top: 28px;
}

.contact-form {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.contact-form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-form-heading strong,
.contact-form-heading span {
  display: block;
}

.contact-form-heading strong {
  font-size: 19px;
}

.contact-form-heading span {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 12px;
}

.contact-form-heading > svg {
  width: 26px;
  height: 26px;
  color: var(--green);
}

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

.contact-field-grid label,
.contact-use-case {
  display: grid;
  gap: 7px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 0 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: 0;
}

.contact-form input,
.contact-form select {
  height: 44px;
}

.contact-form textarea {
  min-height: 112px;
  padding-top: 11px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20, 125, 100, 0.12);
}

.contact-use-case {
  margin-top: 16px;
}

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

.contact-consent {
  margin-top: 18px;
}

.contact-submit-row {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
}

.contact-submit-row p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.contact-submit-row p.is-success {
  color: var(--green-dark);
}

.contact-submit-row p.is-error {
  color: var(--red);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(220px, 0.8fr) minmax(300px, 1.2fr) auto;
  min-height: 104px;
  align-items: center;
  gap: 28px;
  padding: 24px 6vw;
  color: #b7c1bd;
  background: #0d1d18;
}

.footer-business {
  display: grid;
  gap: 4px;
  font-size: 11px;
}

.footer-business strong {
  color: #edf7f3;
  font-size: 12px;
}

.footer-business a {
  color: #8ed9bf;
}

.site-footer p {
  margin: 0;
}

.site-footer > span {
  justify-self: end;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.footer-legal a,
.contact-consent a {
  color: #8ed9bf;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-consent a {
  color: var(--green-dark);
}

.legal-body {
  min-height: 100vh;
  background: #f5f8f7;
}

.legal-header {
  position: static;
  grid-template-columns: 1fr auto auto;
  border-bottom: 1px solid var(--line);
}

.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 88px;
}

.legal-title {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.legal-title h1 {
  margin: 8px 0 12px;
  font-size: 42px;
  line-height: 1.15;
}

.legal-title p,
.legal-section p,
.legal-section li,
.legal-table th,
.legal-table td {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.legal-status {
  margin: 28px 0 0;
  padding: 16px 18px;
  color: #694f11;
  background: #fff8e6;
  border: 1px solid #ead79b;
  border-left: 3px solid var(--yellow);
  border-radius: 5px;
}

body[data-stripe-review-ready="true"] .legal-status {
  display: none;
}

.legal-section {
  padding-top: 34px;
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.legal-section ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.legal-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  background: var(--surface);
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  width: 220px;
  color: var(--text);
  background: #edf3f1;
  font-weight: 700;
}

.legal-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  padding: 28px 24px;
  color: #b7c1bd;
  background: #0d1d18;
  font-size: 12px;
}

.legal-footer a {
  color: #8ed9bf;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer-business {
  width: 100%;
  color: #a9b9b3;
  text-align: center;
}

.legal-footer-business strong {
  color: #edf7f3;
}

.brand-footer {
  color: #fff;
}

.brand-footer .brand-edition {
  color: #7e918a;
}

/* Console */
.console-body {
  min-width: 320px;
  background: #f1f4f2;
}

.console-sidebar {
  position: fixed;
  z-index: 50;
  inset: 0 auto 0 0;
  display: flex;
  width: var(--sidebar-width);
  flex-direction: column;
  color: #eaf1ee;
  background: #0d1d18;
  border-right: 1px solid #29453c;
  box-shadow: 14px 0 40px rgba(10, 31, 24, 0.08);
}

.sidebar-top {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid #29453c;
}

.brand-console {
  color: #fff;
}

.brand-console .brand-edition {
  color: #6f9185;
}

.sidebar-close {
  display: none;
  color: #fff;
}

.sidebar-close:hover {
  background: #2b3431;
}

.console-nav {
  display: grid;
  gap: 4px;
  padding: 16px 12px;
}

.nav-section-label {
  margin: 12px 12px 4px;
  color: #61776f;
  font-size: 8px;
  font-weight: 800;
}

.nav-item {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  color: #aeb9b5;
  background: transparent;
  border-radius: 5px;
  text-align: left;
}

.nav-item:hover {
  color: #fff;
  background: #222b28;
}

.nav-item.is-active {
  color: #fff;
  background: #20372f;
  box-shadow: inset 3px 0 0 #69d4b0;
}

.sidebar-bottom {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding: 14px 12px 20px;
  border-top: 1px solid #29453c;
}

.avery-support {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 7px 9px;
  color: #eaf6f1;
  border: 1px solid #315148;
  border-radius: 6px;
}

.avery-support:hover {
  background: #19362d;
  border-color: #417565;
}

.avery-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #e8bb4e;
  background: #193b30;
  border: 1px solid #386759;
  border-radius: 5px;
}

.avery-avatar svg {
  width: 17px;
  height: 17px;
}

.avery-support > span {
  min-width: 0;
}

.avery-support strong,
.avery-support small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.avery-support strong {
  font-size: 11px;
}

.avery-support small {
  margin-top: 2px;
  color: #8eaaa1;
  font-size: 9px;
}

.avery-support > svg {
  width: 13px;
  color: #65dbb4;
}

.tenant-switcher {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 9px;
  background: #222a28;
  border: 1px solid #343e3a;
  border-radius: 6px;
}

.tenant-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #17342c;
  background: #78d0b8;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
}

.tenant-switcher div {
  min-width: 0;
}

.tenant-switcher strong,
.tenant-switcher small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tenant-switcher strong {
  font-size: 12px;
}

.tenant-switcher small {
  color: #8f9b96;
  font-size: 10px;
}

.tenant-switcher > svg {
  width: 14px;
  color: #83908b;
}

.support-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  color: #99a6a1;
  font-size: 13px;
}

.console-shell {
  min-height: 100vh;
  margin-left: var(--sidebar-width);
}

.console-topbar {
  position: sticky;
  z-index: 35;
  top: 0;
  display: flex;
  min-height: 74px;
  align-items: center;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 7px 22px rgba(18, 32, 27, 0.035);
}

.sidebar-open {
  display: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13px;
}

.breadcrumb svg {
  width: 14px;
}

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

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.demo-badge,
.status-pill {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.demo-badge {
  color: #70520e;
  background: var(--yellow-soft);
  border: 1px solid #ead48b;
}

.demo-badge svg,
.status-pill svg {
  width: 13px;
}

.notification-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border: 1px solid #fff;
  border-radius: 50%;
}

.user-menu {
  display: grid;
  grid-template-columns: 32px auto auto;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 5px 8px;
  background: transparent;
  border-radius: 5px;
  text-align: left;
}

.user-menu:hover {
  background: var(--surface-muted);
}

.user-menu > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--cyan);
  border-radius: 5px;
  font-weight: 750;
}

.user-menu strong,
.user-menu small {
  display: block;
  line-height: 1.25;
}

.user-menu strong {
  font-size: 12px;
}

.user-menu small {
  color: var(--text-muted);
  font-size: 10px;
}

.user-menu > svg {
  width: 14px;
  color: var(--text-muted);
}

.console-main {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 32px 30px 64px;
}

.console-page {
  display: none;
}

.console-page.is-active {
  display: block;
}

.page-header {
  display: flex;
  min-height: 72px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.page-header h1 {
  margin: 0;
  font-size: 29px;
  font-weight: 740;
  line-height: 1.2;
}

.page-kicker {
  margin-bottom: 6px;
  color: var(--green);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

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

.network-status-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) repeat(3, minmax(130px, 0.5fr));
  min-height: 78px;
  align-items: stretch;
  margin-bottom: 16px;
  color: #eaf7f2;
  background: #11271f;
  border: 1px solid #2f584a;
  border-radius: 7px;
  overflow: hidden;
}

.network-status-band::after {
  position: absolute;
  right: 18px;
  bottom: -35px;
  width: 150px;
  height: 150px;
  background: url("/assets/nexlion-mark.svg?v=20260811-brand-v3") center / contain no-repeat;
  content: "";
  opacity: 0.035;
  pointer-events: none;
}

.network-status-band > div {
  display: grid;
  align-content: center;
  padding: 15px 18px;
  border-right: 1px solid #2c493f;
}

.network-status-band > div:last-child {
  border-right: 0;
}

.network-status-band span,
.network-status-band small {
  color: #87a49a;
  font-size: 9px;
}

.network-status-band strong {
  margin-top: 4px;
  font-size: 13px;
}

.network-status-primary {
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.network-status-primary div {
  min-width: 0;
}

.network-status-primary strong,
.network-status-primary small {
  display: block;
}

.network-status-primary strong {
  margin-top: 0;
  font-size: 13px;
}

.network-status-primary small {
  margin-top: 3px;
}

.network-pulse {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #71deb8 !important;
  background: #173b2f;
  border: 1px solid #356352;
  border-radius: 6px;
  animation: network-pulse 2.6s ease-in-out infinite;
}

.network-pulse svg {
  width: 19px;
  height: 19px;
}

.text-success {
  color: #76dcb9;
}

.metric-card,
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.metric-card {
  min-height: 142px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(18, 32, 27, 0.025);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.metric-card:hover {
  border-color: #b8c9c0;
  box-shadow: 0 12px 30px rgba(18, 32, 27, 0.075);
  transform: translateY(-2px);
}

.metric-card-balance {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0f6048;
  border-color: #0f6048;
}

.metric-card-balance::after {
  position: absolute;
  right: -18px;
  bottom: -24px;
  width: 116px;
  height: 116px;
  background: url("/assets/nexlion-mark.svg?v=20260811-brand-v3") center / contain no-repeat;
  content: "";
  opacity: 0.12;
}

.metric-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 650;
}

.metric-card-balance .metric-label,
.metric-card-balance p {
  color: #b7d6cd;
}

.metric-card strong {
  display: block;
  margin-top: 18px;
  overflow-wrap: anywhere;
  font-size: 27px;
  font-weight: 760;
}

.metric-card p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 11px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
  gap: 16px;
  margin-bottom: 16px;
}

.panel {
  padding: 22px;
  box-shadow: 0 5px 17px rgba(18, 32, 27, 0.025);
}

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

.panel-heading h2 {
  margin: 0;
  font-size: 16px;
}

.panel-heading p {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 11px;
}

.status-active {
  color: var(--green-dark);
  background: var(--green-soft);
}

.status-warning {
  color: #725514;
  background: var(--yellow-soft);
}

.status-pending {
  color: #52646a;
  background: #e8eef0;
}

.status-failed {
  color: var(--red);
  background: var(--red-soft);
}

.usage-chart {
  display: grid;
  height: 235px;
  grid-template-columns: repeat(7, minmax(22px, 1fr));
  align-items: end;
  gap: 13px;
  padding-top: 18px;
  border-bottom: 1px solid var(--line);
}

.chart-column {
  display: grid;
  height: 100%;
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 9px;
  text-align: center;
}

.chart-bar-wrap {
  position: relative;
  display: flex;
  height: 100%;
  align-items: flex-end;
  justify-content: center;
}

.chart-bar {
  width: min(34px, 72%);
  min-height: 3px;
  background: var(--green);
  border-radius: 4px 4px 0 0;
  transition: height 350ms ease;
}

.chart-column:nth-child(2n) .chart-bar {
  background: var(--cyan);
}

.chart-value {
  position: absolute;
  top: -24px;
  left: 50%;
  padding: 2px 5px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}

.chart-column:hover .chart-value {
  opacity: 1;
}

.chart-label {
  color: var(--text-muted);
  font-size: 10px;
}

.usage-chart-large {
  height: 320px;
}

.model-list {
  display: grid;
  gap: 16px;
}

.model-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: center;
}

.model-name {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 650;
}

.model-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 50%;
}

.model-row:nth-child(2) .model-dot {
  background: var(--cyan);
}

.model-row:nth-child(3) .model-dot {
  background: #cb8d34;
}

.model-row:nth-child(4) .model-dot {
  background: #7369a8;
}

.model-amount {
  font-size: 12px;
  font-weight: 750;
}

.model-track {
  grid-column: 1 / -1;
  height: 5px;
  overflow: hidden;
  background: #e8ece8;
  border-radius: 3px;
}

.model-track span {
  display: block;
  height: 100%;
  background: var(--green);
  border-radius: 3px;
}

.model-row:nth-child(2) .model-track span {
  background: var(--cyan);
}

.model-row:nth-child(3) .model-track span {
  background: #cb8d34;
}

.model-row:nth-child(4) .model-track span {
  background: #7369a8;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}

th {
  padding: 10px 14px;
  color: var(--text-muted);
  background: #f5f7f4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

td {
  height: 58px;
  padding: 10px 14px;
  border-bottom: 1px solid #e7eae6;
  font-size: 12px;
}

tbody tr:last-child td {
  border-bottom: 0;
}

td code {
  padding: 4px 6px;
  color: var(--ink-soft);
  background: var(--surface-muted);
  border-radius: 4px;
  font-size: 11px;
}

.amount-positive {
  color: var(--green-dark);
  font-weight: 750;
}

.amount-negative {
  color: var(--ink);
  font-weight: 750;
}

.balance-inline {
  min-width: 190px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: right;
}

.balance-inline span {
  display: block;
  color: var(--text-muted);
  font-size: 10px;
}

.balance-inline strong {
  font-size: 20px;
}

.topup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.7fr);
  gap: 18px;
  align-items: start;
}

.topup-form {
  padding: 28px;
}

.billing-context {
  display: grid;
  grid-template-columns: minmax(210px, 1.2fr) minmax(170px, 1fr) minmax(150px, 0.8fr) minmax(150px, 0.8fr);
  gap: 14px;
  align-items: end;
  margin: -4px 0 28px;
  padding: 18px;
  background: #f4f8f6;
  border: 1px solid #d5e3de;
  border-left: 3px solid var(--green);
  border-radius: 6px;
}

.billing-context-heading {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
}

.billing-context-heading span:not(.payment-icon),
.billing-context-heading strong,
.billing-context-heading small,
.billing-context label > span,
.route-preview span,
.route-preview strong,
.route-preview small {
  display: block;
}

.billing-context-heading span:not(.payment-icon),
.billing-context label > span,
.route-preview span {
  margin-bottom: 5px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 650;
}

.billing-context-heading strong,
.route-preview strong {
  overflow-wrap: anywhere;
  font-size: 12px;
}

.billing-context-heading small,
.route-preview small {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 9px;
  line-height: 1.4;
}

.billing-context select {
  width: 100%;
  height: 42px;
  padding: 0 34px 0 11px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: 0;
}

.billing-context select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20, 125, 100, 0.12);
}

.route-preview {
  min-height: 42px;
  padding: 7px 10px;
  background: #e8f2ee;
  border: 1px solid #c7dbd3;
  border-radius: 5px;
}

.route-preview strong {
  color: var(--green-dark);
}

fieldset {
  min-width: 0;
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 720;
}

.amount-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.amount-option {
  position: relative;
  min-height: 68px;
  padding: 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
}

.amount-option:hover,
.amount-option.is-selected {
  border-color: var(--green);
}

.amount-option.is-selected {
  color: var(--green-dark);
  background: var(--green-soft);
  box-shadow: inset 0 0 0 1px var(--green);
}

.amount-option input {
  position: absolute;
  opacity: 0;
}

.amount-option strong,
.amount-option small {
  display: block;
}

.amount-option strong {
  font-size: 16px;
}

.amount-option small {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 10px;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 650;
}

.money-input,
.input-suffix {
  display: grid;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.money-input {
  grid-template-columns: auto 1fr auto;
  min-height: 48px;
}

.money-input > span {
  padding-left: 15px;
  font-size: 18px;
  font-weight: 750;
}

.money-input input,
.input-suffix input {
  min-width: 0;
  border: 0;
  outline: 0;
}

.money-input input {
  width: 100%;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 650;
}

.money-input small {
  padding-right: 14px;
  color: var(--text-muted);
}

.payment-methods {
  display: grid;
  gap: 10px;
}

.payment-method {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  min-height: 76px;
  align-items: center;
  gap: 13px;
  padding: 12px 15px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.payment-method.is-selected {
  border-color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green);
}

.payment-method input {
  position: absolute;
  opacity: 0;
}

.payment-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 5px;
}

.payment-method strong,
.payment-method small {
  display: block;
}

.payment-method small {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 11px;
}

.method-check {
  color: var(--line-strong);
}

.payment-method.is-selected .method-check {
  color: var(--green);
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text-muted);
  font-size: 11px;
}

.checkbox-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
}

.button-submit {
  width: 100%;
  margin-top: 20px;
}

.topup-summary {
  position: sticky;
  top: 92px;
  overflow: hidden;
  background: #1e2825;
  border: 1px solid #34413d;
  border-radius: 7px;
  color: #fff;
}

.summary-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px;
  border-bottom: 1px solid #3a4642;
}

.summary-heading > svg {
  width: 28px;
  height: 28px;
  color: var(--yellow);
}

.summary-heading strong,
.summary-heading span {
  display: block;
}

.summary-heading span {
  color: #9daba6;
  font-size: 10px;
}

.topup-summary dl {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 22px;
}

.topup-summary dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topup-summary dt {
  color: #9eaca7;
  font-size: 12px;
}

.topup-summary dd {
  margin: 0;
  font-weight: 680;
}

.topup-summary .summary-total {
  margin-top: 7px;
  padding-top: 18px;
  border-top: 1px solid #3a4642;
}

.summary-total dd {
  color: var(--yellow);
  font-size: 23px;
}

.summary-points {
  display: grid;
  gap: 10px;
  padding: 18px 22px 22px;
  color: #aab6b2;
  background: #18201e;
  font-size: 10px;
}

.summary-points span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-points svg {
  width: 14px;
  color: #78d0b8;
}

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

.segmented-control {
  display: inline-flex;
  padding: 3px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.segmented-control button {
  min-height: 32px;
  padding: 0 13px;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 650;
}

.segmented-control button.is-active {
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(25, 34, 31, 0.12);
}

.usage-summary-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.usage-summary-band div {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.usage-summary-band div:last-child {
  border-right: 0;
}

.usage-summary-band span,
.usage-summary-band strong {
  display: block;
}

.usage-summary-band span {
  color: var(--text-muted);
  font-size: 10px;
}

.usage-summary-band strong {
  margin-top: 7px;
  font-size: 14px;
}

.settings-layout {
  max-width: 980px;
}

.settings-panel {
  padding: 0;
  overflow: hidden;
}

.settings-section {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.settings-section:last-child {
  border-bottom: 0;
}

.settings-section h2 {
  margin: 0;
  font-size: 16px;
}

.settings-section p {
  margin: 5px 0 0;
  color: var(--text-muted);
  font-size: 11px;
}

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

.settings-fields label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 650;
}

.settings-fields input,
.settings-fields select {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: 0;
}

.settings-fields input:focus,
.settings-fields select:focus,
.money-input:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20, 125, 100, 0.12);
}

.settings-fields input:disabled {
  color: #8c9692;
  background: var(--surface-muted);
}

.input-suffix {
  grid-template-columns: 1fr auto;
}

.input-suffix {
  padding-right: 10px;
}

.input-suffix input {
  height: 40px;
  padding: 0 11px;
}

.input-suffix small {
  color: var(--text-muted);
}

.order-dialog {
  width: min(510px, calc(100vw - 32px));
  padding: 34px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.order-dialog::backdrop {
  background: rgba(12, 18, 16, 0.64);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.dialog-status-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 7px;
}

.dialog-status-icon svg {
  width: 26px;
  height: 26px;
}

.order-dialog h2 {
  margin: 0;
  font-size: 24px;
}

.order-dialog > p:not(.page-kicker) {
  margin: 10px 0 22px;
  color: var(--text-muted);
}

.dialog-details {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 16px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.dialog-details div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dialog-details dt {
  color: var(--text-muted);
  font-size: 11px;
}

.dialog-details dd {
  max-width: 65%;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  font-weight: 680;
  text-align: right;
}

.dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 10px;
  margin-top: 22px;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  display: flex;
  max-width: min(420px, calc(100vw - 32px));
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: #fff;
  background: #1c2925;
  border: 1px solid #3a4a45;
  border-radius: 6px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast svg {
  color: #7ed4bc;
}

.sidebar-backdrop {
  display: none;
}

@keyframes hero-content-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-visual-in {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes orbit-spin {
  from {
    transform: translate(-50%, -50%) rotate(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbit-spin-reverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0);
  }
}

@keyframes core-pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.93);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes node-float {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -5px;
  }
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 226, 181, 0.28);
  }
  70%,
  100% {
    box-shadow: 0 0 0 9px rgba(99, 226, 181, 0);
  }
}

@keyframes network-pulse {
  0%,
  100% {
    border-color: #356352;
    box-shadow: 0 0 0 0 rgba(105, 212, 176, 0);
  }
  50% {
    border-color: #4c8b75;
    box-shadow: 0 0 0 5px rgba(105, 212, 176, 0.055);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    padding: 12px 5vw 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .desktop-only {
    display: none;
  }

  .mobile-menu-button {
    display: inline-grid;
  }

  .hero {
    padding-right: 4vw;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    gap: 2vw;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .gateway-console {
    width: 100%;
  }

  .product-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-flow > .flow-arrow {
    display: none;
  }

  .deployment-grid {
    grid-template-columns: 1fr;
  }

  .deployment-card p {
    min-height: 0;
  }

  .security-band {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

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

  .site-footer > span {
    justify-self: end;
  }

  .guardian-strip {
    grid-template-columns: 74px 1fr;
  }

  .guardian-strip > img {
    width: 62px;
  }

  .guardian-status {
    grid-column: 2;
    justify-content: flex-start;
  }

  .console-sidebar {
    transform: translateX(-100%);
    transition: transform 180ms ease;
  }

  .console-sidebar.is-open {
    transform: translateX(0);
  }

  .sidebar-close,
  .sidebar-open {
    display: inline-grid;
  }

  .sidebar-backdrop.is-open {
    position: fixed;
    z-index: 45;
    inset: 0;
    display: block;
    background: rgba(12, 18, 16, 0.5);
  }

  .console-shell {
    margin-left: 0;
  }

  .dashboard-grid,
  .topup-layout {
    grid-template-columns: 1fr;
  }

  .billing-context {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .topup-summary {
    position: static;
  }

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

  .network-status-band {
    grid-template-columns: minmax(280px, 1.5fr) repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    padding: 0 18px;
  }

  .site-nav {
    inset: 64px 0 auto;
  }

  .language-switcher {
    padding: 0 5px;
  }

  .language-switcher svg {
    display: none;
  }

  .language-switcher select {
    width: 86px;
    font-size: 11px;
  }

  .hero {
    min-height: calc(100vh - 122px);
    padding: 34px 22px 10px;
    background-position: left center;
  }

  .hero-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 12px;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-tagline {
    margin-top: 13px;
    font-size: 16px;
  }

  .hero-copy {
    margin-top: 13px;
    font-size: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-facts {
    display: grid;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-visual {
    min-height: 224px;
    margin-top: 0;
    pointer-events: none;
  }

  .gateway-console-header {
    min-height: 54px;
    padding: 9px 11px;
  }

  .gateway-console-title {
    gap: 8px;
  }

  .gateway-console-title img {
    width: 30px;
    height: 30px;
  }

  .gateway-console-title strong {
    font-size: 11px;
  }

  .gateway-console-title small {
    font-size: 7px;
  }

  .gateway-live {
    min-height: 24px;
    padding: 0 7px;
    font-size: 7px;
  }

  .gateway-request {
    min-height: 38px;
    margin: 10px 11px 0;
    padding: 0 9px;
    font-size: 8px;
  }

  .gateway-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    padding: 12px 9px;
  }

  .gateway-flow > svg {
    display: none;
  }

  .gateway-flow > div > span {
    width: 28px;
    height: 28px;
  }

  .gateway-flow > div > span svg {
    width: 14px;
    height: 14px;
  }

  .gateway-flow strong {
    font-size: 9px;
  }

  .gateway-flow small {
    font-size: 7px;
  }

  .gateway-routes {
    display: none;
  }

  .gateway-console-footer {
    min-height: 58px;
  }

  .gateway-console-footer > span {
    display: grid;
    min-height: 58px;
    grid-template-columns: auto auto;
    align-content: center;
    justify-content: center;
    gap: 2px 4px;
    padding: 5px 3px;
    font-size: 7px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .gateway-console-footer > span > span {
    grid-column: 1 / -1;
  }

  .proof-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-band div:nth-child(2) {
    border-right: 0;
  }

  .proof-band div:nth-child(-n + 2) {
    border-bottom: 1px solid #c3ded4;
  }

  .proof-band div {
    display: grid;
    justify-content: start;
    gap: 0;
    padding: 18px 22px;
  }

  .section,
  .capability-band {
    padding: 72px 22px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .security-band h2,
  .contact-section h2 {
    font-size: 34px;
  }

  .section-heading > p:last-child,
  .contact-section > div > p:last-child {
    font-size: 16px;
  }

  .product-flow {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .flow-item {
    min-height: 136px;
  }

  .guardian-strip {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 15px;
  }

  .guardian-strip > img {
    width: 48px;
    height: 48px;
  }

  .guardian-strip strong {
    font-size: 13px;
  }

  .guardian-status {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .guardian-status > span {
    justify-content: center;
    padding: 0 6px;
    font-size: 9px;
  }

  .capability-row {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .capability-row > svg {
    display: none;
  }

  .capability-row h3 {
    font-size: 20px;
  }

  .deployment-card {
    padding: 26px;
  }

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

  .commerce-band {
    padding: 72px 22px;
  }

  .commerce-grid {
    grid-template-columns: 1fr;
  }

  .commerce-column,
  .commerce-column + .commerce-column {
    padding: 28px 0;
    border-left: 0;
  }

  .commerce-column + .commerce-column {
    border-top: 1px solid #3a554c;
  }

  .commerce-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .commerce-disclosure {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .commerce-disclosure > a {
    padding-top: 8px;
  }

  .pricing-column {
    min-height: 310px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pricing-column:last-child {
    border-bottom: 0;
  }

  .security-band {
    padding: 72px 22px;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    display: grid;
    padding: 72px 22px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-field-grid {
    grid-template-columns: 1fr;
  }

  .contact-console-link {
    width: 100%;
  }

  .contact-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-submit-row .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 34px 22px;
  }

  .site-footer > span {
    justify-self: start;
  }

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

  .legal-main {
    width: min(100% - 32px, 920px);
    padding: 42px 0 64px;
  }

  .legal-header {
    grid-template-columns: 1fr auto;
  }

  .legal-header > .button {
    display: none;
  }

  .legal-title h1 {
    font-size: 34px;
  }

  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: anywhere;
  }

  .legal-table,
  .legal-table tbody,
  .legal-table tr {
    display: block;
    width: 100%;
  }

  .legal-table {
    min-width: 0;
  }

  .console-topbar {
    min-height: 62px;
    padding: 0 14px;
  }

  .breadcrumb > span,
  .breadcrumb > svg,
  .user-menu div,
  .user-menu > svg,
  .demo-badge {
    display: none;
  }

  .user-menu {
    grid-template-columns: 32px;
    padding: 0;
  }

  .console-main {
    padding: 22px 14px 48px;
  }

  .page-header {
    display: grid;
    min-height: 0;
    margin-bottom: 20px;
  }

  .page-header h1 {
    font-size: 25px;
  }

  .page-actions {
    width: 100%;
    justify-content: stretch;
  }

  .page-actions .button {
    flex: 1;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .network-status-band {
    grid-template-columns: repeat(3, 1fr);
  }

  .network-status-band > div {
    padding: 13px 11px;
  }

  .network-status-primary {
    grid-column: 1 / -1;
    border-right: 0 !important;
    border-bottom: 1px solid #2c493f;
  }

  .network-status-band > div:not(.network-status-primary) {
    text-align: center;
  }

  .metric-card {
    min-height: 126px;
  }

  .panel {
    padding: 17px;
  }

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

  .usage-chart {
    gap: 5px;
  }

  .chart-bar {
    width: 70%;
  }

  .amount-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .topup-form {
    padding: 20px;
  }

  .billing-context {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .payment-method {
    grid-template-columns: 42px 1fr;
  }

  .payment-method .method-check {
    display: none;
  }

  .balance-inline {
    width: 100%;
    text-align: left;
  }

  .panel-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .segmented-control {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .segmented-control button {
    min-width: 0;
    padding: 0 5px;
  }

  .usage-summary-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .usage-summary-band div:nth-child(2) {
    border-right: 0;
  }

  .usage-summary-band div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .settings-section {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 20px;
  }

  .settings-fields {
    grid-template-columns: 1fr;
  }

  .dialog-actions {
    grid-template-columns: 1fr;
  }
}
