:root {
  color-scheme: dark;
  --bg: #05070a;
  --surface: #0a1116;
  --surface-2: #101a21;
  --surface-3: #142029;
  --text: #f5f7f8;
  --muted: #9aa7af;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #29e4ce;
  --lime: #b8f05a;
  --blue: #6aa6ff;
  --amber: #f0b44f;
  --paper: #f3f6f5;
  --ink: #0c1419;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 82px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a,
button {
  font: inherit;
}

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

button {
  cursor: pointer;
}

#network-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 78% 12%, rgba(41, 228, 206, 0.18), transparent 32%),
    radial-gradient(circle at 9% 86%, rgba(240, 180, 79, 0.12), transparent 28%),
    #05070a;
}

.page-shell {
  overflow: visible;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  min-height: 88px;
  padding: 12px clamp(18px, 4.5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 10, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  display: block;
  width: 170px;
  height: 50px;
  object-fit: contain;
  background: transparent;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--muted);
  font-size: clamp(1.02rem, 0.9rem + 0.28vw, 1.1rem);
}

.product-nav {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  max-width: 1080px;
  margin-inline: auto;
  font-size: clamp(1.08rem, 0.95rem + 0.32vw, 1.18rem);
  font-weight: 800;
  line-height: 1.2;
}

.product-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 0;
  white-space: nowrap;
  isolation: isolate;
}

.nav-links a {
  transition: color 180ms ease, text-shadow 180ms ease;
}

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

.product-nav a::before,
.product-nav a::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-nav a::before {
  inset-block: -5px;
  border: 1px solid rgba(70, 215, 255, 0.18);
  background:
    radial-gradient(circle at 25% 50%, rgba(70, 215, 255, 0.18), transparent 58%),
    radial-gradient(circle at 80% 50%, rgba(164, 255, 123, 0.13), transparent 55%);
  filter: blur(0.2px);
  transform: scaleX(0.82);
  z-index: -1;
}

.product-nav a::after {
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #46d7ff 22%, #a4ff7b 52%, #46d7ff 78%, transparent);
  box-shadow: 0 0 14px rgba(70, 215, 255, 0.55);
  transform: scaleX(0);
  transform-origin: center;
}

.product-nav a:hover::after {
  opacity: 0.55;
  transform: scaleX(0.72);
}

.product-nav a.is-active {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(70, 215, 255, 0.55);
}

.product-nav a.is-active::before {
  opacity: 1;
  animation: navActiveGlow 2.4s ease-in-out infinite;
}

.product-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
  animation: navActiveLine 1.9s linear infinite;
}

@keyframes navActiveGlow {
  0%,
  100% {
    transform: scaleX(0.9);
    border-color: rgba(70, 215, 255, 0.16);
  }
  50% {
    transform: scaleX(1);
    border-color: rgba(164, 255, 123, 0.28);
  }
}

@keyframes navActiveLine {
  0% {
    filter: hue-rotate(0deg);
    box-shadow: 0 0 10px rgba(70, 215, 255, 0.45);
  }
  50% {
    filter: hue-rotate(32deg);
    box-shadow: 0 0 18px rgba(164, 255, 123, 0.58);
  }
  100% {
    filter: hue-rotate(0deg);
    box-shadow: 0 0 10px rgba(70, 215, 255, 0.45);
  }
}

.topbar-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  color: var(--cyan);
  font-weight: 900;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
}

.topbar-cta,
.button.primary {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #06110f;
  box-shadow: 0 18px 42px rgba(41, 228, 206, 0.18);
}

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

.button.dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
  box-shadow: none;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  padding: 112px clamp(20px, 5vw, 78px) 42px;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.98), rgba(5, 7, 10, 0.72) 58%, rgba(5, 7, 10, 0.36)),
    linear-gradient(0deg, rgba(5, 7, 10, 0.76), rgba(5, 7, 10, 0.04));
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-title h2,
.contact-section h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.05rem, 6vw, 5.8rem);
  line-height: 1.02;
}

.hero-copy > p:not(.section-kicker) {
  max-width: 680px;
  margin: 28px 0 0;
  color: #d8e0e3;
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
  line-height: 1.88;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(680px, 100%);
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-metrics div {
  min-height: 82px;
  padding: 20px 22px 18px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  color: var(--lime);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.product-console {
  position: relative;
  width: min(720px, 100%);
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 14, 19, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.product-console::before {
  content: "";
  position: absolute;
  inset: -22px 44px auto auto;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.console-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.console-header div {
  display: flex;
  gap: 7px;
}

.console-header i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.78;
}

.console-grid {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.console-main,
.console-side,
.pipeline {
  background: rgba(9, 16, 22, 0.92);
}

.console-main {
  min-height: 340px;
  padding: 22px;
}

.chart-head,
.order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.chart-head span {
  color: #e6eeee;
  font-weight: 900;
}

.chart-head b {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(184, 240, 90, 0.12);
  color: var(--lime);
  font-size: 0.75rem;
}

.market-chart {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 12px;
  height: 170px;
  margin: 24px 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.market-chart span {
  display: block;
  min-height: 42px;
  border: 1px solid rgba(41, 228, 206, 0.34);
  background: linear-gradient(180deg, rgba(41, 228, 206, 0.62), rgba(41, 228, 206, 0.08));
}

.market-chart span:nth-child(1) { height: 48%; }
.market-chart span:nth-child(2) { height: 74%; }
.market-chart span:nth-child(3) { height: 58%; }
.market-chart span:nth-child(4) { height: 86%; }
.market-chart span:nth-child(5) { height: 62%; }
.market-chart span:nth-child(6) { height: 92%; }
.market-chart span:nth-child(7) { height: 68%; }
.market-chart span:nth-child(8) { height: 80%; }

.order-line {
  min-height: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.order-line em {
  color: var(--muted);
  font-style: normal;
}

.order-line strong {
  color: #ffffff;
}

.order-line small {
  color: var(--lime);
  font-weight: 800;
}

.console-side {
  display: grid;
  gap: 1px;
}

.console-side div {
  display: grid;
  align-content: center;
  gap: 9px;
  min-height: 113px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.console-side span,
.pipeline span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.console-side strong {
  color: var(--blue);
  font-size: 1.1rem;
}

.pipeline {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 64px;
  padding: 0 22px;
}

.pipeline b {
  height: 1px;
  background: linear-gradient(90deg, rgba(41, 228, 206, 0.1), rgba(41, 228, 206, 0.72));
}

.home-banner {
  position: relative;
  width: 100%;
  min-height: 92vh;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.84), rgba(5, 7, 10, 0.98)),
    #05070a;
}

.home-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.88), rgba(5, 7, 10, 0.48) 46%, rgba(5, 7, 10, 0.14)),
    linear-gradient(180deg, rgba(5, 7, 10, 0.32), rgba(5, 7, 10, 0.82));
}

.banner-lead {
  position: absolute;
  top: 128px;
  left: clamp(20px, 5vw, 78px);
  z-index: 2;
  display: grid;
  width: min(780px, calc(100% - 40px));
  gap: 18px;
  color: #ffffff;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.banner-lead h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.05rem, 6vw, 6rem);
  line-height: 1.02;
  font-weight: 900;
}

.banner-lead > p:not(.section-kicker) {
  max-width: 650px;
  margin: 0;
  color: #d8e0e3;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.84;
}

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

.banner-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  width: min(650px, 100%);
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
}

.banner-metrics span {
  flex: 1 1 160px;
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px 16px;
  background: rgba(7, 13, 17, 0.7);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-shadow: none;
}

.banner-metrics strong {
  display: block;
  color: var(--lime);
  font-size: 1.55rem;
  line-height: 1;
}

.banner-gallery {
  display: flex;
  width: 500%;
  min-height: 92vh;
  animation: homeBannerSlide 30s ease-in-out infinite;
}

.home-banner:hover .banner-gallery {
  animation-play-state: paused;
}

.banner-card {
  position: relative;
  flex: 0 0 20%;
  min-height: 92vh;
  overflow: hidden;
  border: 0;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.banner-card.is-wide {
  grid-row: auto;
}

.banner-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(5, 7, 10, 0.76));
}

.banner-card span {
  position: absolute;
  left: clamp(20px, 5vw, 78px);
  bottom: 52px;
  z-index: 1;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  opacity: 0.78;
  text-transform: uppercase;
}

.banner-card:hover img {
  filter: saturate(1.1) contrast(1.06);
  transform: scale(1.055);
}

@keyframes homeBannerSlide {
  0%,
  14% {
    transform: translateX(0);
  }
  20%,
  34% {
    transform: translateX(-20%);
  }
  40%,
  54% {
    transform: translateX(-40%);
  }
  60%,
  74% {
    transform: translateX(-60%);
  }
  80%,
  94% {
    transform: translateX(-80%);
  }
  100% {
    transform: translateX(0);
  }
}

.suite-section,
.category-section,
.solutions-section,
.products-section,
.delivery-section,
.contact-section {
  padding: 108px clamp(20px, 5vw, 78px);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(26px, 5vw, 78px);
  align-items: end;
  margin-bottom: 42px;
}

.section-title.wide {
  grid-template-columns: 1fr;
  max-width: 880px;
}

.section-title h2 {
  font-size: clamp(2rem, 4.8vw, 4.7rem);
  line-height: 1.08;
}

.section-title p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.suite-section {
  background: rgba(5, 7, 10, 0.88);
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.suite-grid article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--surface);
}

.suite-grid span,
.delivery-track span {
  color: var(--cyan);
  font-weight: 900;
}

.suite-grid h3,
.delivery-track h3 {
  margin: auto 0 14px;
  font-size: 1.38rem;
}

.suite-grid p,
.delivery-track p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.category-section {
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.95), rgba(10, 17, 22, 0.98)),
    rgba(5, 7, 10, 0.95);
}

.category-stack {
  display: grid;
  gap: 18px;
}

.category-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(420px, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.category-lead,
.category-detail > div {
  background: rgba(10, 17, 22, 0.88);
}

.category-lead {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 30px;
}

.category-lead span {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-lead h3 {
  margin: auto 0 18px;
  font-size: clamp(1.8rem, 3.2vw, 3.35rem);
  line-height: 1.05;
}

.category-lead p,
.category-detail p,
.category-detail li {
  color: var(--muted);
  line-height: 1.76;
}

.category-lead p,
.category-detail p {
  margin: 0;
}

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

.category-detail > div {
  min-height: 360px;
  padding: 28px;
}

.category-detail strong {
  display: block;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 1.02rem;
}

.category-detail ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.category-detail li::marker {
  color: var(--lime);
}

.solutions-section {
  background: #eef3f1;
  color: var(--ink);
}

.solutions-section .section-kicker,
.products-section .section-kicker {
  color: #0a8f81;
}

.solutions-section .section-title p:not(.section-kicker),
.products-section .section-title p:not(.section-kicker) {
  color: #53626b;
}

.solution-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
}

.solution-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.solution-tab {
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #c9d5d5;
  border-radius: 6px;
  background: #ffffff;
  color: #34434a;
  font-weight: 900;
  text-align: left;
}

.solution-tab.active {
  border-color: #07110f;
  background: #07110f;
  color: #ffffff;
}

.solution-panel {
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid #ccd8d8;
  background: #ccd8d8;
}

.solution-copy,
.solution-stack {
  padding: 30px;
  background: #ffffff;
}

.solution-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
}

.solution-copy p {
  margin: 0;
  color: #53626b;
  line-height: 1.82;
}

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

.solution-stack span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #dce5e5;
  border-radius: 6px;
  color: #122029;
  font-weight: 800;
}

.products-section {
  background: var(--paper);
  color: var(--ink);
}

.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.product-filter {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #cbd6d7;
  border-radius: 6px;
  background: #ffffff;
  color: #34434a;
  font-weight: 900;
}

.product-filter.active {
  border-color: #07110f;
  background: #07110f;
  color: #ffffff;
}

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

.product-row {
  display: grid;
  grid-template-columns: 76px minmax(180px, 0.55fr) minmax(260px, 1fr) minmax(220px, 0.72fr);
  gap: 1px;
  border: 1px solid #d9e2e2;
  background: #d9e2e2;
}

.product-row[hidden] {
  display: none;
}

.product-row > div {
  min-height: 132px;
  padding: 18px;
  background: #ffffff;
}

.product-index {
  color: #0a8f81;
  font-size: 1.16rem;
  font-weight: 900;
}

.product-name h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.product-name span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e8f2ef;
  color: #0a695f;
  font-size: 0.76rem;
  font-weight: 900;
}

.product-row p {
  margin: 0;
  color: #50606a;
  line-height: 1.72;
}

.product-row strong {
  display: block;
  margin-bottom: 8px;
  color: #111a20;
}

.delivery-section {
  background: rgba(5, 7, 10, 0.92);
}

.delivery-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.delivery-track article {
  min-height: 260px;
  padding: 28px;
  background: var(--surface-2);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: end;
  background: var(--amber);
  color: #11160e;
}

.contact-section .section-kicker {
  color: #234138;
}

.contact-section h2 {
  max-width: 880px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 1.06;
}

.category-hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: 122px clamp(20px, 5vw, 78px) 64px;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.96), rgba(5, 7, 10, 0.74) 58%, rgba(5, 7, 10, 0.4)),
    linear-gradient(0deg, rgba(5, 7, 10, 0.78), rgba(5, 7, 10, 0.08));
}

.category-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 7.2vw, 7.2rem);
  line-height: 0.98;
  font-weight: 900;
}

.category-hero p:not(.section-kicker) {
  max-width: 680px;
  margin: 26px 0 0;
  color: #d8e0e3;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.86;
}

.category-visual {
  justify-self: end;
  width: min(560px, 100%);
  min-height: 430px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(8, 14, 19, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.visual-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  color: #ffffff;
  font-weight: 900;
}

.visual-head b {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(184, 240, 90, 0.12);
  color: var(--lime);
  font-size: 0.75rem;
}

.visual-chart,
.growth-funnel,
.data-stack,
.asset-orbit {
  margin: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.visual-chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 12px;
  height: 210px;
  padding-top: 18px;
}

.visual-chart i {
  display: block;
  min-height: 44px;
  border: 1px solid rgba(41, 228, 206, 0.34);
  background: linear-gradient(180deg, rgba(41, 228, 206, 0.62), rgba(41, 228, 206, 0.08));
}

.visual-chart i:nth-child(1) { height: 44%; }
.visual-chart i:nth-child(2) { height: 72%; }
.visual-chart i:nth-child(3) { height: 56%; }
.visual-chart i:nth-child(4) { height: 88%; }
.visual-chart i:nth-child(5) { height: 66%; }
.visual-chart i:nth-child(6) { height: 94%; }
.visual-chart i:nth-child(7) { height: 76%; }

.asset-orbit {
  position: relative;
  height: 220px;
}

.asset-orbit::before,
.asset-orbit::after {
  content: "";
  position: absolute;
  inset: 32px 72px;
  border: 1px solid rgba(41, 228, 206, 0.26);
  border-radius: 50%;
}

.asset-orbit::after {
  inset: 58px 118px;
  border-color: rgba(184, 240, 90, 0.28);
}

.asset-orbit i {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(41, 228, 206, 0.62);
}

.asset-orbit i:nth-child(1) { top: 42px; left: 38%; }
.asset-orbit i:nth-child(2) { top: 112px; left: 63%; }
.asset-orbit i:nth-child(3) { top: 156px; left: 28%; }

.growth-funnel {
  display: grid;
  gap: 12px;
  height: 220px;
  align-content: center;
}

.growth-funnel i {
  display: block;
  height: 32px;
  margin-inline: auto;
  border: 1px solid rgba(240, 180, 79, 0.42);
  background: linear-gradient(90deg, rgba(240, 180, 79, 0.62), rgba(41, 228, 206, 0.1));
}

.growth-funnel i:nth-child(1) { width: 92%; }
.growth-funnel i:nth-child(2) { width: 72%; }
.growth-funnel i:nth-child(3) { width: 52%; }
.growth-funnel i:nth-child(4) { width: 34%; }

.data-stack {
  display: grid;
  gap: 12px;
  height: 220px;
  align-content: center;
}

.data-stack i {
  display: block;
  height: 28px;
  border: 1px solid rgba(106, 166, 255, 0.42);
  background: linear-gradient(90deg, rgba(106, 166, 255, 0.54), rgba(41, 228, 206, 0.12));
}

.data-stack i:nth-child(1) { width: 86%; }
.data-stack i:nth-child(2) { width: 66%; }
.data-stack i:nth-child(3) { width: 78%; }
.data-stack i:nth-child(4) { width: 54%; }
.data-stack i:nth-child(5) { width: 92%; }

.visual-rows {
  display: grid;
  gap: 10px;
}

.visual-rows span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-weight: 800;
}

.category-page-section {
  padding: 100px clamp(20px, 5vw, 78px);
  background: rgba(5, 7, 10, 0.92);
}

.category-page-section.light {
  background: #eef3f1;
  color: var(--ink);
}

.category-page-section.light .section-kicker {
  color: #0a8f81;
}

.category-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.13);
}

.category-page-grid article {
  min-height: 310px;
  padding: 30px;
  background: var(--surface);
}

.category-page-grid span,
.process-list span {
  color: var(--cyan);
  font-weight: 900;
}

.category-page-grid h2 {
  margin: 70px 0 18px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.category-page-grid p,
.capability-grid p,
.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.detail-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #d4dfdf;
  background: #d4dfdf;
}

.detail-table article {
  min-height: 260px;
  padding: 28px;
  background: #ffffff;
}

.detail-table h3,
.capability-grid h3,
.process-list h3 {
  margin: 0 0 14px;
  font-size: 1.28rem;
}

.detail-table p {
  margin: 0 0 20px;
  color: #50606a;
  line-height: 1.76;
}

.detail-table strong {
  color: #111a20;
  line-height: 1.6;
}

.capability-grid,
.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.13);
}

.capability-grid article,
.process-list article {
  min-height: 220px;
  padding: 28px;
  background: var(--surface-2);
}

.process-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-color: #d4dfdf;
  background: #d4dfdf;
}

.process-list article {
  background: #ffffff;
}

.process-list h3 {
  margin-top: 54px;
  color: #111a20;
}

.process-list p {
  color: #50606a;
}

.product-detail-hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.58fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
  padding: 122px clamp(20px, 5vw, 78px) 64px;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.98), rgba(5, 7, 10, 0.74) 58%, rgba(5, 7, 10, 0.38)),
    linear-gradient(0deg, rgba(5, 7, 10, 0.78), rgba(5, 7, 10, 0.08));
}

.product-detail-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 1.02;
  font-weight: 900;
}

.product-detail-hero p:not(.section-kicker) {
  max-width: 720px;
  margin: 26px 0 0;
  color: #d8e0e3;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.84;
}

.product-hero-copy {
  display: grid;
  align-content: start;
}

.hero-tag-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tag-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(70, 215, 255, 0.18);
  background: rgba(11, 18, 24, 0.74);
  color: #eff6f7;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.hero-fact-grid article {
  min-height: 144px;
  padding: 22px 22px 20px;
  background: rgba(8, 14, 19, 0.82);
}

.hero-fact-grid strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-fact-grid span {
  display: block;
  margin-top: 10px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-fact-grid p {
  margin: 12px 0 0;
  color: #a9b8bf;
  font-size: 0.92rem;
  line-height: 1.7;
}

.product-detail-panel {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(8, 14, 19, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.product-panel-media {
  margin: 18px 0 20px;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.product-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-detail-panel span {
  width: fit-content;
  margin-bottom: auto;
  padding: 7px 10px;
  border: 1px solid rgba(41, 228, 206, 0.3);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
}

.product-detail-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.product-detail-panel p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.75;
}

.panel-detail-list {
  display: grid;
  gap: 14px;
  margin-top: 4px;
}

.panel-detail-list article {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-detail-list strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  line-height: 1.4;
}

.panel-detail-list p {
  margin: 0;
  color: #9eacb4;
  font-size: 0.95rem;
  line-height: 1.72;
}

.product-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr) minmax(0, 0.75fr);
  gap: 18px;
}

.product-preview-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid #d7e2e3;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(17, 26, 32, 0.08);
}

.product-preview-card.is-featured {
  grid-row: span 2;
  min-height: 540px;
}

.product-preview-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
}

.product-detail-section {
  padding: 100px clamp(20px, 5vw, 78px);
  background: rgba(5, 7, 10, 0.92);
}

.product-detail-section.light {
  background: #eef3f1;
  color: var(--ink);
}

.product-detail-section.light .section-kicker {
  color: #0a8f81;
}

.product-two-col,
.product-module-grid,
.product-workflow {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.13);
}

.product-two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-two-col article,
.product-module-grid article,
.product-workflow article {
  min-height: 230px;
  padding: 28px;
  background: var(--surface-2);
}

.product-two-col span,
.product-workflow span {
  color: var(--cyan);
  font-weight: 900;
}

.product-two-col h2 {
  margin: 68px 0 18px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.product-two-col p,
.product-module-grid p,
.product-workflow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.product-module-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-color: #d4dfdf;
  background: #d4dfdf;
}

.product-module-grid article {
  background: #ffffff;
}

.product-module-grid h3 {
  margin: 0 0 16px;
  color: #111a20;
  font-size: 1.22rem;
}

.product-module-grid p {
  color: #50606a;
}

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

.product-workflow p {
  margin-top: 54px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #d4dfdf;
  background: #d4dfdf;
}

.metric-strip span {
  min-height: 112px;
  display: flex;
  align-items: center;
  padding: 24px;
  background: #ffffff;
  color: #111a20;
  font-weight: 900;
}

.site-footer {
  position: relative;
  padding: 78px clamp(20px, 5vw, 78px) 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.98), rgba(7, 13, 17, 1)),
    #05070a;
  color: var(--text);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(41, 228, 206, 0.8), transparent);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(520px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.footer-brand p {
  max-width: 440px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.footer-badges span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.footer-column {
  min-height: 256px;
  padding: 22px;
  background: rgba(12, 20, 27, 0.86);
}

.footer-column h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-column a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  line-height: 1.45;
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 44px;
  padding: 24px;
  border: 1px solid rgba(41, 228, 206, 0.22);
  background: linear-gradient(90deg, rgba(41, 228, 206, 0.12), rgba(184, 240, 90, 0.06));
}

.footer-cta span {
  display: block;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-cta strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.35;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #71808a;
  font-size: 0.86rem;
}

.telegram-float {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 30;
  display: grid;
  gap: 8px;
  width: 188px;
  padding: 8px;
  border: 1px solid rgba(41, 228, 206, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(8, 20, 28, 0.9), rgba(3, 8, 13, 0.78)),
    rgba(4, 10, 15, 0.82);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34), 0 0 34px rgba(41, 228, 206, 0.1);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transform: translateY(-50%);
  animation: telegramFloatIn 720ms ease-out both, telegramDrift 4.6s ease-in-out infinite 720ms;
}

.telegram-float::before {
  content: "";
  position: absolute;
  inset: -45% -70%;
  background: linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.16) 50%, transparent 64%);
  transform: translateX(-48%);
  animation: telegramSweep 4.8s ease-in-out infinite;
  pointer-events: none;
}

.telegram-float a {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-areas:
    "icon label"
    "icon title";
  column-gap: 9px;
  align-items: center;
  min-height: 56px;
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(41, 228, 206, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(41, 228, 206, 0.16), rgba(6, 14, 20, 0.88)),
    rgba(5, 11, 16, 0.92);
  color: #ffffff;
  animation: telegramPulse 2.8s ease-in-out infinite;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.telegram-float a:nth-child(2) {
  animation-delay: 260ms;
}

.telegram-float a:nth-child(3) {
  animation-delay: 520ms;
}

.telegram-float a:hover {
  transform: translateX(-6px);
  border-color: rgba(41, 228, 206, 0.72);
  background:
    linear-gradient(90deg, rgba(41, 228, 206, 0.3), rgba(7, 18, 25, 0.98)),
    rgba(7, 18, 25, 0.98);
  box-shadow: 0 18px 48px rgba(41, 228, 206, 0.16);
}

.telegram-float i {
  grid-area: icon;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cyan);
  color: #06110f;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
}

.telegram-float span {
  grid-area: label;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.telegram-float strong {
  grid-area: title;
  font-size: 0.9rem;
  line-height: 1.18;
  white-space: nowrap;
}

@keyframes telegramFloatIn {
  from {
    opacity: 0;
    transform: translate(28px, -48%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

@keyframes telegramDrift {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 6px));
  }
}

@keyframes telegramSweep {
  0%,
  42% {
    transform: translateX(-48%);
  }
  72%,
  100% {
    transform: translateX(48%);
  }
}

@keyframes telegramPulse {
  0%,
  100% {
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  }
  50% {
    box-shadow: 0 14px 42px rgba(41, 228, 206, 0.2);
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

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

  .product-console {
    justify-self: start;
  }

  .category-visual {
    justify-self: start;
  }

  .suite-grid,
  .delivery-track,
  .detail-table,
  .capability-grid,
  .product-module-grid,
  .product-workflow,
  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card,
  .category-detail {
    grid-template-columns: 1fr;
  }

  .banner-lead {
    grid-template-columns: 1fr;
  }

  .banner-gallery {
    width: 500%;
  }

  .banner-card.is-wide {
    grid-column: auto;
    min-height: 92vh;
  }

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

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

  .category-lead,
  .category-detail > div {
    min-height: auto;
  }

  .product-row {
    grid-template-columns: 68px minmax(180px, 0.52fr) 1fr;
  }

  .product-row .product-delivery {
    grid-column: 2 / -1;
  }
}

@media (max-width: 780px) {
  .topbar {
    grid-template-columns: auto auto;
    min-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .topbar-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 92vh;
    gap: 28px;
    padding-top: 106px;
    padding-bottom: 52px;
  }

  .home-banner {
    min-height: 92vh;
    padding: 0;
  }

  .banner-lead {
    top: 96px;
    gap: 14px;
  }

  .banner-lead h1 {
    font-size: clamp(2.75rem, 15vw, 4.8rem);
  }

  .banner-lead > p:not(.section-kicker) {
    font-size: 1rem;
    line-height: 1.72;
  }

  .banner-gallery {
    min-height: 92vh;
  }

  .banner-card,
  .banner-card.is-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 92vh;
    aspect-ratio: auto;
  }

  .banner-card span {
    bottom: 34px;
  }

  .banner-metrics {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 16vw, 4.6rem);
  }

  .category-hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 64px;
  }

  .product-detail-hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 64px;
  }

  .category-hero h1 {
    font-size: clamp(2.85rem, 16vw, 4.8rem);
  }

  .product-detail-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  .console-grid,
  .solution-layout,
  .solution-panel,
  .section-title,
  .contact-section,
  .footer-cta,
  .category-page-grid,
  .detail-table,
  .capability-grid,
  .process-list,
  .product-two-col,
  .product-module-grid,
  .product-workflow,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .product-console {
    display: none;
  }

  .category-visual {
    display: none;
  }

  .product-detail-panel {
    min-height: auto;
  }

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

  .product-preview-grid {
    grid-template-columns: 1fr;
  }

  .product-preview-card.is-featured,
  .product-preview-card img {
    min-height: auto;
  }

  .category-page-section,
  .product-detail-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-copy > p:not(.section-kicker) {
    margin-top: 20px;
    line-height: 1.72;
  }

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

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
  }

  .hero-metrics div {
    min-height: 74px;
    padding: 12px 10px 12px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .hero-metrics div:last-child {
    border-right: 0;
  }

  .pipeline {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .pipeline b {
    display: none;
  }

  .suite-grid,
  .delivery-track {
    grid-template-columns: 1fr;
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  .product-row .product-delivery {
    grid-column: auto;
  }

  .product-row > div {
    min-height: auto;
  }

  .contact-section {
    align-items: start;
  }

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

  .footer-column {
    min-height: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .telegram-float {
    right: 10px;
    width: 154px;
    padding: 7px;
    border-radius: 16px;
  }

  .telegram-float a {
    min-height: 52px;
    grid-template-columns: 36px 1fr;
    padding: 7px 10px 7px 7px;
    border-radius: 13px;
  }

  .telegram-float a:hover {
    transform: translateX(-4px);
  }

  .telegram-float i {
    width: 36px;
    height: 36px;
  }

  .telegram-float strong {
    font-size: 0.82rem;
  }
}

@media (max-width: 460px) {
  .brand-logo {
    width: 138px;
    height: 42px;
  }

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

  .console-main {
    min-height: 330px;
    padding: 16px;
  }

  .market-chart {
    gap: 7px;
    height: 170px;
  }
}
