:root {
  color-scheme: dark;
  --bg: #05070d;
  --panel: #0b101a;
  --panel-2: #101827;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(125, 215, 255, 0.42);
  --text: #f6f8fb;
  --muted: #a8b2c3;
  --dim: #6f7b8d;
  --container: 1460px;
  --cyan: #6ee7ff;
  --pink: #7c6dff;
  --platinum: #eff8ff;
  --cta-purple: #6f4dff;
  --cta-purple-hover: #8063ff;
  --accent-pink: var(--cyan);
  --green: #33d69f;
  --amber: #ffcc66;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f8fc;
  --panel: #ffffff;
  --panel-2: #eef5fb;
  --line: rgba(12, 27, 48, 0.12);
  --line-strong: rgba(0, 132, 190, 0.26);
  --text: #0d1728;
  --muted: #43536a;
  --dim: #617087;
  --cyan: #006faa;
  --pink: #7657ff;
  --platinum: #102136;
  --cta-purple: #6f4dff;
  --cta-purple-hover: #8063ff;
  --green: #007a5d;
  --amber: #b87800;
  --shadow: 0 28px 90px rgba(30, 48, 76, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  word-break: auto-phrase;
}

:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 14% 0%, rgba(0, 139, 210, 0.12), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(118, 87, 255, 0.14), transparent 32%),
    var(--bg);
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px max(32px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 13, 0.94);
}

:root[data-theme="light"] .site-header {
  border-bottom-color: rgba(12, 27, 48, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 35px rgba(28, 45, 70, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  min-width: 224px;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 10px;
  filter: drop-shadow(0 18px 38px rgba(0, 111, 174, 0.18));
}

.brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #090d16;
  box-shadow:
    0 0 0 1px rgba(125, 215, 255, 0.18),
    0 16px 38px rgba(125, 215, 255, 0.1);
}

:root[data-theme="light"] .brand-mark {
  background: #f8fbff;
  border-color: rgba(12, 27, 48, 0.1);
  box-shadow: 0 12px 30px rgba(0, 139, 210, 0.12);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  border-radius: 999px;
  content: "";
}

.brand-mark::before {
  width: 26px;
  height: 9px;
  transform: translate(-5px, -4px) rotate(-28deg);
  background: var(--cyan);
}

.brand-mark::after {
  width: 26px;
  height: 9px;
  transform: translate(6px, 6px) rotate(-28deg);
  background: var(--pink);
}

.brand-mark span {
  width: 12px;
  height: 12px;
  background: #fff;
}

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

.brand-copy strong {
  font-size: 17px;
  line-height: 1.15;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: rgba(246, 248, 251, 0.76);
  font-size: 14px;
  font-weight: 760;
}

:root[data-theme="light"] .nav-links {
  color: rgba(13, 23, 40, 0.72);
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--cyan);
}

.header-actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-action,
.header-login,
.primary-action,
.plan-action,
.submit-order,
.footer-action {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  color: #061016;
  font-weight: 860;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.header-action,
.primary-action,
.submit-order,
.footer-action {
  background: var(--cta-purple);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 16px 42px rgba(111, 77, 255, 0.3),
    0 12px 34px rgba(110, 231, 255, 0.08);
}

.header-action {
  padding: 0 18px;
}

.header-login {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(110, 231, 255, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(110, 231, 255, 0.16), rgba(124, 109, 255, 0.14)),
    rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 16px;
  font-size: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 12px 30px rgba(110, 231, 255, 0.12);
  white-space: nowrap;
}

.theme-toggle {
  display: inline-flex;
  width: 42px;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(110, 231, 255, 0.28);
  border-radius: 12px;
  background:
    radial-gradient(circle at 34% 28%, rgba(110, 231, 255, 0.18), transparent 46%),
    rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0;
  font-size: 14px;
  font-weight: 860;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.theme-toggle:hover {
  border-color: rgba(110, 231, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(110, 231, 255, 0.08);
  transform: translateY(-1px);
}

.theme-icon {
  width: 20px;
  height: 20px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.theme-toggle[data-theme-target="light"] .theme-icon {
  color: #ffcc66;
  filter: drop-shadow(0 0 10px rgba(255, 204, 102, 0.28));
}

.theme-toggle[data-theme-target="dark"] .theme-icon {
  color: #5a6fff;
  filter: drop-shadow(0 0 10px rgba(90, 111, 255, 0.22));
}

:root[data-theme="light"] .theme-toggle,
:root[data-theme="light"] .header-login,
:root[data-theme="light"] .ghost-action {
  border-color: rgba(12, 27, 48, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: #0d1728;
  box-shadow: 0 10px 28px rgba(30, 48, 76, 0.08);
}

:root[data-theme="light"] .theme-toggle {
  background:
    radial-gradient(circle at 65% 35%, rgba(118, 87, 255, 0.18), transparent 46%),
    rgba(255, 255, 255, 0.88);
}

.header-login:hover {
  border-color: rgba(110, 231, 255, 0.62);
  background:
    linear-gradient(135deg, rgba(110, 231, 255, 0.24), rgba(124, 109, 255, 0.2)),
    rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.mobile-label {
  display: none;
}

.header-action:hover,
.primary-action:hover,
.plan-action:hover,
.submit-order:hover,
.footer-action:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
}

.header-action:hover,
.primary-action:hover,
.submit-order:hover,
.footer-action:hover {
  background: var(--cta-purple-hover);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  padding-top: 76px;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.35), #05070d 96%),
    #05070d;
}

:root[data-theme="light"] .hero {
  background:
    linear-gradient(180deg, rgba(245, 248, 252, 0.18), #f5f8fc 96%),
    #f5f8fc;
}

.hero-asset,
#network-canvas,
.hero-noise {
  position: absolute;
  inset: 0;
}

:root[data-theme="light"] .hero-noise {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(245, 248, 252, 0.72)),
    repeating-linear-gradient(0deg, rgba(12, 27, 48, 0.035) 0 1px, transparent 1px 4px);
}

.hero-asset {
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.7) 0%, rgba(5, 7, 13, 0.14) 48%, rgba(5, 7, 13, 0.02) 100%),
    url("./assets/hero-network-bg.png") center right / cover no-repeat;
  opacity: 0.84;
  transform: scale(1.015);
}

#network-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.hero-noise {
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.92) 0%, rgba(5, 7, 13, 0.58) 40%, rgba(5, 7, 13, 0.14) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.1) 0%, rgba(5, 7, 13, 0.38) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 4px);
}

.hero-inner,
.section-inner {
  width: min(var(--container), calc(100% - 64px));
  max-width: calc(100vw - 48px);
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(92vh - 76px);
  grid-template-columns: minmax(0, 0.98fr) minmax(430px, 0.7fr);
  gap: 70px;
  align-items: center;
  padding: 70px 0 76px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li,
summary {
  text-wrap: pretty;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: 56px;
  line-height: 1.06;
  letter-spacing: 0;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.72);
}

h1 span {
  display: block;
}

@media (min-width: 1041px) {
  #hero-title span {
    white-space: nowrap;
  }
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 34px;
  color: #d9e1ed;
  font-size: 19px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.76);
}

.hero-lead span {
  display: inline;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.primary-action,
.ghost-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 16px;
}

.ghost-action {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 820;
}

.ghost-action:hover {
  border-color: rgba(125, 215, 255, 0.45);
  color: var(--cyan);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(72px, 1fr));
  gap: 8px;
  max-width: 920px;
}

.trust-strip span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(246, 248, 251, 0.78);
  padding: 0 13px;
  font-size: 13px;
  font-weight: 820;
  justify-content: center;
  white-space: nowrap;
}

:root[data-theme="light"] .trust-strip span,
:root[data-theme="light"] .platform-cloud span {
  border-color: rgba(12, 27, 48, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(13, 23, 40, 0.84);
}

.command-center,
.feature-card,
.plan-card,
.ops-board,
.proof-grid article,
.faq-list details,
.order-dialog {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 16, 26, 0.78);
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .command-center,
:root[data-theme="light"] .feature-card,
:root[data-theme="light"] .plan-card,
:root[data-theme="light"] .ops-board,
:root[data-theme="light"] .proof-grid article,
:root[data-theme="light"] .faq-list details,
:root[data-theme="light"] .order-dialog,
:root[data-theme="light"] .credibility-grid article,
:root[data-theme="light"] .stability-cards article,
:root[data-theme="light"] .benefit-grid article {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(12, 27, 48, 0.1);
  box-shadow: 0 28px 80px rgba(30, 48, 76, 0.1);
}

.command-center {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 18px;
}

.command-center::before {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(110, 231, 255, 0.18), transparent 35%),
    linear-gradient(315deg, rgba(124, 109, 255, 0.15), transparent 34%);
  content: "";
  pointer-events: none;
}

.panel-top,
.route-card,
.signal-grid,
.event-log {
  position: relative;
  z-index: 1;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-bottom: 16px;
}

.panel-top em {
  margin-left: auto;
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(51, 214, 159, 0.12);
}

.route-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  min-height: 92px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(125, 215, 255, 0.24);
  border-radius: 8px;
  background: rgba(5, 7, 13, 0.58);
}

.route-card span,
.signal-grid span {
  display: block;
  color: var(--dim);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.route-card div {
  min-width: 0;
}

.route-card strong {
  display: block;
  margin-top: 5px;
  font-size: 28px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.route-card b {
  color: var(--cyan);
  font-size: 24px;
}

.route-map {
  position: relative;
  height: 150px;
  margin: 4px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    rgba(5, 7, 13, 0.46);
  background-size: 32px 32px;
}

.route-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.route-lines path {
  fill: none;
  stroke: url("#routeGradient");
  stroke-width: 1.7;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.route-lines path {
  stroke: #5f7cff;
  filter: drop-shadow(0 0 6px rgba(110, 231, 255, 0.28));
}

:root[data-theme="light"] .route-map,
:root[data-theme="light"] .route-card,
:root[data-theme="light"] .signal-grid div,
:root[data-theme="light"] .result-grid article,
:root[data-theme="light"] .order-ticket,
:root[data-theme="light"] .order-summary,
:root[data-theme="light"] .payment-card {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(12, 27, 48, 0.1);
}

.node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #0c1321;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

:root[data-theme="light"] .node {
  background: #132238;
  color: #fff;
}

.node-cn {
  top: 58px;
  left: 24px;
  box-shadow: 0 0 26px rgba(124, 109, 255, 0.34);
}

.node-us {
  top: 34px;
  left: 46%;
  box-shadow: 0 0 26px rgba(125, 215, 255, 0.3);
}

.node-res {
  right: 26px;
  bottom: 30px;
  box-shadow: 0 0 26px rgba(51, 214, 159, 0.26);
}

.line {
  position: absolute;
  z-index: 1;
  height: 2px;
  transform-origin: left center;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
}

.line-one {
  top: 76px;
  left: 64px;
  width: 168px;
  transform: rotate(-12deg);
}

.line-two {
  top: 72px;
  left: 52%;
  width: 146px;
  transform: rotate(25deg);
}

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

.signal-grid div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.signal-grid strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 24px;
}

.event-log {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.event-log p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(246, 248, 251, 0.68);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.event-log span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.ticker-band {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #070b13;
}

.ticker-inner {
  display: grid;
  width: min(var(--container), calc(100% - 64px));
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
}

.ticker-inner span {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.014)),
    #080d16;
  color: rgba(246, 248, 251, 0.9);
  font-size: 14px;
  font-weight: 850;
  box-shadow: none;
  text-shadow: none;
}

.ticker-inner span:last-child {
  border-right: 0;
}

.credibility-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    #05070d;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.09);
}

.credibility-grid article {
  min-height: 132px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    #090e18;
}

.credibility-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credibility-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 17px;
}

.credibility-grid p {
  margin: 0;
  color: rgba(214, 221, 232, 0.76);
  font-size: 13px;
}

.section {
  padding: 94px 0;
  background: var(--bg);
}

.section:nth-of-type(odd) {
  background: #070a12;
}

.section-heading {
  min-width: 0;
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.pain-grid,
.stability-cards,
.benefit-grid {
  display: grid;
  gap: 14px;
}

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

.pain-grid article,
.stability-cards article,
.benefit-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016)),
    rgba(11, 16, 26, 0.78);
}

.pain-grid article {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: #f3f7ff;
  text-align: center;
  font-weight: 860;
}

.stability-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(111, 77, 255, 0.12), transparent 34%),
    #05070d;
}

.stability-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 44px;
  align-items: start;
}

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

.stability-cards article,
.benefit-grid article {
  min-height: 190px;
  padding: 24px;
}

.stability-cards strong,
.benefit-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 19px;
}

.stability-cards p,
.benefit-grid p {
  margin: 0;
  color: var(--muted);
}

.platforms-section {
  background:
    linear-gradient(180deg, #05070d 0%, #070a12 100%);
}

.platform-cloud {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.platform-cloud span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.052);
  color: rgba(246, 248, 251, 0.9);
  padding: 0 14px;
  font-size: 14px;
  font-weight: 820;
}

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

.row-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

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

.feature-card {
  min-height: 266px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.feature-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--accent-pink);
  font-size: 24px;
  font-weight: 900;
  text-shadow: 0 0 22px rgba(110, 231, 255, 0.28);
}

.feature-card h3,
.plan-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.feature-card p,
.plan-card p,
.proof-grid p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.plans-section {
  background:
    linear-gradient(180deg, #05070d 0%, #0a0f18 100%);
}

.billing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.billing-toggle button {
  min-width: 76px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  padding: 8px 14px;
  font-weight: 850;
}

.billing-toggle button.is-active {
  background: #fff;
  color: #060911;
}

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

.plan-card {
  display: flex;
  min-height: 552px;
  flex-direction: column;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--panel);
}

.featured-plan {
  border-color: rgba(125, 215, 255, 0.42);
  background:
    linear-gradient(150deg, rgba(110, 231, 255, 0.12), rgba(124, 109, 255, 0.1) 56%, rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.enterprise-plan {
  border-color: rgba(124, 109, 255, 0.34);
}

.plan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
}

.plan-topline span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-topline b {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 10px;
  font-size: 12px;
}

.price {
  display: flex;
  min-height: 86px;
  align-items: flex-end;
  gap: 9px;
  margin: 18px 0 20px;
}

.price strong {
  color: #fff;
  font-size: 60px;
  line-height: 0.95;
}

.price span {
  padding-bottom: 8px;
  color: var(--muted);
  font-weight: 820;
}

.custom-price strong {
  font-size: 48px;
}

.plan-card ul {
  display: grid;
  gap: 13px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 24px;
  color: #d6dde8;
}

.plan-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(125, 215, 255, 0.42);
  content: "";
}

.featured-plan li::before {
  background: var(--pink);
  box-shadow: 0 0 18px rgba(124, 109, 255, 0.46);
}

.plan-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1.15;
  text-align: center;
}

.plan-action.hot {
  border: 0;
  background: var(--cta-purple);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 16px 42px rgba(111, 77, 255, 0.3);
}

.plan-action.hot:hover {
  background: var(--cta-purple-hover);
}

.plan-action.aqua-action {
  border: 0;
  background: linear-gradient(135deg, #08b6cf, #1e7cff);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 18px 42px rgba(8, 182, 207, 0.25);
}

.plan-action.aqua-action:hover {
  background: linear-gradient(135deg, #06a9c0, #166cec);
}

.plan-action-center {
  align-self: stretch;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.ops-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 42px;
  align-items: start;
}

.ops-board {
  overflow: hidden;
  background: #0a0f18;
}

.ops-board-head {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.ops-board-head span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(51, 214, 159, 0.12);
}

.ops-board-head em {
  margin-left: auto;
  color: var(--cyan);
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
}

.ops-row {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.6fr;
  gap: 14px;
  min-height: 68px;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
}

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

.ops-row span {
  color: #dce5f2;
}

.ops-row b,
.ops-row i {
  font-style: normal;
}

.ok {
  color: var(--green);
}

.watch {
  color: var(--amber);
}

.standby {
  color: var(--cyan);
}

.normal {
  color: var(--pink);
}

.ops-row i {
  color: var(--muted);
  text-align: right;
}

.proof-section {
  background: #05070d;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 44px;
  align-items: start;
}

.proof-layout > * {
  min-width: 0;
}

.proof-layout h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.16;
  word-break: keep-all;
  overflow-wrap: normal;
}

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

.proof-grid article {
  min-height: 190px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.proof-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 18px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 42px;
}

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

.faq-list details {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.faq-list summary {
  cursor: pointer;
  color: #fff;
  font-weight: 850;
}

.faq-list p {
  padding-top: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #03050a;
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner strong {
  font-size: 18px;
}

.footer-inner p {
  margin: 5px 0 0;
  color: var(--muted);
}

.footer-disclaimer {
  max-width: 720px;
  font-size: 13px;
}

.footer-links,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-links a,
.legal-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(246, 248, 251, 0.82);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 780;
}

.footer-links a:hover,
.legal-links a:hover {
  border-color: rgba(110, 231, 255, 0.48);
  color: #fff;
}

.footer-action {
  padding: 0 20px;
}

.legal-main {
  min-height: 100vh;
  padding-top: 88px;
  background:
    radial-gradient(circle at 18% 4%, rgba(110, 231, 255, 0.12), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(124, 109, 255, 0.14), transparent 30%),
    #05070d;
}

.legal-document {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.legal-document h1 {
  max-width: 820px;
  margin: 8px 0 10px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.02;
}

.legal-updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-weight: 760;
}

.legal-card {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--panel);
  padding: 24px;
}

.legal-card h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card p {
  margin: 0;
}

.legal-card p + p {
  margin-top: 12px;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-card a {
  color: var(--cyan);
  font-weight: 820;
}

.order-dialog {
  width: min(680px, calc(100% - 32px));
  border: 1px solid rgba(125, 215, 255, 0.24);
  padding: 0;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(125, 215, 255, 0.1), transparent 38%),
    linear-gradient(315deg, rgba(124, 109, 255, 0.1), transparent 34%),
    #080d16;
}

.order-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.order-form {
  position: relative;
  padding: 32px;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.order-form h2 {
  margin-bottom: 24px;
  padding-right: 44px;
  font-size: 30px;
}

.order-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: -6px 0 22px;
}

.order-flow span,
.delivery-steps span {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(214, 221, 232, 0.78);
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 820;
  text-align: center;
}

.order-flow .is-active,
.delivery-steps .is-done,
.delivery-steps .is-current {
  border-color: rgba(110, 231, 255, 0.32);
  background: rgba(110, 231, 255, 0.1);
  color: #fff;
}

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

.form-grid label,
.order-note {
  display: grid;
  gap: 8px;
  color: #dce5f2;
  font-size: 14px;
  font-weight: 780;
}

.form-grid select,
.form-grid input,
.order-note textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0a101b;
  color: #fff;
  padding: 0 12px;
}

:root[data-theme="light"] .form-grid label,
:root[data-theme="light"] .order-note {
  color: #182539;
}

:root[data-theme="light"] .form-grid select,
:root[data-theme="light"] .form-grid input,
:root[data-theme="light"] .order-note textarea,
:root[data-theme="light"] .payment-proof input {
  background: #fff;
  border-color: rgba(12, 27, 48, 0.14);
  color: #0d1728;
}

:root[data-theme="light"] .order-summary b,
:root[data-theme="light"] .order-summary strong,
:root[data-theme="light"] .result-grid strong,
:root[data-theme="light"] .payment-meta strong,
:root[data-theme="light"] .route-card strong {
  color: #0d1728;
}

.order-note {
  margin-top: 16px;
}

.order-note textarea {
  min-height: 84px;
  padding: 12px;
  resize: vertical;
}

.order-socks-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.order-socks-fields label {
  display: grid;
  gap: 8px;
  color: #dce5f2;
  font-size: 14px;
  font-weight: 780;
  min-width: 0;
}

.order-socks-fields input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0a101b;
  color: #fff;
  padding: 0 12px;
}

:root[data-theme="light"] .order-socks-fields label {
  color: #182539;
}

:root[data-theme="light"] .order-socks-fields input {
  background: #fff;
  border-color: rgba(12, 27, 48, 0.14);
  color: #0d1728;
}

.order-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid rgba(125, 215, 255, 0.22);
  border-radius: 8px;
  background: rgba(125, 215, 255, 0.055);
}

.order-summary span {
  display: grid;
  gap: 3px;
  color: var(--muted);
}

.order-summary b {
  color: #fff;
  font-size: 16px;
}

.order-summary small {
  color: rgba(214, 221, 232, 0.64);
  font-size: 12px;
}

.order-summary strong {
  color: #fff;
  font-size: 26px;
}

.submit-order {
  width: 100%;
  min-height: 52px;
}

.submit-order:disabled {
  cursor: wait;
  opacity: 0.72;
}

.order-result h2 {
  margin-bottom: 18px;
  padding-right: 44px;
  font-size: 30px;
}

.order-ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid rgba(110, 231, 255, 0.24);
  border-radius: 8px;
  background: rgba(110, 231, 255, 0.07);
}

.order-ticket span,
.result-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
}

.order-ticket strong {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 18px;
}

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

.result-grid article {
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.result-grid strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 16px;
}

.payment-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin: 16px 0;
  padding: 20px;
  border: 1px solid rgba(110, 231, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(110, 231, 255, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

.mock-qr {
  position: relative;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 8px;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(5, 7, 13, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.2);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.mock-qr.is-ready {
  border: 10px solid #fff;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(5, 7, 13, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.2);
}

.mock-qr.is-error {
  border-color: #fff;
  background: #fff;
}

.mock-qr img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mock-qr.is-ready .qr-loader,
.mock-qr.is-ready img[hidden] {
  display: none;
}

.qr-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  background: #fff;
}

.qr-loader::before {
  display: none;
}

.qr-loader::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 26px;
  background:
    linear-gradient(180deg, transparent, rgba(110, 231, 255, 0.16), transparent),
    linear-gradient(90deg, transparent, rgba(255, 47, 167, 0.24), rgba(110, 231, 255, 0.28), transparent);
  animation: qr-scan 1.45s ease-in-out infinite;
  content: "";
}

.qr-loader i {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: conic-gradient(from 0deg, transparent, rgba(255, 47, 167, 0.9), rgba(110, 231, 255, 0.88), transparent 78%);
  box-shadow: 0 0 28px rgba(110, 231, 255, 0.16);
  animation: qr-spin 1.05s linear infinite;
}

.qr-loader i::after {
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: #fff;
  content: "";
}

.qr-loader span {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(5, 7, 13, 0.07);
}

.qr-loader span::after {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  animation: qr-line 1.05s ease-in-out infinite;
  content: "";
}

.qr-loader b {
  position: relative;
  z-index: 2;
  color: #202636;
  font-size: 13px;
  font-weight: 900;
}

.mock-qr.is-error .qr-loader {
  background: #fff;
}

.mock-qr.is-error .qr-loader::after {
  display: none;
}

.mock-qr.is-error .qr-loader span {
  background: rgba(255, 92, 138, 0.18);
}

@keyframes qr-scan {
  0% {
    transform: translateY(-28px);
  }

  100% {
    transform: translateY(150px);
  }
}

@keyframes qr-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes qr-line {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(260%);
  }
}

.payment-meta span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.payment-meta strong {
  display: block;
  margin: 4px 0 8px;
  color: #fff;
  font-size: 28px;
}

.payment-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.payment-open-action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border-radius: 8px;
  background: rgba(255, 47, 167, 0.14);
  color: #fff;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 860;
}

.payment-proof {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.payment-proof input {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0 14px;
  outline: none;
}

.payment-proof input:focus {
  border-color: rgba(110, 231, 255, 0.52);
  box-shadow: 0 0 0 4px rgba(110, 231, 255, 0.1);
}

.delivery-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.delivery-steps .is-done {
  border-color: rgba(51, 214, 159, 0.32);
  background: rgba(51, 214, 159, 0.1);
}

.result-copy {
  margin-bottom: 18px;
  color: var(--muted);
}

.result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 0.72fr 0.72fr;
  gap: 10px;
}

.status-link-action,
.pay-success-action,
.ghost-result-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font-weight: 850;
}

.pay-success-action {
  border: 0;
  background: linear-gradient(90deg, #ff2fa7, #8b5cf6);
  color: #fff;
}

.pay-success-action:disabled {
  opacity: 0.52;
}

.status-link-action {
  border: 0;
  background: var(--cta-purple);
}

.toast {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(125, 215, 255, 0.28);
  border-radius: 8px;
  background: #080d16;
  color: #fff;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

	  .hero-inner,
	  .ops-layout,
	  .proof-layout,
	  .faq-layout,
	  .stability-layout {
	    grid-template-columns: 1fr;
	  }

  .command-center,
  .ops-board {
    max-width: 720px;
  }

	  .feature-grid,
	  .plan-grid,
	  .proof-grid,
	  .credibility-grid,
	  .pain-grid,
	  .benefit-grid {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

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

@media (max-width: 700px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
    gap: 10px;
    justify-content: flex-start;
  }

  .brand {
    min-width: 0;
    max-width: calc(100vw - 188px);
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .header-action {
    position: absolute;
    top: 13px;
    right: 16px;
    flex: 0 0 auto;
    width: 78px;
    min-height: 42px;
    padding: 0 8px;
    font-size: 12px;
  }

  .header-actions {
    position: absolute;
    top: 13px;
    right: 16px;
    gap: 8px;
  }

  .header-actions .header-action {
    position: static;
    width: 78px;
    min-height: 42px;
    padding: 0 8px;
    font-size: 12px;
  }

  .header-login {
    display: inline-flex;
    min-height: 42px;
    padding: 0 11px;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: none;
    font-size: 12px;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .hero {
    min-height: auto;
    padding-top: 68px;
  }

  .hero-inner,
  .section-inner,
  .ticker-inner {
    width: min(100% - 32px, var(--container));
    max-width: calc(100vw - 32px);
  }

  .hero-inner {
    display: block;
    min-height: auto;
    padding: 54px 0 48px;
  }

	  .hero-noise {
	    background:
	      linear-gradient(180deg, rgba(5, 7, 13, 0.72), rgba(5, 7, 13, 0.88)),
	      linear-gradient(90deg, rgba(5, 7, 13, 0.76), rgba(5, 7, 13, 0.18)),
	      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 4px);
	  }

	  .hero-asset {
	    background-position: center top;
	    opacity: 0.58;
	    transform: scale(1.08);
	  }

  h1 {
    max-width: 100%;
    font-size: 36px;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .hero-copy,
  .hero-lead,
  .trust-strip {
    max-width: 100%;
    min-width: 0;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-lead span {
    display: block;
  }

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

  .trust-strip span {
    justify-content: center;
    min-width: 0;
    padding: 0 10px;
    text-align: center;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .command-center {
    width: 100%;
    max-width: 100%;
    padding: 14px;
  }

  .route-card {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 82px;
    gap: 10px;
    padding: 14px;
  }

  .route-card strong {
    font-size: 21px;
  }

  .route-card b {
    font-size: 18px;
  }

  .route-card span {
    font-size: 10px;
  }

  .panel-top strong {
    min-width: 0;
    font-size: 15px;
  }

  .route-map {
    height: 132px;
  }

  .line-one {
    width: 128px;
  }

  .line-two {
    width: 98px;
  }

  .signal-grid,
	  .feature-grid,
	  .plan-grid,
	  .proof-grid,
	  .credibility-grid,
	  .pain-grid,
	  .stability-cards,
	  .benefit-grid,
	  .ticker-inner,
	  .form-grid {
	    grid-template-columns: 1fr;
	  }

	  .pain-grid article {
	    min-height: 58px;
	  }

	  .stability-cards article,
	  .benefit-grid article {
	    min-height: auto;
	  }

	  .credibility-grid {
	    padding: 14px 0;
	  }

	  .credibility-grid article {
	    min-height: auto;
	  }

  .ticker-inner span {
    min-height: 54px;
    border-right: 1px solid var(--line);
  }

  .section {
    padding: 62px 0;
  }

  .section-heading h2,
  .proof-layout h2 {
    font-size: clamp(25px, 7vw, 30px);
    line-height: 1.2;
  }

  .row-heading {
    display: block;
  }

  .billing-toggle {
    margin-top: 12px;
  }

  .feature-card,
  .plan-card {
    min-height: auto;
  }

  .feature-card span {
    margin-bottom: 20px;
  }

  .price strong {
    font-size: 48px;
  }

  .ops-row {
    grid-template-columns: 1.1fr 0.75fr;
  }

  .ops-row i {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-action {
    width: 100%;
  }

  .order-form {
    padding: 28px 18px 20px;
  }

  .order-flow,
  .delivery-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .payment-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .mock-qr {
    width: 88px;
    height: 88px;
    margin: 0;
  }

  .mock-qr.is-ready {
    border-width: 6px;
  }

  .qr-loader i {
    width: 34px;
    height: 34px;
  }

  .qr-loader i::after {
    inset: 4px;
  }

  .qr-loader span {
    width: 50px;
  }

  .qr-loader b {
    font-size: 11px;
  }

  @keyframes qr-scan {
    0% {
      transform: translateY(-28px);
    }

    100% {
      transform: translateY(88px);
    }
  }

  .payment-meta strong {
    font-size: 24px;
  }

  .payment-meta p {
    font-size: 13px;
    line-height: 1.55;
  }

  .order-flow span,
  .delivery-steps span {
    font-size: 11px;
  }

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

@media (max-width: 700px) {
  body {
    padding-bottom: 82px;
    background:
      radial-gradient(circle at 18% 0%, rgba(110, 231, 255, 0.12), transparent 28%),
      radial-gradient(circle at 92% 16%, rgba(124, 109, 255, 0.18), transparent 32%),
      #05070d;
  }

  .site-header {
    top: 10px;
    right: 12px;
    left: 12px;
    min-height: 56px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(7, 11, 19, 0.82);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
  }

  .brand {
    gap: 9px;
    max-width: calc(100vw - 178px);
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .header-action {
    top: 8px;
    right: 10px;
    width: auto;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 7px;
    font-size: 13px;
  }

  .header-actions {
    top: 8px;
    right: 10px;
    gap: 7px;
  }

  .header-actions .header-action {
    position: static;
    width: auto;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 7px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-asset {
    background-position: 58% top;
    opacity: 0.5;
    transform: scale(1.02);
  }

  #network-canvas {
    opacity: 0.48;
  }

  .hero-noise {
    background:
      linear-gradient(180deg, rgba(5, 7, 13, 0.58), rgba(5, 7, 13, 0.92) 78%, #05070d 100%),
      linear-gradient(90deg, rgba(5, 7, 13, 0.84), rgba(5, 7, 13, 0.28)),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 4px);
  }

  .hero-inner,
  .section-inner,
  .ticker-inner {
    width: calc(100% - 28px);
    max-width: calc(100vw - 28px);
  }

  .hero-inner {
    padding: 42px 0 26px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.1em;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 34px;
    line-height: 1.08;
    text-shadow: 0 12px 32px rgba(0, 0, 0, 0.74);
  }

  .hero-lead {
    margin-bottom: 22px;
    color: rgba(238, 244, 255, 0.88);
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .primary-action,
  .ghost-action {
    min-height: 48px;
    border-radius: 8px;
    font-size: 15px;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 16px;
    padding: 0;
    overflow: visible;
  }

  .trust-strip::-webkit-scrollbar,
  .ticker-inner::-webkit-scrollbar {
    display: none;
  }

  .trust-strip span {
    min-height: 34px;
    padding: 0 12px;
    border-color: rgba(125, 215, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(246, 248, 251, 0.88);
    font-size: 12px;
  }

  .command-center {
    margin-top: 2px;
    padding: 12px;
    border-color: rgba(125, 215, 255, 0.2);
    background: rgba(8, 13, 22, 0.72);
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.34);
  }

  .panel-top {
    min-height: 28px;
    margin-bottom: 10px;
  }

  .panel-top strong {
    font-size: 13px;
  }

  .panel-top em {
    font-size: 11px;
  }

  .route-card {
    display: flex;
    min-height: 62px;
    margin-bottom: 10px;
    padding: 12px;
  }

  .route-card strong {
    font-size: 22px;
  }

  .route-card b {
    font-size: 18px;
  }

  .route-map {
    height: 86px;
    margin-bottom: 10px;
    background-size: 28px 28px;
  }

  .node {
    width: 32px;
    height: 32px;
    font-size: 10px;
  }

  .node-cn {
    top: 36px;
    left: 18px;
  }

  .node-us {
    top: 24px;
    left: 48%;
  }

  .node-res {
    right: 18px;
    bottom: 18px;
  }

  .line-one {
    display: none;
  }

  .line-two {
    display: none;
  }

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

  .signal-grid div {
    min-height: 56px;
    padding: 9px;
  }

  .signal-grid span {
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .signal-grid strong {
    margin-top: 6px;
    font-size: 19px;
  }

  .event-log {
    display: none;
  }

  .ticker-band {
    padding: 12px 0;
    border-top-color: rgba(255, 255, 255, 0.08);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    background: rgba(7, 11, 19, 0.9);
  }

  .ticker-inner {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    background: transparent;
  }

  .ticker-inner span {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 13px;
  }

  .credibility-strip {
    padding: 16px 0 4px;
    background: #05070d;
  }

  .credibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    background: transparent;
  }

  .credibility-grid article {
    min-height: 92px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
      #080d16;
  }

  .credibility-grid span {
    margin-bottom: 11px;
    font-size: 10px;
  }

  .credibility-grid strong {
    margin-bottom: 0;
    font-size: 15px;
  }

  .credibility-grid p {
    display: none;
  }

  .section {
    padding: 48px 0;
  }

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

  .section-heading h2,
  .proof-layout h2 {
    margin-bottom: 12px;
    font-size: 27px;
    line-height: 1.18;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.78;
  }

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

  .pain-grid article {
    min-height: 52px;
    padding: 12px 8px;
    font-size: 14px;
  }

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

  .feature-card {
    min-height: 156px;
    padding: 15px;
  }

  .feature-card span {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .feature-card h3,
  .plan-card h3 {
    font-size: 17px;
  }

  .feature-card p,
  .plan-card p,
  .proof-grid p,
  .faq-list p,
  .stability-cards p,
  .benefit-grid p {
    font-size: 13px;
    line-height: 1.68;
  }

  .stability-cards,
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stability-cards article,
  .benefit-grid article {
    padding: 16px;
  }

  .stability-cards strong,
  .benefit-grid strong {
    font-size: 17px;
  }

  .platform-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .platform-cloud span {
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }

  .row-heading {
    display: block;
  }

  .billing-toggle {
    width: 100%;
    margin-top: 14px;
  }

  .billing-toggle button {
    flex: 1;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .featured-plan {
    order: -1;
  }

  .plan-card {
    min-height: auto;
    padding: 18px;
  }

  .plan-topline {
    margin-bottom: 16px;
  }

  .price {
    min-height: auto;
    margin: 14px 0 16px;
  }

  .price strong {
    font-size: 46px;
  }

  .custom-price strong {
    font-size: 36px;
  }

  .plan-card ul {
    gap: 9px;
    margin: 18px 0 22px;
  }

  .plan-card li {
    font-size: 14px;
  }

  .ops-board-head {
    min-height: 54px;
    padding: 0 14px;
  }

  .ops-row {
    grid-template-columns: 1fr auto;
    min-height: 56px;
    padding: 0 14px;
    font-size: 12px;
  }

  .ops-row i {
    display: none;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .proof-grid article {
    min-height: auto;
    padding: 16px;
  }

  .faq-layout {
    gap: 20px;
  }

  .faq-list details {
    padding: 16px;
  }

  .site-footer {
    padding: 28px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .footer-inner p {
    font-size: 14px;
  }

  .footer-links,
  .legal-links {
    gap: 8px;
  }

  .footer-links a,
  .legal-links a {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .footer-action {
    width: 100%;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 50;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 10px 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background: rgba(7, 10, 18, 0.9);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(18px);
  }

  .mobile-sticky-cta a {
    min-height: 40px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(246, 248, 251, 0.86);
    padding: 0 12px;
    font-size: 13px;
    font-weight: 860;
    line-height: 40px;
  }

  .mobile-sticky-cta span,
  .mobile-sticky-cta b,
  .mobile-sticky-cta small {
    display: block;
  }

  .mobile-sticky-cta b {
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
  }

  .mobile-sticky-cta small {
    margin-top: 3px;
    color: rgba(214, 221, 232, 0.76);
    font-size: 11px;
  }

  .mobile-sticky-cta button {
    min-height: 40px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 7px;
    background: var(--cta-purple);
    color: #fff;
    padding: 0 14px;
    font-weight: 860;
  }

  .order-dialog {
    width: calc(100% - 24px);
  }

  .order-form h2,
  .order-result h2 {
    font-size: 24px;
  }

  .order-summary {
    align-items: flex-start;
    padding: 14px;
  }

  .order-summary strong {
    font-size: 22px;
  }
}

:root[data-theme="light"] .hero-lead,
:root[data-theme="light"] .event-log p {
  color: rgba(13, 23, 40, 0.78);
  text-shadow: none;
}

:root[data-theme="light"] .panel-top strong,
:root[data-theme="light"] .route-card strong,
:root[data-theme="light"] .signal-grid strong {
  color: #0d1728;
}

:root[data-theme="light"] .route-card span,
:root[data-theme="light"] .signal-grid span {
  color: #526176;
}

:root[data-theme="light"] .hero-noise {
  background:
    linear-gradient(90deg, rgba(245, 248, 252, 0.74) 0%, rgba(245, 248, 252, 0.3) 54%, rgba(245, 248, 252, 0.12) 100%),
    repeating-linear-gradient(0deg, rgba(12, 27, 48, 0.035) 0 1px, transparent 1px 4px);
}

/* Silver-white landing treatment for light mode. */
:root[data-theme="light"] .hero {
  background:
    linear-gradient(180deg, #f9fbff 0%, #eef4fa 78%, #f7faff 100%),
    #f9fbff;
}

:root[data-theme="light"] .hero-asset {
  opacity: 0.7;
  filter: saturate(0.62) contrast(0.92) brightness(1.12);
  background:
    linear-gradient(90deg, rgba(249, 251, 255, 0.96) 0%, rgba(249, 251, 255, 0.86) 46%, rgba(249, 251, 255, 0.72) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(237, 244, 251, 0.86)),
    url("./assets/hero-network-bg.png") center right / cover no-repeat;
}

:root[data-theme="light"] #network-canvas {
  opacity: 0.24;
  mix-blend-mode: multiply;
}

:root[data-theme="light"] .hero-noise {
  background:
    linear-gradient(90deg, rgba(249, 251, 255, 0.84) 0%, rgba(249, 251, 255, 0.72) 48%, rgba(249, 251, 255, 0.56) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(236, 243, 250, 0.86)),
    repeating-linear-gradient(0deg, rgba(12, 27, 48, 0.018) 0 1px, transparent 1px 5px);
}

:root[data-theme="light"] .hero h1 {
  color: #102033;
  text-shadow: none;
}

:root[data-theme="light"] .hero-lead {
  color: #314158;
  text-shadow: none;
}

:root[data-theme="light"] .hero .eyebrow {
  color: #0073b2;
  text-shadow: none;
}

:root[data-theme="light"] .hero .command-center {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(20, 39, 68, 0.12);
  box-shadow: 0 28px 90px rgba(34, 53, 82, 0.12);
  backdrop-filter: blur(18px);
}

:root[data-theme="light"] .hero .command-center::before {
  background:
    linear-gradient(135deg, rgba(0, 111, 170, 0.12), transparent 38%),
    linear-gradient(315deg, rgba(111, 77, 255, 0.1), transparent 36%);
}

:root[data-theme="light"] .hero .route-map {
  background:
    linear-gradient(90deg, rgba(20, 39, 68, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20, 39, 68, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.54);
  background-size: 32px 32px;
}

@media (max-width: 700px) {
  .brand-copy strong {
    display: block;
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* Light mode polish: keep the relay site fully readable instead of mixing dark-theme bands. */
:root[data-theme="light"] .eyebrow,
:root[data-theme="light"] .plan-topline span,
:root[data-theme="light"] .feature-card span,
:root[data-theme="light"] .credibility-grid span {
  color: #006fae;
  text-shadow: none;
}

:root[data-theme="light"] .section,
:root[data-theme="light"] .section:nth-of-type(odd),
:root[data-theme="light"] .pain-section,
:root[data-theme="light"] .platform-section,
:root[data-theme="light"] .stability-section,
:root[data-theme="light"] .platforms-section,
:root[data-theme="light"] .benefits-section,
:root[data-theme="light"] .plans-section,
:root[data-theme="light"] .ops-section,
:root[data-theme="light"] .proof-section,
:root[data-theme="light"] .faq-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 111, 170, 0.08), transparent 32%),
    radial-gradient(circle at 92% 8%, rgba(118, 87, 255, 0.08), transparent 30%),
    #f5f8fc;
}

:root[data-theme="light"] .section:nth-of-type(even),
:root[data-theme="light"] .benefits-section,
:root[data-theme="light"] .faq-section {
  background:
    linear-gradient(180deg, rgba(237, 244, 251, 0.72), rgba(255, 255, 255, 0.82)),
    #f7faff;
}

:root[data-theme="light"] .ticker-band,
:root[data-theme="light"] .credibility-strip,
:root[data-theme="light"] .site-footer,
:root[data-theme="light"] .legal-main {
  border-color: rgba(12, 27, 48, 0.1);
  background:
    linear-gradient(180deg, rgba(233, 243, 251, 0.78), rgba(255, 255, 255, 0.92)),
    #f5f8fc;
}

:root[data-theme="light"] .ticker-inner,
:root[data-theme="light"] .credibility-grid {
  background: rgba(20, 39, 68, 0.08);
}

:root[data-theme="light"] .ticker-inner span,
:root[data-theme="light"] .credibility-grid article,
:root[data-theme="light"] .pain-grid article,
:root[data-theme="light"] .feature-card,
:root[data-theme="light"] .plan-card,
:root[data-theme="light"] .ops-board,
:root[data-theme="light"] .proof-grid article,
:root[data-theme="light"] .faq-list details,
:root[data-theme="light"] .billing-toggle {
  border-color: rgba(20, 39, 68, 0.12);
  background:
    linear-gradient(135deg, rgba(0, 111, 170, 0.055), transparent 54%),
    rgba(255, 255, 255, 0.88);
  color: #0d1728;
  box-shadow: 0 18px 52px rgba(30, 48, 76, 0.08);
}

:root[data-theme="light"] .featured-plan {
  border-color: rgba(111, 77, 255, 0.28);
  background:
    linear-gradient(150deg, rgba(0, 111, 170, 0.11), rgba(111, 77, 255, 0.12) 56%, rgba(255, 255, 255, 0.92)),
    #fff;
}

:root[data-theme="light"] .enterprise-plan {
  border-color: rgba(0, 111, 170, 0.2);
}

:root[data-theme="light"] .credibility-grid strong,
:root[data-theme="light"] .stability-cards strong,
:root[data-theme="light"] .benefit-grid strong,
:root[data-theme="light"] .proof-grid strong,
:root[data-theme="light"] .faq-list summary,
:root[data-theme="light"] .price strong,
:root[data-theme="light"] .plan-card h3,
:root[data-theme="light"] .feature-card h3,
:root[data-theme="light"] .footer-inner strong,
:root[data-theme="light"] .legal-document h1,
:root[data-theme="light"] .legal-document h2 {
  color: #0d1728;
}

:root[data-theme="light"] .credibility-grid p,
:root[data-theme="light"] .stability-cards p,
:root[data-theme="light"] .benefit-grid p,
:root[data-theme="light"] .proof-grid p,
:root[data-theme="light"] .plan-card p,
:root[data-theme="light"] .plan-card li,
:root[data-theme="light"] .feature-card p,
:root[data-theme="light"] .faq-list p,
:root[data-theme="light"] .footer-inner p,
:root[data-theme="light"] .legal-document p,
:root[data-theme="light"] .legal-document li {
  color: #43536a;
}

:root[data-theme="light"] .plan-topline b {
  background: rgba(0, 111, 170, 0.1);
  color: #0a3958;
}

:root[data-theme="light"] .plan-action:not(.hot),
:root[data-theme="light"] .footer-links a,
:root[data-theme="light"] .legal-links a,
:root[data-theme="light"] .status-link-action,
:root[data-theme="light"] .ghost-result-action,
:root[data-theme="light"] .billing-toggle button:not(.is-active) {
  border-color: rgba(20, 39, 68, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: #0d1728;
}

:root[data-theme="light"] .plan-action.aqua-action {
  border: 0;
  background: linear-gradient(135deg, #08b6cf, #1e7cff);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 18px 42px rgba(8, 118, 207, 0.22);
}

:root[data-theme="light"] .billing-toggle button.is-active {
  background: #0d1728;
  color: #fff;
}

:root[data-theme="light"] .ops-board-head {
  border-bottom-color: rgba(20, 39, 68, 0.12);
}

:root[data-theme="light"] .ops-row {
  border-bottom-color: rgba(20, 39, 68, 0.1);
}

:root[data-theme="light"] .ops-row span,
:root[data-theme="light"] .ops-row b:not(.ok, .watch, .standby, .normal) {
  color: #0d1728;
}

:root[data-theme="light"] .ops-row i {
  color: #506078;
}

:root[data-theme="light"] .ok {
  color: #007a5d;
}

:root[data-theme="light"] .watch {
  color: #9a6400;
}

:root[data-theme="light"] .standby,
:root[data-theme="light"] .ops-board-head em {
  color: #006fae;
}

:root[data-theme="light"] .normal {
  color: #5d43d6;
}

:root[data-theme="light"] .ops-row b.ok,
:root[data-theme="light"] .ops-row b.watch,
:root[data-theme="light"] .ops-row b.standby,
:root[data-theme="light"] .ops-row b.normal {
  display: inline-flex;
  min-width: 92px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

:root[data-theme="light"] .ops-row b.ok {
  background: rgba(0, 122, 93, 0.1);
  box-shadow: inset 0 0 0 1px rgba(0, 122, 93, 0.18);
}

:root[data-theme="light"] .ops-row b.watch {
  background: rgba(154, 100, 0, 0.1);
  box-shadow: inset 0 0 0 1px rgba(154, 100, 0, 0.18);
}

:root[data-theme="light"] .ops-row b.standby {
  background: rgba(0, 111, 174, 0.1);
  box-shadow: inset 0 0 0 1px rgba(0, 111, 174, 0.18);
}

:root[data-theme="light"] .ops-row b.normal {
  background: rgba(93, 67, 214, 0.1);
  box-shadow: inset 0 0 0 1px rgba(93, 67, 214, 0.18);
}

:root[data-theme="light"] .route-lines path,
:root[data-theme="light"] .line {
  filter: none;
}

:root[data-theme="light"] .toast {
  border-color: rgba(0, 111, 170, 0.26);
  background: rgba(255, 255, 255, 0.96);
  color: #0d1728;
  box-shadow: 0 18px 50px rgba(30, 48, 76, 0.16);
}

/* Relay order modal polish from review doc2. */
:root[data-theme="light"] .order-dialog {
  border-color: rgba(20, 39, 68, 0.12);
  background:
    radial-gradient(circle at 14% 0%, rgba(0, 111, 174, 0.09), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(111, 77, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  color: #0d1728;
  box-shadow: 0 28px 86px rgba(30, 48, 76, 0.22);
}

:root[data-theme="light"] .order-flow span,
:root[data-theme="light"] .order-summary,
:root[data-theme="light"] .payment-card,
:root[data-theme="light"] .order-ticket,
:root[data-theme="light"] .result-grid article {
  border-color: rgba(20, 39, 68, 0.12);
  background:
    linear-gradient(135deg, rgba(0, 111, 174, 0.05), transparent 58%),
    rgba(255, 255, 255, 0.92);
  color: #0d1728;
}

:root[data-theme="light"] .order-flow .is-active,
:root[data-theme="light"] .delivery-steps .is-done,
:root[data-theme="light"] .delivery-steps .is-current {
  border-color: rgba(0, 111, 174, 0.28);
  background: rgba(0, 111, 174, 0.08);
  color: #0d1728;
}

:root[data-theme="light"] .order-summary small,
:root[data-theme="light"] .payment-meta p,
:root[data-theme="light"] .payment-meta span,
:root[data-theme="light"] .result-copy,
:root[data-theme="light"] .order-ticket span,
:root[data-theme="light"] .result-grid span {
  color: #526176;
}

.order-summary + .submit-order {
  margin-top: -4px;
}

@media (max-width: 700px) {
  :root[data-theme="light"] .mobile-sticky-cta {
    border-color: rgba(20, 39, 68, 0.12);
    background: rgba(255, 255, 255, 0.94);
    color: #0d1728;
    box-shadow: 0 -16px 45px rgba(30, 48, 76, 0.12);
  }

  :root[data-theme="light"] .mobile-sticky-cta b {
    color: #0d1728;
  }

  :root[data-theme="light"] .mobile-sticky-cta small {
    color: #526176;
  }

  :root[data-theme="light"] .mobile-sticky-cta a {
    border-color: rgba(20, 39, 68, 0.14);
    background: rgba(255, 255, 255, 0.9);
    color: #0d1728;
  }
}

/* Fresh relay responsive polish, 2026-05-23. */
.ops-layout > *,
.stability-layout > * {
  min-width: 0;
}

@media (min-width: 1041px) and (max-width: 1180px) {
  .ops-layout,
  .stability-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ops-board,
  .stability-cards {
    max-width: 760px;
  }

  .section-heading h2 {
    font-size: clamp(32px, 4.6vw, 44px);
  }
}

@media (max-width: 1180px) {
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    max-width: 760px;
  }
}

:root[data-theme="light"] .plan-action-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
