:root {
  color-scheme: dark;
  --bg: #07110b;
  --bg-2: #0b1b11;
  --panel: #122118;
  --panel-2: #17261d;
  --card: #1d2d23;
  --line: rgba(177, 238, 197, 0.16);
  --text: #f2fff5;
  --muted: #a9bdae;
  --soft: #dfffe9;
  --brand: #45d46f;
  --brand-2: #00b67a;
  --blue: #42a5ff;
  --warn: #ffd166;
  --danger: #ff5f67;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 8%, rgba(69, 212, 111, 0.2), transparent 32%),
    radial-gradient(circle at 12% 18%, rgba(66, 165, 255, 0.13), transparent 30%),
    linear-gradient(180deg, #07110b 0%, #0c160f 48%, #07110b 100%);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

button {
  font: inherit;
}

.language-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 64px;
  height: 40px;
  padding: 0 13px;
  color: #b9ffd0;
  background: linear-gradient(180deg, rgba(69, 212, 111, 0.18), rgba(69, 212, 111, 0.07));
  border: 1px solid rgba(156, 254, 182, 0.72);
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(69, 212, 111, 0.08), 0 0 22px rgba(69, 212, 111, 0.2);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.language-toggle::before {
  content: "🌐";
  font-size: 15px;
  line-height: 1;
}

.language-toggle:hover {
  color: #03140a;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(69, 212, 111, 0.14), 0 0 30px rgba(69, 212, 111, 0.42);
  transform: translateY(-2px);
}

.language-toggle:focus-visible {
  outline: 3px solid rgba(66, 165, 255, 0.72);
  outline-offset: 3px;
}

.mobile-language-toggle {
  display: none;
  width: 100%;
  height: 46px;
  border-radius: 8px;
  text-align: center;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 74px;
  padding: 0 max(clamp(18px, 5vw, 64px), env(safe-area-inset-right)) 0 max(clamp(18px, 5vw, 64px), env(safe-area-inset-left));
  background: rgba(7, 17, 11, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 820;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 22px rgba(69, 212, 111, 0.35);
}

.desktop-nav {
  display: flex;
  gap: clamp(16px, 2.5vw, 30px);
  color: var(--muted);
  font-size: 14px;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 820;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-cta,
.button.primary {
  color: #03140a;
  background: linear-gradient(135deg, #b9ffd0, var(--brand));
  box-shadow: 0 18px 46px rgba(69, 212, 111, 0.22);
}

.button.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.button.ghost.dark {
  background: rgba(7, 17, 11, 0.42);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.mobile-nav {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  z-index: 28;
  display: none;
  gap: 12px;
  max-height: calc(100dvh - 74px);
  padding: 16px max(20px, env(safe-area-inset-right)) max(22px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  overflow-y: auto;
  background: rgba(7, 17, 11, 0.96);
  border-bottom: 1px solid var(--line);
}

.mobile-nav.open {
  display: grid;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  display: grid;
  align-items: center;
  padding: 132px clamp(18px, 5vw, 64px) 70px;
  background:
    linear-gradient(90deg, rgba(156, 254, 182, 0.1) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(156, 254, 182, 0.08) 0 1px, transparent 1px),
    radial-gradient(ellipse at 50% 42%, rgba(69, 212, 111, 0.16), transparent 48%),
    linear-gradient(180deg, #020604 0%, #07110b 48%, #020604 100%);
  background-size: 84px 84px, 84px 84px, auto, auto;
  border-bottom: 1px solid rgba(177, 238, 197, 0.12);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 74px 0 0;
  pointer-events: none;
  opacity: 0.52;
  background:
    linear-gradient(110deg, transparent 7%, rgba(156, 254, 182, 0.14) 7.3%, transparent 8%),
    linear-gradient(110deg, transparent 25%, rgba(66, 165, 255, 0.12) 25.2%, transparent 26%),
    linear-gradient(110deg, transparent 72%, rgba(156, 254, 182, 0.1) 72.3%, transparent 73%);
  animation: heroFlow 10s linear infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-supra {
  margin: 0 0 12px;
  color: #9cfeb6;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.eyebrow {
  margin: 0 0 12px;
  color: #9cfeb6;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 100%;
  margin: 0 auto;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
  white-space: normal;
  text-wrap: balance;
  text-shadow: 0 0 42px rgba(156, 254, 182, 0.22);
}

html[lang="en"] .hero-copy h1 {
  max-width: 900px;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.13;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.3;
}

.lead {
  max-width: 800px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-network {
  position: relative;
  min-height: 360px;
  margin-top: 4px;
}

.network-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 184px;
  height: 128px;
  padding: 18px;
  color: #eafff0;
  background:
    linear-gradient(180deg, rgba(156, 254, 182, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(2, 6, 4, 0.8);
  border: 1px solid rgba(156, 254, 182, 0.36);
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(69, 212, 111, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%);
}

.network-core span,
.network-core em,
.network-card small,
.network-card b,
.console-head {
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.network-core strong {
  font-size: 26px;
  line-height: 1;
}

.network-core em {
  color: #03140a;
  padding: 2px 8px;
  background: var(--brand);
  border-radius: 8px;
  font-style: normal;
  letter-spacing: 0;
}

.network-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(88vw, 980px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(156, 254, 182, 0.46), rgba(66, 165, 255, 0.22), transparent);
  transform-origin: center;
}

.line-a {
  transform: translate(-50%, -50%) rotate(-15deg);
}

.line-b {
  transform: translate(-50%, -50%) rotate(15deg);
}

.line-c {
  width: min(74vw, 760px);
  transform: translate(-50%, -50%);
}

.network-card {
  position: absolute;
  width: 292px;
  min-height: 146px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(5, 18, 10, 0.72);
  border: 1px solid rgba(177, 238, 197, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.network-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
}

.network-card small {
  color: var(--brand);
}

.network-card strong {
  display: block;
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.15;
}

.network-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.network-card b {
  display: inline-flex;
  margin-top: 14px;
  color: #9cfeb6;
}

.card-energy {
  left: 0;
  top: 94px;
}

.card-risk {
  top: 0;
  right: 8%;
}

.card-freeze {
  right: 0;
  bottom: 24px;
}

.hero-console {
  width: min(880px, 100%);
  margin: -12px auto 0;
  padding: 14px;
  background: rgba(2, 6, 4, 0.7);
  border: 1px solid rgba(177, 238, 197, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.console-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
}

.console-head em {
  color: var(--brand);
  font-style: normal;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.console-grid article {
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(177, 238, 197, 0.12);
  border-radius: 8px;
}

.console-grid span,
.console-feed span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.console-grid strong {
  display: block;
  margin-top: 3px;
  color: var(--soft);
  font-size: 23px;
  line-height: 1.1;
}

.console-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.console-feed span {
  position: relative;
  padding: 7px 10px 7px 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(177, 238, 197, 0.1);
  border-radius: 8px;
}

.console-feed span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  transform: translateY(-50%);
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin: 18px auto 0;
}

.signal-row div {
  min-height: 82px;
  padding: 12px 14px;
  background:
    linear-gradient(180deg, rgba(156, 254, 182, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(4, 13, 8, 0.5);
  border: 1px solid rgba(156, 254, 182, 0.16);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.signal-row strong {
  display: block;
  color: var(--soft);
  font-size: 24px;
  line-height: 1.1;
}

.signal-row span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  min-height: 510px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(3, 15, 9, 0.72);
  border: 1px solid rgba(156, 254, 182, 0.22);
  border-radius: 8px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(156, 254, 182, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 254, 182, 0.26) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

.visual-frame::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 140%;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(156, 254, 182, 0.18), transparent);
  animation: scanSweep 5s linear infinite;
}

.visual-topline,
.visual-metrics,
.trace-feed {
  position: relative;
  z-index: 1;
}

.visual-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.visual-topline em {
  color: #03140a;
  padding: 2px 8px;
  background: var(--brand);
  border-radius: 8px;
  font-style: normal;
  letter-spacing: 0;
}

.scan-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 286px;
  margin-top: 22px;
}

.scan-ring {
  position: absolute;
  border: 1px solid rgba(156, 254, 182, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(69, 212, 111, 0.13);
}

.ring-one {
  width: 92%;
  aspect-ratio: 1;
  animation: rotateRing 22s linear infinite;
}

.ring-two {
  width: 68%;
  aspect-ratio: 1;
  border-style: dashed;
  border-color: rgba(66, 165, 255, 0.34);
  animation: rotateRing 16s linear infinite reverse;
}

.ring-three {
  width: 42%;
  aspect-ratio: 1;
  border-color: rgba(255, 209, 102, 0.38);
}

.scan-axis {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(156, 254, 182, 0.48), transparent);
}

.axis-x {
  width: 90%;
  height: 1px;
}

.axis-y {
  width: 1px;
  height: 90%;
  background: linear-gradient(180deg, transparent, rgba(66, 165, 255, 0.48), transparent);
}

.scan-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  color: #03140a;
  background: linear-gradient(145deg, #d8ffe4, #45d46f 58%, #00b67a);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  box-shadow: 0 0 48px rgba(69, 212, 111, 0.42);
}

.scan-core span {
  font-size: 44px;
  font-weight: 950;
  line-height: 1;
}

.scan-core small {
  margin-top: -18px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.node {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #9cfeb6;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(156, 254, 182, 0.82);
}

.node-a {
  top: 18%;
  left: 24%;
}

.node-b {
  top: 28%;
  right: 18%;
  background: var(--blue);
}

.node-c {
  right: 25%;
  bottom: 16%;
  background: var(--warn);
}

.node-d {
  bottom: 30%;
  left: 16%;
}

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

.visual-metrics article {
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(177, 238, 197, 0.16);
  border-radius: 8px;
}

.visual-metrics span,
.trace-feed span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.visual-metrics strong {
  display: block;
  margin-top: 4px;
  color: var(--soft);
  font-size: 22px;
  line-height: 1.1;
}

.trace-feed {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.trace-feed span {
  position: relative;
  padding: 8px 10px 8px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(177, 238, 197, 0.12);
  border-radius: 8px;
}

.trace-feed span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  transform: translateY(-50%);
}

@keyframes scanSweep {
  from {
    transform: translateY(0) rotate(8deg);
  }

  to {
    transform: translateY(720%) rotate(8deg);
  }
}

@keyframes heroFlow {
  from {
    transform: translateX(-6%);
  }

  to {
    transform: translateX(6%);
  }
}

@keyframes rotateRing {
  to {
    transform: rotate(360deg);
  }
}

.freeze-tracker {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 104px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(156, 254, 182, 0.08) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(156, 254, 182, 0.06) 0 1px, transparent 1px),
    linear-gradient(180deg, #020604 0%, #07110b 100%);
  background-size: 84px 84px, 84px 84px, auto;
  border-top: 1px solid var(--line);
}

.tracker-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    rgba(2, 6, 4, 0.74);
  border: 1px solid rgba(177, 238, 197, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

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

.tracker-head > div {
  max-width: 760px;
}

.tracker-head p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.tracker-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.chain-switch,
.range-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  background: rgba(2, 6, 4, 0.56);
  border: 1px solid rgba(177, 238, 197, 0.14);
  border-radius: 8px;
}

.chain-switch span,
.range-switch span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--muted);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.chain-switch span.active,
.range-switch span.active {
  color: #03140a;
  background: var(--brand);
}

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

.tracker-stats article {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(156, 254, 182, 0.07), rgba(255, 255, 255, 0.028)),
    rgba(5, 18, 10, 0.68);
  border: 1px solid rgba(177, 238, 197, 0.15);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tracker-stats span {
  color: var(--muted);
  font-size: 13px;
}

.tracker-stats strong {
  display: block;
  margin-top: 6px;
  color: var(--soft);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.tracker-stats em {
  display: block;
  margin-top: 8px;
  color: #9cfeb6;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

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

.tracker-note {
  margin: 16px 0 0;
  font-size: 13px;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(156, 254, 182, 0.07) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(156, 254, 182, 0.052) 0 1px, transparent 1px),
    linear-gradient(180deg, #020604 0%, #07110b 100%);
  background-size: 84px 84px, 84px 84px, auto;
  border-top: 1px solid rgba(177, 238, 197, 0.12);
}

.section-heading {
  width: min(830px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:last-child {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.compact {
  max-width: 760px;
}

.business-head p,
.service-grid p,
.resource-shell p {
  color: var(--muted);
}

.business-section {
  background: linear-gradient(180deg, rgba(69, 212, 111, 0.07), rgba(66, 165, 255, 0.04));
}

.business-shell,
.dashboard {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(14px, 2vw, 24px);
  background: rgba(7, 17, 11, 0.58);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.business-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.business-head > div {
  max-width: 780px;
}

.business-head p {
  margin: 14px 0 0;
  font-size: 18px;
}

.business-head > span {
  display: inline-flex;
  min-width: max-content;
  padding: 8px 12px;
  color: #9cfeb6;
  background: rgba(69, 212, 111, 0.1);
  border: 1px solid rgba(69, 212, 111, 0.18);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

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

.business-grid article,
.metrics article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.business-grid span,
.metrics span {
  color: var(--muted);
  font-size: 14px;
}

.business-grid strong,
.metrics strong {
  display: block;
  margin-top: 6px;
  color: var(--soft);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.business-grid em,
.metrics em {
  display: block;
  margin-top: 8px;
  color: #9cfeb6;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.energy-panel {
  margin-top: 16px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(4, 12, 7, 0.42);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.energy-panel-head strong,
.resource-shell h2 {
  display: block;
  font-size: 24px;
  line-height: 1.2;
}

.energy-panel-head span,
.energy-panel-head em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.daily-bars {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 180px;
  padding: 16px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    rgba(255, 255, 255, 0.025);
  background-size: 100% 25%;
  border-radius: 8px;
}

.daily-bars span {
  flex: 1;
  min-width: 4px;
  background: linear-gradient(180deg, #9cfeb6, #00b67a);
  border-radius: 999px 999px 2px 2px;
  opacity: 0.9;
}

.resources-section {
  background:
    linear-gradient(90deg, rgba(156, 254, 182, 0.07) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(156, 254, 182, 0.052) 0 1px, transparent 1px),
    linear-gradient(180deg, #07110b 0%, #020604 100%);
  background-size: 84px 84px, 84px 84px, auto;
}

.choice-form {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.resource-type input {
  accent-color: var(--brand);
}

.choice-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(2, 6, 4, 0.58);
  border: 1px solid rgba(177, 238, 197, 0.15);
  border-radius: 8px;
  outline: none;
  font-size: 16px;
}

.choice-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: #9cfeb6;
  font-size: 13px;
  font-weight: 800;
}

.enterprise-section {
  background:
    linear-gradient(90deg, rgba(156, 254, 182, 0.07) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(156, 254, 182, 0.052) 0 1px, transparent 1px),
    linear-gradient(180deg, #020604 0%, #07110b 100%);
  background-size: 84px 84px, 84px 84px, auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.service-grid article {
  min-height: 220px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    rgba(5, 18, 10, 0.68);
  border: 1px solid rgba(177, 238, 197, 0.15);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--brand);
  font-weight: 950;
}

.enterprise-cta {
  display: flex;
  width: max-content;
  margin: 24px auto 0;
}

.resource-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    rgba(5, 18, 10, 0.68);
  border: 1px solid rgba(177, 238, 197, 0.15);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.resource-type {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.resource-type label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(2, 6, 4, 0.54);
  border: 1px solid rgba(177, 238, 197, 0.14);
  border-radius: 8px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--muted);
  background: #050b07;
  font-size: 14px;
}

@media (max-width: 1060px) {
  .desktop-nav,
  .site-header > .language-toggle,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-language-toggle {
    display: block;
  }

  .tracker-stats,
  .business-grid,
  .service-grid,
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-copy {
    max-width: 860px;
  }

  .hero-network {
    display: grid;
    gap: 12px;
    min-height: auto;
  }

  .network-core,
  .network-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: auto;
    transform: none;
  }

  .network-core {
    height: auto;
    min-height: 104px;
  }

  .network-line {
    display: none;
  }

  .hero-visual {
    max-width: 620px;
  }

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

  .resource-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 68px;
  }

  .mobile-nav {
    top: 68px;
  }

  .hero {
    min-height: auto;
    padding-top: 106px;
    padding-bottom: 54px;
  }

  .brand span {
    font-size: 15px;
  }

  .hero::after {
    inset: 68px 0 0;
  }

  h1 {
    font-size: clamp(34px, 9vw, 44px);
  }

  html[lang="en"] .hero-copy h1 {
    max-width: 620px;
    font-size: clamp(32px, 8.6vw, 42px);
    line-height: 1.12;
  }

  .hero-grid,
  .signal-row,
  .tracker-stats,
  .business-grid,
  .service-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

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

  .signal-row div {
    min-height: 78px;
  }

  .hero-supra {
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .network-card {
    padding: 15px;
  }

  .network-card span,
  .tracker-head p,
  .section-heading p,
  .resource-shell p,
  .service-grid p {
    overflow-wrap: anywhere;
  }

  .console-grid,
  .console-feed {
    grid-template-columns: 1fr;
  }

  .visual-frame {
    min-height: auto;
    padding: 14px;
  }

  .scan-stage {
    height: 238px;
  }

  .visual-metrics {
    grid-template-columns: 1fr;
  }

  .tracker-head {
    flex-direction: column;
  }

  .tracker-head .button {
    width: 100%;
  }

  .chain-switch,
  .range-switch {
    width: 100%;
  }

  .business-head,
  .energy-panel-head {
    flex-direction: column;
  }

  .daily-bars {
    gap: 3px;
    height: 140px;
    padding: 12px;
  }

  .enterprise-cta {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 10px;
    padding-right: max(14px, env(safe-area-inset-right));
    padding-left: max(14px, env(safe-area-inset-left));
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .hero,
  .freeze-tracker,
  .section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 10vw, 40px);
  }

  html[lang="en"] .hero-copy h1 {
    font-size: clamp(29px, 9vw, 36px);
  }

  .lead,
  .tracker-head p:last-child,
  .section-heading p:last-child {
    font-size: 16px;
  }

  .tracker-shell,
  .resource-shell,
  .service-grid article {
    padding: 16px;
  }

  .chain-switch span,
  .range-switch span {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
