:root {
  --ink: #f5f8ef;
  --ink-soft: #c8cec1;
  --muted: #858e83;
  --black: #050807;
  --black-soft: #080c0a;
  --panel: #0b100d;
  --panel-raised: #0f1511;
  --line: rgba(224, 255, 218, 0.1);
  --line-strong: rgba(224, 255, 218, 0.18);
  --lime: #b8ff38;
  --lime-bright: #ceff78;
  --lime-dark: #6d9a19;
  --violet: #9b7cff;
  --cyan: #65e8d7;
  --danger: #ff716b;
  --shell: min(1180px, calc(100vw - 48px));
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--black);
  background: var(--lime);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

svg {
  display: block;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--black);
  background: var(--lime);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 132px 0;
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  opacity: 0.09;
}

.ambient-one {
  top: 7vh;
  right: -240px;
  background: var(--lime);
}

.ambient-two {
  bottom: 3vh;
  left: -280px;
  background: var(--violet);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(5, 8, 7, 0.8);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(184, 255, 56, 0.45);
  background: rgba(184, 255, 56, 0.05);
  transform: rotate(45deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before,
.brand-mark span::after {
  position: absolute;
  width: 7px;
  height: 1px;
  background: var(--lime);
  content: "";
  box-shadow: 0 0 9px rgba(184, 255, 56, 0.7);
}

.brand-mark::before {
  top: 8px;
  left: 5px;
  transform: rotate(45deg);
}

.brand-mark::after {
  top: 8px;
  right: 5px;
  transform: rotate(-45deg);
}

.brand-mark span::before {
  bottom: 8px;
  left: 5px;
  transform: rotate(-45deg);
}

.brand-mark span::after {
  right: 5px;
  bottom: 8px;
  transform: rotate(45deg);
}

.brand-name {
  font-size: 1.1rem;
}

.brand-beta {
  margin-left: 2px;
  padding: 4px 6px;
  border: 1px solid rgba(184, 255, 56, 0.24);
  color: var(--lime);
  background: rgba(184, 255, 56, 0.06);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a,
.nav-login {
  position: relative;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.nav-login:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.26), transparent 65%);
  content: "";
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.button:hover::before {
  transform: translateX(120%);
}

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

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  color: var(--black);
  background: var(--lime);
  border-radius: 8px;
  box-shadow: 0 0 26px rgba(184, 255, 56, 0.12);
}

.button-primary {
  color: var(--black);
  background: var(--lime);
  box-shadow: 0 10px 38px rgba(184, 255, 56, 0.16);
}

.button-primary:hover {
  background: var(--lime-bright);
  box-shadow: 0 14px 48px rgba(184, 255, 56, 0.22);
}

.button-secondary {
  color: var(--ink-soft);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
}

.button-secondary:hover {
  color: var(--ink);
  border-color: rgba(184, 255, 56, 0.35);
  background: rgba(184, 255, 56, 0.04);
}

.button-large {
  min-height: 58px;
  padding: 0 26px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 23px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 158px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 34%, rgba(155, 124, 255, 0.08), transparent 26%),
    radial-gradient(circle at 64% 8%, rgba(184, 255, 56, 0.07), transparent 29%);
}

.hero::before {
  position: absolute;
  top: 78px;
  left: 50%;
  width: 1px;
  height: calc(100% - 78px);
  background: linear-gradient(transparent, var(--line), transparent);
  content: "";
  opacity: 0.7;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(580px, 1.13fr);
  gap: 48px;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  padding: 0 11px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 99px;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot,
.latency span,
.console-top div i {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(184, 255, 56, 0.8);
}

.live-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  content: "";
  animation: ping 2s ease-out infinite;
}

.status-divider {
  width: 1px;
  height: 12px;
  background: var(--line-strong);
}

.hero h1 {
  max-width: 650px;
  margin: 27px 0 24px;
  font-family: var(--display);
  font-size: clamp(3.7rem, 6.2vw, 6.25rem);
  line-height: 0.91;
  letter-spacing: -0.072em;
}

.hero h1 span,
.section-heading h2 em,
.strategy .section-heading h2 em,
.security-copy h2 em {
  color: transparent;
  background: linear-gradient(100deg, var(--ink) 10%, var(--lime) 53%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.hero-lead {
  max-width: 580px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 570px;
  margin-top: 55px;
  border-top: 1px solid var(--line);
}

.hero-proof > div {
  position: relative;
  padding: 22px 16px 0 0;
}

.hero-proof > div:not(:first-child) {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.hero-proof span {
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  perspective: 1200px;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(184, 255, 56, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--lime);
  content: "";
}

.orbit-one {
  inset: -100px -35px -75px -80px;
  animation: spin 26s linear infinite;
}

.orbit-two {
  inset: -38px 24px -10px -22px;
  border-color: rgba(155, 124, 255, 0.13);
  animation: spin 18s linear reverse infinite;
}

.terminal-card {
  position: relative;
  border: 1px solid rgba(224, 255, 218, 0.16);
  background: rgba(8, 13, 10, 0.92);
  border-radius: 16px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.55), 0 0 80px rgba(184, 255, 56, 0.035);
  transform: rotateY(-3deg) rotateX(1.5deg);
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

.terminal-card::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  padding: 1px;
  background: linear-gradient(125deg, rgba(184, 255, 56, 0.4), transparent 25%, transparent 72%, rgba(155, 124, 255, 0.32));
  border-radius: inherit;
  content: "";
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.terminal-glow {
  position: absolute;
  top: -120px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: var(--lime);
  filter: blur(140px);
  opacity: 0.07;
}

.terminal-topbar,
.terminal-footer {
  display: flex;
  align-items: center;
  height: 41px;
  padding: 0 15px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.window-dots {
  display: flex;
  gap: 5px;
  margin-right: 15px;
}

.window-dots i {
  width: 5px;
  height: 5px;
  background: #344039;
  border-radius: 50%;
}

.latency {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: var(--lime);
}

.terminal-body {
  display: grid;
  min-height: 454px;
  grid-template-columns: 58px 1fr;
}

.terminal-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 15px 0;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.rail-brand {
  display: grid;
  width: 29px;
  height: 29px;
  margin-bottom: 17px;
  place-items: center;
  border: 1px solid rgba(184, 255, 56, 0.22);
  transform: rotate(45deg) scale(0.75);
}

.rail-brand span {
  width: 7px;
  height: 7px;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.rail-item {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  color: #637068;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 7px;
}

.rail-item:hover,
.rail-item.active {
  color: var(--lime);
  border-color: rgba(184, 255, 56, 0.14);
  background: rgba(184, 255, 56, 0.06);
}

.rail-item svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.rail-bottom { margin-top: auto; }

.terminal-main {
  padding: 21px;
}

.terminal-heading,
.signal-card-head,
.analysis-top,
.execution-meta,
.contract-top,
.chart-header,
.chart-footer,
.strategy-panel-head,
.protection-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eyebrow-label,
.micro-label,
.section-kicker {
  display: block;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.terminal-heading h2 {
  margin: 5px 0 0;
  font-family: var(--display);
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.filter-button {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 7px;
}

.filter-button:hover { color: var(--ink); border-color: var(--line-strong); }
.filter-button svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.signal-card,
.analysis-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  border-radius: 10px;
}

.signal-card {
  position: relative;
  margin-top: 17px;
  padding: 16px;
  overflow: hidden;
}

.signal-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--lime);
  box-shadow: 0 0 15px var(--lime);
  content: "";
}

.signal-card-head {
  justify-content: flex-start;
}

.avatar {
  display: grid;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 500;
}

.avatar-purple { color: #d8cdff; background: linear-gradient(145deg, #3b2d6b, #1c1730); border: 1px solid #5d499e; }

.signal-source {
  margin-left: 10px;
}

.signal-source strong,
.signal-source span,
.signal-confidence span {
  display: block;
}

.signal-source strong { font-size: 0.72rem; }
.signal-source span { margin-top: 3px; color: var(--muted); font-family: var(--mono); font-size: 0.48rem; }

.signal-confidence {
  margin-left: auto;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-align: right;
}

.signal-confidence span { margin-top: 2px; color: var(--muted); font-size: 0.42rem; letter-spacing: 0.08em; }
.signal-card p { margin: 14px 0 13px; color: var(--ink-soft); font-size: 0.72rem; line-height: 1.55; }
.signal-card p strong { color: var(--ink); }

.contract-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.48rem;
}

.contract-row span { color: var(--muted); }
.contract-row code { color: var(--ink-soft); font-family: inherit; }
.contract-row em { margin-left: auto; padding: 3px 5px; color: var(--lime); background: rgba(184, 255, 56, 0.06); border-radius: 3px; font-style: normal; letter-spacing: 0.08em; }

.analysis-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(150px, 0.75fr);
  gap: 11px;
  margin-top: 11px;
}

.analysis-card { padding: 13px; }
.analysis-top { color: var(--muted); font-family: var(--mono); font-size: 0.47rem; letter-spacing: 0.08em; }
.analysis-top strong { font-size: 0.68rem; }
.positive { color: var(--lime) !important; }

.spark-chart { width: 100%; height: 91px; margin-top: 8px; overflow: visible; }
.chart-area { fill: url(#chart-fill); }
.chart-line { fill: none; stroke: var(--lime); stroke-width: 2; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 5px rgba(184, 255, 56, 0.4)); }
.chart-axis { display: flex; justify-content: space-between; color: #526058; font-family: var(--mono); font-size: 0.43rem; }

.execution-card { display: flex; flex-direction: column; }
.execution-status { color: var(--lime); font-family: var(--mono); font-size: 0.46rem; letter-spacing: 0.08em; }
.execution-status span { display: inline-block; width: 5px; height: 5px; margin-right: 5px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 8px var(--lime); }
.token-pair { display: flex; align-items: center; gap: 8px; margin-top: 17px; }
.token-icon { display: grid; width: 32px; height: 32px; flex: 0 0 auto; place-items: center; color: var(--black); background: linear-gradient(145deg, var(--lime), #67e6ba); border-radius: 50%; font-family: var(--display); font-weight: 700; }
.token-pair strong, .token-pair span { display: block; }
.token-pair strong { font-size: 0.62rem; }
.token-pair span { margin-top: 4px; color: var(--muted); font-family: var(--mono); font-size: 0.44rem; }
.execution-progress { height: 3px; margin-top: 20px; overflow: hidden; background: rgba(255, 255, 255, 0.06); border-radius: 3px; }
.execution-progress span { display: block; width: 78%; height: 100%; background: var(--lime); border-radius: inherit; box-shadow: 0 0 12px var(--lime); animation: execute 2.7s ease-in-out infinite; }
.execution-meta { margin-top: auto; padding-top: 12px; color: var(--muted); border-top: 1px solid var(--line); font-family: var(--mono); font-size: 0.43rem; }
.execution-meta strong { color: var(--ink-soft); }

.terminal-footer {
  gap: 23px;
  height: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  font-size: 0.45rem;
}

.terminal-footer > span:first-child { display: flex; align-items: center; gap: 6px; }
.terminal-footer i { width: 5px; height: 5px; background: var(--lime); border-radius: 50%; }
.terminal-footer strong { color: var(--ink-soft); font-weight: 400; }
.terminal-secure { display: flex; align-items: center; gap: 5px; margin-left: auto; }
.terminal-secure svg { width: 10px; height: 10px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.telegram-stage {
  position: relative;
  display: flex;
  min-height: 670px;
  align-items: center;
  justify-content: center;
}

.telegram-phone {
  position: relative;
  width: 390px;
  height: 690px;
  overflow: hidden;
  border: 7px solid #171b19;
  background: #0a0e0c;
  border-radius: 42px;
  box-shadow:
    0 55px 110px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(224, 255, 218, 0.16),
    0 0 90px rgba(34, 158, 217, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transform: rotateY(-4deg) rotateX(1deg);
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

.telegram-phone::before {
  position: absolute;
  inset: 0;
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 34px;
  content: "";
  pointer-events: none;
}

.phone-glow {
  position: absolute;
  top: 70px;
  right: -160px;
  z-index: 0;
  width: 300px;
  height: 300px;
  background: #229ed9;
  filter: blur(130px);
  opacity: 0.08;
}

.phone-statusbar {
  position: relative;
  z-index: 5;
  display: flex;
  height: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: #eaf0ec;
  background: #0b100d;
  font-family: var(--mono);
  font-size: 0.48rem;
  font-weight: 500;
}

.phone-island {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 83px;
  height: 17px;
  background: #020303;
  border-radius: 20px;
  transform: translateX(-50%);
}

.phone-statusbar > div {
  display: flex;
  align-items: flex-end;
  gap: 3px;
}

.phone-statusbar > div i {
  display: block;
  width: 9px;
  height: 6px;
  border-top: 1px solid #eaf0ec;
  border-radius: 50%;
}

.phone-statusbar > div i:nth-child(2) {
  width: 6px;
  height: 7px;
  border: 1px solid #eaf0ec;
  border-top: 0;
}

.phone-statusbar > div b {
  display: block;
  width: 13px;
  height: 7px;
  border: 1px solid #eaf0ec;
  border-radius: 2px;
}

.telegram-header {
  position: relative;
  z-index: 5;
  display: flex;
  height: 57px;
  align-items: center;
  padding: 0 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(13, 20, 17, 0.96);
  backdrop-filter: blur(16px);
}

.tg-back {
  margin-right: 9px;
  color: #57b8e6;
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1;
}

.tg-avatar {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, rgba(184, 255, 56, 0.22), transparent 50%), #09100b;
  border: 1px solid rgba(184, 255, 56, 0.24);
  border-radius: 50%;
}

.tg-avatar .brand-mark {
  width: 20px;
  height: 20px;
  transform: rotate(45deg) scale(0.65);
}

.tg-identity {
  margin-left: 9px;
}

.tg-identity strong,
.tg-identity small {
  display: block;
}

.tg-identity strong {
  font-size: 0.72rem;
  letter-spacing: -0.01em;
}

.tg-identity small {
  margin-top: 3px;
  color: #65beeb;
  font-size: 0.52rem;
}

.verified-check {
  display: inline-grid;
  width: 12px;
  height: 12px;
  margin-left: 3px;
  place-items: center;
  color: white;
  background: #229ed9;
  border-radius: 50%;
  font-size: 0.42rem;
  vertical-align: 1px;
}

.tg-menu {
  margin-left: auto;
  color: #73b9db;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.telegram-chat {
  position: relative;
  z-index: 2;
  display: flex;
  height: 525px;
  flex-direction: column;
  gap: 7px;
  padding: 10px 10px 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10px 10px, rgba(101, 232, 215, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 70% 18%, rgba(34, 158, 217, 0.08), transparent 31%),
    linear-gradient(145deg, #09100c, #070b09);
  background-size: 28px 28px, auto, auto;
}

.telegram-chat::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(35deg, transparent 48%, rgba(255, 255, 255, 0.012) 49%, rgba(255, 255, 255, 0.012) 51%, transparent 52%),
    linear-gradient(-35deg, transparent 48%, rgba(255, 255, 255, 0.01) 49%, rgba(255, 255, 255, 0.01) 51%, transparent 52%);
  background-size: 44px 44px;
  content: "";
}

.tg-day {
  align-self: center;
  padding: 3px 7px;
  color: #92a69a;
  background: rgba(24, 35, 29, 0.86);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 0.4rem;
  letter-spacing: 0.08em;
}

.tg-message {
  position: relative;
  max-width: 88%;
  padding: 10px 10px 16px;
  color: #dde6df;
  border: 1px solid rgba(224, 255, 218, 0.09);
  font-size: 0.58rem;
  line-height: 1.45;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.14);
}

.tg-message time {
  position: absolute;
  right: 8px;
  bottom: 4px;
  color: #64756a;
  font-family: var(--mono);
  font-size: 0.38rem;
}

.tg-message time i {
  color: #4c9ec5;
  font-style: normal;
}

.bot-message {
  align-self: flex-start;
  background: rgba(20, 30, 24, 0.96);
  border-radius: 4px 13px 13px 13px;
}

.user-message {
  display: flex;
  align-items: center;
  gap: 6px;
  align-self: flex-end;
  padding-right: 42px;
  color: #e7f6ea;
  background: linear-gradient(135deg, #24442c, #183523);
  border-color: rgba(184, 255, 56, 0.12);
  border-radius: 13px 4px 13px 13px;
}

.user-message svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.7;
}

.message-kicker {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #7dcdf2;
  font-family: var(--mono);
  font-size: 0.44rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.message-kicker > span {
  width: 5px;
  height: 5px;
  background: #57b8e6;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(87, 184, 230, 0.8);
}

.message-kicker.safe {
  color: var(--lime);
}

.message-kicker.safe svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.message-source,
.tg-token-row,
.success-head,
.success-meta {
  display: flex;
  align-items: center;
}

.message-source {
  margin-top: 8px;
}

.message-source .avatar {
  width: 29px;
  height: 29px;
}

.message-source > span,
.tg-token-row > span {
  margin-left: 7px;
}

.message-source strong,
.message-source small,
.tg-token-row strong,
.tg-token-row small {
  display: block;
}

.message-source strong,
.tg-token-row strong {
  font-size: 0.56rem;
}

.message-source small,
.tg-token-row small {
  margin-top: 1px;
  color: #75877b;
  font-size: 0.42rem;
}

.message-source em {
  margin-left: auto;
  color: #73c9f1;
  font-family: var(--mono);
  font-size: 0.42rem;
  font-style: normal;
}

.signal-message p {
  margin: 8px 0 3px;
}

.signal-message p strong {
  color: var(--lime);
}

.signal-message code {
  color: #819187;
  font-family: var(--mono);
  font-size: 0.43rem;
}

.analysis-message {
  width: 88%;
}

.tg-token-row {
  margin-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(224, 255, 218, 0.08);
}

.tg-token-row .token-icon {
  width: 29px;
  height: 29px;
  font-size: 0.62rem;
}

.tg-token-row em {
  margin-left: auto;
  padding: 3px 5px;
  color: var(--lime);
  background: rgba(184, 255, 56, 0.06);
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 0.38rem;
  font-style: normal;
}

.tg-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 10px;
  margin-top: 8px;
  color: #9ca9a0;
  font-size: 0.45rem;
}

.tg-check-grid i {
  margin-right: 3px;
  color: var(--lime);
  font-style: normal;
}

.tg-inline-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-top: 8px;
}

.tg-inline-actions span {
  padding: 6px 4px;
  color: #67bfe8;
  border: 1px solid rgba(87, 184, 230, 0.16);
  background: rgba(34, 158, 217, 0.04);
  border-radius: 5px;
  font-size: 0.46rem;
  text-align: center;
}

.tg-inline-actions span.active {
  color: var(--black);
  border-color: var(--lime);
  background: var(--lime);
  font-weight: 600;
}

.success-message {
  width: 79%;
  border-color: rgba(184, 255, 56, 0.14);
}

.success-head > span {
  display: grid;
  width: 17px;
  height: 17px;
  margin-right: 6px;
  place-items: center;
  color: var(--black);
  background: var(--lime);
  border-radius: 50%;
  font-size: 0.48rem;
  font-weight: 700;
}

.success-head strong {
  font-size: 0.56rem;
}

.success-head em {
  margin-left: auto;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.4rem;
  font-style: normal;
}

.success-message p {
  margin: 8px 0 7px;
  color: #b9c6bd;
}

.success-meta {
  gap: 6px;
}

.success-meta > span {
  flex: 1;
  padding: 5px;
  color: #75877b;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  font-size: 0.4rem;
}

.success-meta strong {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.43rem;
}

.telegram-keyboard {
  position: absolute;
  right: 0;
  bottom: 38px;
  left: 0;
  z-index: 5;
  display: grid;
  height: 31px;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 3px 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: #0c120f;
}

.telegram-keyboard span {
  display: grid;
  place-items: center;
  color: #63bce6;
  border: 1px solid rgba(34, 158, 217, 0.12);
  background: rgba(34, 158, 217, 0.025);
  border-radius: 5px;
  font-size: 0.44rem;
}

.telegram-composer {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 5;
  display: flex;
  height: 30px;
  align-items: center;
  gap: 8px;
  padding: 0 9px;
  color: #66756c;
  background: #101713;
  font-size: 0.52rem;
}

.composer-plus {
  color: #63bce6;
  font-size: 1rem;
  font-weight: 300;
}

.telegram-composer i {
  width: 12px;
  height: 12px;
  margin-left: auto;
  border: 1px solid #718178;
  border-radius: 50%;
}

.telegram-composer svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #63bce6;
  stroke-width: 1.7;
}

.phone-homebar {
  position: absolute;
  z-index: 6;
  bottom: 3px;
  left: 50%;
  width: 90px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  transform: translateX(-50%);
}

.telegram-float {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 186px;
  padding: 11px 13px;
  border: 1px solid rgba(224, 255, 218, 0.15);
  background: rgba(11, 17, 13, 0.93);
  border-radius: 10px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
}

.telegram-float small,
.telegram-float strong {
  display: block;
}

.telegram-float small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.42rem;
  letter-spacing: 0.1em;
}

.telegram-float strong {
  margin-top: 4px;
  font-size: 0.62rem;
}

.float-icon,
.float-status {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
}

.float-icon {
  color: #67c4ef;
  border: 1px solid rgba(34, 158, 217, 0.2);
  background: rgba(34, 158, 217, 0.06);
}

.float-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.float-status {
  color: var(--black);
  background: var(--lime);
  box-shadow: 0 0 20px rgba(184, 255, 56, 0.12);
  font-size: 0.75rem;
  font-weight: 800;
}

.telegram-float-signal {
  top: 21%;
  left: -4%;
}

.telegram-float-executed {
  right: -5%;
  bottom: 13%;
}

.telegram-network {
  color: #65c5f0;
}

.telegram-network svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.network-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 82px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.network-label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.network-items {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
}

.network-items > span { display: flex; align-items: center; gap: 8px; }
.network-dot { width: 8px; height: 8px; border-radius: 2px; transform: rotate(45deg); }
.network-dot.solana { background: linear-gradient(135deg, var(--violet), var(--cyan)); }
.network-dot.ethereum { border: 1px solid #7f8fa8; background: #2b3340; }
.network-dot.bsc { background: #f0b90b; }
.network-items .network-separator { width: 1px; height: 18px; background: var(--line-strong); }
.network-items .muted-network { color: #5e6760; }

.bot-experience {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 19% 48%, rgba(155, 124, 255, 0.1), transparent 28%),
    radial-gradient(circle at 30% 28%, rgba(34, 158, 217, 0.055), transparent 25%),
    #060906;
}

.bot-experience-layout {
  display: grid;
  grid-template-columns: minmax(390px, 0.8fr) minmax(0, 1.05fr);
  gap: clamp(70px, 10vw, 145px);
  align-items: center;
}

.real-bot-visual {
  position: relative;
  display: flex;
  min-height: 725px;
  align-items: center;
  justify-content: center;
}

.real-bot-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(155, 124, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.real-bot-orbit::before,
.real-bot-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(34, 158, 217, 0.09);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.real-bot-orbit::before {
  width: 380px;
  height: 380px;
}

.real-bot-orbit::after {
  width: 620px;
  height: 620px;
}

.real-bot-frame {
  position: relative;
  z-index: 3;
  width: 390px;
  overflow: hidden;
  border: 7px solid #171b19;
  background: #0a0d0b;
  border-radius: 34px;
  box-shadow:
    0 55px 110px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(224, 255, 218, 0.13),
    0 0 80px rgba(155, 124, 255, 0.07);
  transform: rotate(-1.5deg);
}

.real-bot-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 26px;
  content: "";
  pointer-events: none;
}

.real-bot-topbar {
  display: flex;
  height: 61px;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #101612;
}

.real-bot-screen {
  position: relative;
  height: 610px;
  overflow: hidden;
  background: #0c0b10;
}

.real-bot-screen::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 70px;
  background: linear-gradient(transparent, rgba(10, 13, 11, 0.52));
  content: "";
  pointer-events: none;
}

.real-bot-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.real-bot-caption {
  display: flex;
  height: 34px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: #6b786f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0b100d;
  font-family: var(--mono);
  font-size: 0.42rem;
  letter-spacing: 0.09em;
}

.real-bot-caption span:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--lime);
}

.real-bot-caption i {
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--lime);
}

.product-proof {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  color: #829087;
  border: 1px solid var(--line-strong);
  background: rgba(10, 15, 12, 0.94);
  border-radius: 7px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  font-family: var(--mono);
  font-size: 0.42rem;
  letter-spacing: 0.08em;
}

.product-proof span {
  color: var(--lime);
  text-shadow: 0 0 8px var(--lime);
}

.product-proof strong {
  color: var(--ink-soft);
  font-size: inherit;
  font-weight: 500;
}

.proof-monitor {
  top: 17%;
  right: -6%;
}

.proof-autosell {
  bottom: 16%;
  left: -7%;
}

.bot-experience-copy h2 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.bot-experience-copy h2 em {
  color: transparent;
  background: linear-gradient(100deg, var(--ink) 10%, #65c5f0 55%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.bot-experience-copy > p {
  max-width: 560px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.76;
}

.bot-status-line {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 31px;
  padding: 13px 0;
  color: #718078;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.46rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.bot-status-line span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
}

.bot-status-line i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 9px var(--lime);
}

.command-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 25px;
}

.command-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  border-radius: 8px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.command-item:hover {
  border-color: rgba(101, 197, 240, 0.23);
  background: rgba(34, 158, 217, 0.035);
  transform: translateY(-2px);
}

.command-icon {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  color: #67c4ef;
  border: 1px solid rgba(34, 158, 217, 0.16);
  background: rgba(34, 158, 217, 0.04);
  border-radius: 6px;
  font-size: 0.8rem;
}

.command-item strong,
.command-item small {
  display: block;
}

.command-item strong {
  color: var(--ink-soft);
  font-size: 0.65rem;
}

.command-item small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.52rem;
}

.bot-experience-cta {
  margin-top: 28px;
}

.intelligence {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #070a08, var(--black-soft));
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 63px;
}

.section-heading h2,
.workflow-copy h2,
.security-copy h2,
.faq-heading h2 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  grid-template-rows: 520px 315px;
  gap: 14px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
}

.bento-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(184, 255, 56, 0.07), transparent 42%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.bento-card:hover::before { opacity: 1; }

.card-index {
  position: absolute;
  top: 20px;
  right: 21px;
  z-index: 3;
  color: #4d584f;
  font-family: var(--mono);
  font-size: 0.56rem;
}

.bento-content {
  position: relative;
  z-index: 2;
  padding: 33px;
}

.bento-content h3 {
  margin: 10px 0 10px;
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: -0.045em;
}

.bento-content p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.68;
}

.radar-card {
  grid-row: 1 / 3;
  background:
    radial-gradient(circle at 50% 29%, rgba(184, 255, 56, 0.055), transparent 32%),
    var(--panel);
}

.radar-visual {
  position: relative;
  width: min(78%, 430px);
  aspect-ratio: 1;
  margin: 30px auto 4px;
  overflow: hidden;
  border: 1px solid rgba(184, 255, 56, 0.14);
  border-radius: 50%;
  background:
    linear-gradient(rgba(184, 255, 56, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 255, 56, 0.035) 1px, transparent 1px),
    radial-gradient(circle, rgba(184, 255, 56, 0.045), transparent 65%);
  background-size: 28px 28px, 28px 28px, auto;
}

.radar-visual::before,
.radar-visual::after {
  position: absolute;
  background: rgba(184, 255, 56, 0.1);
  content: "";
}

.radar-visual::before { top: 50%; right: 0; left: 0; height: 1px; }
.radar-visual::after { top: 0; bottom: 0; left: 50%; width: 1px; }

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(184, 255, 56, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-a { width: 74%; height: 74%; }
.ring-b { width: 47%; height: 47%; }
.ring-c { width: 20%; height: 20%; }

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 20deg, transparent 0deg, transparent 315deg, rgba(184, 255, 56, 0.22) 356deg, transparent 360deg);
  animation: spin 5s linear infinite;
}

.radar-sweep::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48%;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), transparent);
  content: "";
  transform-origin: left;
}

.radar-ping {
  position: absolute;
  z-index: 3;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border: 2px solid var(--black);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--lime);
}

.radar-ping::after { position: absolute; inset: -7px; border: 1px solid rgba(184, 255, 56, 0.35); border-radius: 50%; content: ""; animation: ping 2s ease-out infinite; }
.ping-a { top: 27%; left: 63%; }
.ping-b { top: 66%; left: 28%; }
.ping-b::after { animation-delay: 0.8s; }
.ping-c { top: 63%; left: 73%; }
.ping-c::after { animation-delay: 1.4s; }

.radar-center {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(184, 255, 56, 0.38);
  background: rgba(5, 8, 7, 0.86);
  box-shadow: 0 0 30px rgba(184, 255, 56, 0.1);
  transform: translate(-50%, -50%) rotate(45deg);
}

.radar-center span { width: 10px; height: 10px; background: var(--lime); box-shadow: 0 0 18px var(--lime); }

.inline-metrics {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  padding-top: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.55rem;
  text-transform: uppercase;
}

.inline-metrics strong { margin-right: 4px; color: var(--ink); font-size: 0.78rem; }

.validation-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}

.validation-card .bento-content {
  padding-right: 22px;
  order: -1;
}

.validation-visual {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(184, 255, 56, 0.035));
}

.contract-preview {
  position: absolute;
  top: 50%;
  right: -25px;
  width: 270px;
  padding: 15px;
  border: 1px solid var(--line-strong);
  background: #0b110d;
  border-radius: 11px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  transform: translateY(-50%) rotate(-2deg);
}

.contract-top { padding-bottom: 13px; border-bottom: 1px solid var(--line); }
.contract-top > div:nth-child(2) { margin-right: auto; margin-left: 9px; }
.contract-top strong, .contract-top span { display: block; }
.contract-top strong { font-size: 0.72rem; }
.contract-top span { margin-top: 3px; color: var(--muted); font-family: var(--mono); font-size: 0.45rem; }
.contract-top em { padding: 4px 6px; color: var(--lime); background: rgba(184, 255, 56, 0.07); border-radius: 4px; font-family: var(--mono); font-size: 0.46rem; font-style: normal; }
.check-row { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; color: var(--muted); font-family: var(--mono); font-size: 0.48rem; }
.check-row span { display: flex; align-items: center; gap: 6px; }
.check-row svg { width: 11px; height: 11px; fill: none; stroke: var(--lime); stroke-width: 2; }
.check-row strong { color: var(--ink-soft); font-weight: 400; }
.scan-beam { position: absolute; z-index: 3; top: 0; right: 0; left: 0; height: 1px; background: var(--lime); box-shadow: 0 0 18px 3px rgba(184, 255, 56, 0.28); animation: scan 3.4s ease-in-out infinite; }

.execution-bento {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.execution-bento .top-content { padding: 28px 14px 28px 28px; }
.execution-bento .top-content h3 { font-size: 1.45rem; line-height: 1.12; }
.execution-bento .top-content p { font-size: 0.76rem; line-height: 1.55; }
.route-visual { display: flex; align-items: center; justify-content: center; padding: 20px 20px 48px; }
.route-node { position: relative; z-index: 2; display: grid; width: 58px; height: 58px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line-strong); background: var(--panel-raised); border-radius: 50%; font-family: var(--display); font-size: 0.9rem; font-weight: 700; }
.route-node::before { position: absolute; inset: -5px; border: 1px solid var(--line); border-radius: 50%; content: ""; }
.route-node small { position: absolute; top: 73px; color: var(--muted); font-family: var(--mono); font-size: 0.4rem; font-weight: 400; letter-spacing: 0.1em; }
.route-node svg { width: 18px; height: 18px; fill: none; stroke: var(--lime); stroke-width: 1.5; }
.middle-node { border-color: rgba(184, 255, 56, 0.35); box-shadow: 0 0 28px rgba(184, 255, 56, 0.09); }
.target-node { color: #dcd3ff; border-color: rgba(155, 124, 255, 0.35); }
.route-line { position: relative; width: 45px; height: 1px; overflow: hidden; background: var(--line-strong); }
.route-line i { position: absolute; width: 15px; height: 1px; background: var(--lime); box-shadow: 0 0 7px var(--lime); animation: flow 1.6s linear infinite; }
.speed-label { position: absolute; right: 25px; bottom: 22px; z-index: 3; padding: 0; text-align: right; }
.speed-label strong, .speed-label span { display: block; }
.speed-label strong { color: var(--lime); font-family: var(--display); font-size: 1.35rem; }
.speed-label span { margin-top: 5px; color: var(--muted); font-family: var(--mono); font-size: 0.45rem; text-transform: uppercase; }

.workflow {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 74% 48%, rgba(155, 124, 255, 0.08), transparent 27%),
    #060906;
}

.workflow-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.workflow-copy > p,
.security-copy > p,
.faq-heading > p {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.workflow-list {
  margin-top: 47px;
  border-top: 1px solid var(--line);
}

.workflow-step {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: 35px 1fr 12px;
  gap: 12px;
  align-items: center;
  padding: 17px 3px;
  color: var(--muted);
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

.workflow-step:hover,
.workflow-step.active {
  padding-inline: 12px;
  color: var(--ink);
  background: rgba(184, 255, 56, 0.025);
}

.workflow-step > span { font-family: var(--mono); font-size: 0.52rem; }
.workflow-step strong, .workflow-step small { display: block; }
.workflow-step strong { font-family: var(--display); font-size: 0.9rem; }
.workflow-step small { margin-top: 3px; color: var(--muted); font-size: 0.67rem; }
.workflow-step > i { width: 6px; height: 6px; border: 1px solid #505b52; border-radius: 50%; }
.workflow-step.active > span { color: var(--lime); }
.workflow-step.active > i { border-color: var(--lime); background: var(--lime); box-shadow: 0 0 10px var(--lime); }

.workflow-console {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: rgba(7, 11, 8, 0.88);
  border-radius: var(--radius);
  box-shadow: 0 55px 110px rgba(0, 0, 0, 0.45);
}

.console-grid {
  position: absolute;
  inset: 43px 0 145px;
  background-image: linear-gradient(rgba(184, 255, 56, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(184, 255, 56, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.console-top {
  position: relative;
  z-index: 2;
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
}

.console-top div { display: flex; align-items: center; gap: 7px; color: var(--lime); }

.console-stage {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.console-orb {
  position: relative;
  width: 210px;
  height: 210px;
}

.orb-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 33px;
  height: 33px;
  border: 1px solid var(--lime);
  background: rgba(184, 255, 56, 0.08);
  box-shadow: 0 0 45px rgba(184, 255, 56, 0.18), inset 0 0 15px rgba(184, 255, 56, 0.12);
  transform: translate(-50%, -50%) rotate(45deg);
}

.orb-core::after { position: absolute; inset: 9px; background: var(--lime); content: ""; box-shadow: 0 0 14px var(--lime); }
.orb-ring { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(184, 255, 56, 0.18); border-radius: 50%; transform: translate(-50%, -50%); }
.orb-ring::before, .orb-ring::after { position: absolute; width: 5px; height: 5px; background: var(--lime); border-radius: 50%; content: ""; box-shadow: 0 0 8px var(--lime); }
.orb-ring-a { width: 100px; height: 100px; animation: spinCentered 8s linear infinite; }
.orb-ring-b { width: 180px; height: 180px; border-color: rgba(155, 124, 255, 0.16); animation: spinCentered 13s linear reverse infinite; }
.orb-ring-a::before { top: 14px; left: 12px; }
.orb-ring-a::after { right: -2px; bottom: 42px; }
.orb-ring-b::before { top: -2px; left: 88px; background: var(--violet); box-shadow: 0 0 8px var(--violet); }
.orb-ring-b::after { right: 15px; bottom: 23px; background: var(--violet); box-shadow: 0 0 8px var(--violet); }
.orb-scan { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(transparent, transparent 290deg, rgba(184, 255, 56, 0.15)); animation: spin 4s linear infinite; }

.console-label { margin-top: 8px; text-align: center; }
.console-label span, .console-label strong, .console-label small { display: block; }
.console-label span { color: var(--lime); font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.12em; }
.console-label strong { margin-top: 7px; font-family: var(--display); font-size: 1.18rem; }
.console-label small { margin-top: 5px; color: var(--muted); font-size: 0.66rem; }

.console-log {
  position: relative;
  z-index: 2;
  margin: 0 18px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}

.console-log > div { display: grid; grid-template-columns: 98px 1fr auto; gap: 12px; padding: 6px 0; color: var(--ink-soft); font-family: var(--mono); font-size: 0.48rem; }
.console-log time { color: #58625b; }
.console-log em, .console-log strong { color: var(--lime); font-style: normal; font-weight: 400; }
.console-progress { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: rgba(255, 255, 255, 0.04); }
.console-progress span { display: block; width: 29%; height: 100%; background: var(--lime); box-shadow: 0 0 12px var(--lime); transition: width 400ms ease; }

.strategy { background: var(--black-soft); }
.section-heading.compact { align-items: center; }
.strategy-board { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.65fr); overflow: hidden; border: 1px solid var(--line-strong); background: var(--panel); border-radius: var(--radius); }
.strategy-chart { min-width: 0; padding: 28px 30px 20px; border-right: 1px solid var(--line); }
.chart-header > div:first-child { display: flex; align-items: baseline; gap: 12px; }
.chart-header span { color: var(--muted); font-family: var(--mono); font-size: 0.52rem; letter-spacing: 0.08em; }
.chart-header strong { font-family: var(--display); font-size: 1.13rem; }
.chart-header em { color: var(--lime); font-family: var(--mono); font-size: 0.55rem; font-style: normal; }
.chart-legend { display: flex; gap: 16px; }
.chart-legend span { display: flex; align-items: center; gap: 6px; }
.chart-legend i { width: 8px; height: 2px; }
.chart-legend i.lime { background: var(--lime); }
.chart-legend i.violet { background: var(--violet); }

.price-chart { position: relative; height: 340px; margin-top: 24px; overflow: hidden; border-bottom: 1px solid var(--line); }
.price-chart > svg { position: absolute; inset: 10px 0 0; z-index: 2; width: 100%; height: calc(100% - 10px); overflow: visible; }
.strategy-area { fill: url(#strategy-fill); }
.strategy-line { fill: none; stroke: var(--lime); stroke-width: 2.2; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 6px rgba(184, 255, 56, 0.4)); }
.horizontal-lines { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; }
.horizontal-lines i { width: 100%; height: 1px; background: rgba(255, 255, 255, 0.045); }
.target-line { position: absolute; z-index: 3; right: 0; left: 0; height: 1px; border-top: 1px dashed rgba(155, 124, 255, 0.42); }
.target-line span { position: absolute; top: -10px; left: 0; padding: 3px 6px; color: var(--violet); background: #111019; border: 1px solid rgba(155, 124, 255, 0.28); border-radius: 3px; font-family: var(--mono); font-size: 0.45rem; }
.target-line em { position: absolute; top: -9px; right: 0; color: #8879b6; background: var(--panel); font-family: var(--mono); font-size: 0.43rem; font-style: normal; }
.target-one { bottom: 25%; }
.target-two { bottom: 45%; }
.target-three { bottom: 64%; }
.target-four { bottom: 84%; }
.chart-footer { padding-top: 18px; }
.chart-footer > span { color: var(--muted); font-family: var(--mono); font-size: 0.47rem; letter-spacing: 0.06em; }
.chart-footer strong { margin-left: 6px; color: var(--ink-soft); font-weight: 400; }

.strategy-panel { padding: 28px; }
.strategy-panel-head > div span, .strategy-panel-head > div strong { display: block; }
.strategy-panel-head > div strong { margin-top: 8px; font-family: var(--display); font-size: 1.1rem; }
.active-badge { padding: 5px 7px; color: var(--lime); background: rgba(184, 255, 56, 0.06); border: 1px solid rgba(184, 255, 56, 0.14); border-radius: 4px; font-family: var(--mono); font-size: 0.45rem; letter-spacing: 0.08em; }
.ladder-list { margin-top: 33px; border-top: 1px solid var(--line); }
.ladder-list > div { display: flex; align-items: center; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid var(--line); }
.ladder-list > div > span { display: flex; align-items: center; gap: 9px; }
.ladder-list i { color: #566058; font-family: var(--mono); font-size: 0.48rem; font-style: normal; }
.ladder-list b { font-size: 0.7rem; font-weight: 500; }
.ladder-list strong { font-family: var(--mono); font-size: 0.61rem; font-weight: 400; }
.ladder-list strong em { display: block; margin-top: 3px; color: var(--muted); font-size: 0.47rem; font-style: normal; text-align: right; }
.protection-row { gap: 10px; margin-top: 21px; padding: 14px; background: rgba(184, 255, 56, 0.03); border: 1px solid rgba(184, 255, 56, 0.1); border-radius: 8px; }
.protection-row svg { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: var(--lime); stroke-width: 1.5; }
.protection-row > div { margin-right: auto; }
.protection-row strong, .protection-row span { display: block; }
.protection-row strong { font-size: 0.65rem; }
.protection-row span { margin-top: 4px; color: var(--muted); font-size: 0.52rem; }
.protection-row > em { color: var(--lime); font-family: var(--mono); font-size: 0.48rem; font-style: normal; }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; color: var(--ink-soft); font-size: 0.74rem; font-weight: 600; transition: color 180ms ease, gap 180ms ease; }
.text-link:hover { gap: 13px; color: var(--lime); }
.text-link svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.security {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #060906;
}

.security-layout { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(70px, 10vw, 145px); align-items: center; }
.security-visual { position: relative; min-height: 550px; }
.vault-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(184, 255, 56, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(184, 255, 56, 0.04) 1px, transparent 1px); background-size: 35px 35px; mask-image: radial-gradient(circle, black, transparent 69%); transform: perspective(500px) rotateX(62deg) scale(1.45); }
.vault-rings span { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(184, 255, 56, 0.12); border-radius: 50%; transform: translate(-50%, -50%); }
.vault-rings span:nth-child(1) { width: 380px; height: 380px; }
.vault-rings span:nth-child(2) { width: 270px; height: 270px; border-style: dashed; animation: spinCentered 28s linear infinite; }
.vault-rings span:nth-child(3) { width: 165px; height: 165px; border-color: rgba(155, 124, 255, 0.15); animation: spinCentered 18s linear reverse infinite; }
.vault-core { position: absolute; z-index: 3; top: 50%; left: 50%; text-align: center; transform: translate(-50%, -50%); }
.vault-core > div { display: grid; width: 105px; height: 105px; place-items: center; border: 1px solid rgba(184, 255, 56, 0.45); background: rgba(10, 16, 11, 0.88); box-shadow: 0 0 80px rgba(184, 255, 56, 0.11), inset 0 0 35px rgba(184, 255, 56, 0.04); transform: rotate(45deg); }
.vault-core svg { width: 30px; height: 30px; fill: none; stroke: var(--lime); stroke-width: 1.3; transform: rotate(-45deg); filter: drop-shadow(0 0 8px rgba(184, 255, 56, 0.5)); }
.vault-core > span { display: block; margin-top: 39px; color: var(--lime); font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.2em; }
.security-chip { position: absolute; display: flex; align-items: center; gap: 8px; padding: 9px 11px; color: var(--ink-soft); border: 1px solid var(--line-strong); background: rgba(8, 13, 10, 0.91); border-radius: 6px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); font-family: var(--mono); font-size: 0.49rem; letter-spacing: 0.07em; }
.security-chip i { width: 5px; height: 5px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 8px var(--lime); }
.chip-one { top: 20%; left: 6%; }
.chip-two { top: 29%; right: 0; }
.chip-three { bottom: 18%; left: 13%; }
.security-points { margin-top: 40px; }
.security-points > div { display: flex; gap: 15px; padding: 18px 0; border-top: 1px solid var(--line); }
.security-points > div:last-child { border-bottom: 1px solid var(--line); }
.security-points svg { width: 21px; height: 21px; flex: 0 0 auto; fill: none; stroke: var(--lime); stroke-width: 1.45; }
.security-points strong, .security-points small { display: block; }
.security-points strong { font-family: var(--display); font-size: 0.86rem; }
.security-points small { margin-top: 5px; color: var(--muted); font-size: 0.7rem; line-height: 1.5; }
.risk-note { padding-left: 15px; border-left: 1px solid var(--line-strong); font-size: 0.67rem; }

.faq { background: var(--black-soft); }
.faq-layout { display: grid; grid-template-columns: 0.65fr 1fr; gap: clamp(70px, 11vw, 160px); }
.faq-heading { position: sticky; top: 130px; align-self: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; min-height: 83px; align-items: center; justify-content: space-between; gap: 25px; color: var(--ink-soft); cursor: pointer; list-style: none; font-family: var(--display); font-size: 1rem; font-weight: 600; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary svg { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: var(--muted); stroke-width: 1.5; transition: transform 180ms ease, stroke 180ms ease; }
.accordion details[open] summary { color: var(--ink); }
.accordion details[open] summary svg { stroke: var(--lime); transform: rotate(180deg); }
.accordion p { max-width: 690px; margin: -7px 0 27px; color: var(--muted); font-size: 0.84rem; line-height: 1.75; }

.final-cta {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: radial-gradient(circle at 50% 60%, rgba(184, 255, 56, 0.095), transparent 35%), #050807;
}

.cta-grid { mask-image: radial-gradient(circle at center, black, transparent 67%); }
.cta-content { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; text-align: center; }
.cta-content h2 { margin: 23px 0 20px; font-family: var(--display); font-size: clamp(3rem, 6vw, 6rem); line-height: 0.95; letter-spacing: -0.07em; }
.cta-content h2 span { color: transparent; background: linear-gradient(95deg, var(--ink), var(--lime), var(--cyan)); -webkit-background-clip: text; background-clip: text; }
.cta-content > p { margin: 0; color: var(--muted); font-size: 1rem; }
.cta-actions { display: flex; align-items: center; gap: 18px; margin-top: 34px; }
.cta-actions > span { color: var(--muted); font-family: var(--mono); font-size: 0.54rem; text-transform: uppercase; }
.cta-signal span { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(184, 255, 56, 0.09); border-radius: 50%; transform: translate(-50%, -50%); }
.cta-signal span:nth-child(1) { width: 500px; height: 500px; }
.cta-signal span:nth-child(2) { width: 780px; height: 780px; }
.cta-signal span:nth-child(3) { width: 1080px; height: 1080px; }

.site-footer { color: var(--muted); border-top: 1px solid var(--line); background: #040605; }
.footer-top { display: grid; grid-template-columns: auto 1fr auto; gap: 50px; align-items: center; padding: 48px 0; }
.footer-top p { margin: 0; font-size: 0.76rem; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.7rem; transition: color 180ms ease; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0 25px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 0.48rem; letter-spacing: 0.07em; text-transform: uppercase; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 130ms; }
.reveal-delay-sm { transition-delay: 80ms; }

@keyframes ping {
  0% { opacity: 0.9; transform: scale(0.45); }
  75%, 100% { opacity: 0; transform: scale(1.45); }
}

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

@keyframes scan {
  0%, 100% { top: 8%; opacity: 0; }
  10%, 90% { opacity: 1; }
  50% { top: 92%; }
}

@keyframes execute {
  0% { width: 18%; }
  70%, 100% { width: 86%; }
}

@keyframes flow {
  from { transform: translateX(-15px); }
  to { transform: translateX(48px); }
}

@media (max-width: 1120px) {
  .hero-layout { grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr); gap: 30px; }
  .terminal-body { min-height: 430px; }
  .telegram-float-signal { left: -1%; }
  .telegram-float-executed { right: -1%; }
  .bot-experience-layout { gap: 70px; }
  .proof-monitor { right: -1%; }
  .proof-autosell { left: -1%; }
  .validation-card { grid-template-columns: 1fr; }
  .validation-card .bento-content { align-self: start; order: 0; }
  .validation-visual { position: absolute; right: 0; bottom: 0; width: 49%; height: 54%; }
  .contract-preview { right: -38px; }
  .execution-bento { grid-template-columns: 1fr 1.2fr; }
  .speed-label { right: 24px; bottom: 24px; }
}

@media (max-width: 960px) {
  :root { --shell: min(100% - 36px, 760px); }
  .section { padding: 100px 0; }
  .desktop-nav, .nav-login { display: none; }
  .menu-toggle { position: relative; display: block; }
  .mobile-nav { position: fixed; inset: 78px 0 auto; display: flex; visibility: hidden; flex-direction: column; padding: 20px 18px 30px; border-bottom: 1px solid var(--line); background: rgba(5, 8, 7, 0.97); opacity: 0; transform: translateY(-12px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms; }
  .mobile-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .mobile-nav a { padding: 16px 10px; color: var(--ink-soft); border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1rem; }
  .hero { padding-top: 140px; }
  .hero::before { display: none; }
  .hero-layout { grid-template-columns: 1fr; gap: 80px; }
  .hero-copy { max-width: 700px; }
  .hero h1 { font-size: clamp(4rem, 12vw, 6.3rem); }
  .hero-visual { width: min(100%, 660px); margin-inline: auto; }
  .terminal-card { transform: none; }
  .telegram-phone { transform: none; }
  .network-bar { align-items: flex-start; flex-direction: column; }
  .network-items { width: 100%; flex-wrap: wrap; }
  .bot-experience-layout { grid-template-columns: 1fr; gap: 70px; }
  .real-bot-visual { width: min(100%, 620px); margin-inline: auto; }
  .bot-experience-copy { max-width: 700px; }
  .bento-grid { grid-template-columns: 1fr; grid-template-rows: 670px 470px 390px; }
  .radar-card { grid-row: auto; }
  .radar-visual { width: min(62%, 390px); }
  .validation-card { grid-template-columns: 0.95fr 1.05fr; }
  .validation-visual { position: relative; width: auto; height: auto; }
  .contract-preview { right: -15px; width: 290px; }
  .workflow-layout, .security-layout, .faq-layout { grid-template-columns: 1fr; }
  .workflow-copy { display: grid; grid-template-columns: 1fr 1fr; column-gap: 50px; }
  .workflow-copy > .section-kicker, .workflow-copy > h2, .workflow-copy > p { grid-column: 1; }
  .workflow-list { grid-row: 1 / 5; grid-column: 2; margin-top: 0; align-self: end; }
  .workflow-console { min-height: 570px; }
  .strategy-board { grid-template-columns: 1fr; }
  .strategy-chart { border-right: 0; border-bottom: 1px solid var(--line); }
  .security-visual { min-height: 500px; order: 2; }
  .security-copy { max-width: 660px; }
  .faq-heading { position: static; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top p { grid-column: 1 / 3; grid-row: 2; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }
  .section { padding: 82px 0; }
  .nav-shell { min-height: 70px; }
  .button-small { display: none; }
  .mobile-nav { top: 70px; }
  .hero { min-height: auto; padding-top: 118px; }
  .hero h1 { margin-top: 22px; font-size: clamp(3.3rem, 17vw, 5rem); }
  .hero-lead { font-size: 0.94rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { margin-top: 42px; }
  .hero-proof > div { padding-right: 8px; }
  .hero-proof > div:not(:first-child) { padding-left: 12px; }
  .hero-proof strong { font-size: 0.98rem; }
  .hero-proof span { font-size: 0.46rem; line-height: 1.4; }
  .hero-visual { width: 100%; margin: 0; transform: none; }
  .telegram-stage { min-height: 640px; }
  .telegram-phone { width: min(100%, 362px); height: 650px; }
  .telegram-chat { height: 485px; }
  .telegram-float { min-width: 168px; padding: 9px 10px; transform: scale(0.86); }
  .telegram-float-signal { top: 16%; left: 0; transform-origin: left center; }
  .telegram-float-executed { right: 0; bottom: 11%; transform-origin: right center; }
  .terminal-body { min-height: 410px; grid-template-columns: 44px 1fr; }
  .terminal-main { padding: 15px 12px; }
  .terminal-rail { padding-top: 12px; }
  .analysis-grid { grid-template-columns: 1fr 0.7fr; }
  .signal-card { padding: 12px; }
  .signal-card p { margin-block: 11px; }
  .network-bar { margin-top: -10px; }
  .network-items { gap: 18px; }
  .network-items .network-separator { display: none; }
  .network-items .muted-network { display: none; }
  .bot-experience-layout { gap: 50px; }
  .real-bot-visual { min-height: 655px; }
  .real-bot-orbit { width: 390px; height: 390px; }
  .real-bot-orbit::before { width: 290px; height: 290px; }
  .real-bot-orbit::after { width: 470px; height: 470px; }
  .real-bot-frame { width: min(100%, 360px); }
  .real-bot-screen { height: 555px; }
  .product-proof { display: none; }
  .bot-experience-copy h2 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .bot-status-line { align-items: flex-start; flex-direction: column; gap: 9px; }
  .command-grid { grid-template-columns: 1fr; }
  .bot-experience-cta { width: 100%; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 42px; }
  .section-heading h2, .workflow-copy h2, .security-copy h2, .faq-heading h2 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .section-heading > p { font-size: 0.88rem; }
  .bento-grid { grid-template-rows: 610px 535px 465px; }
  .bento-content { padding: 25px; }
  .radar-visual { width: 78%; margin-top: 55px; }
  .validation-card { display: flex; flex-direction: column; align-items: stretch; }
  .validation-card .bento-content { padding-bottom: 10px; }
  .validation-visual { min-height: 255px; }
  .contract-preview { top: 52%; right: -12px; width: calc(100% - 30px); }
  .execution-bento { display: flex; flex-direction: column; align-items: stretch; }
  .execution-bento .top-content { padding-right: 25px; }
  .execution-bento .speed-label { display: none; }
  .route-visual { margin-top: 20px; }
  .workflow-copy { display: block; }
  .workflow-list { margin-top: 35px; }
  .workflow-layout { gap: 55px; }
  .workflow-console { min-height: 540px; }
  .console-orb { width: 185px; height: 185px; }
  .console-log > div { grid-template-columns: 78px 1fr auto; gap: 7px; font-size: 0.42rem; }
  .strategy-chart { padding: 22px 14px 17px; }
  .chart-header > div:first-child { flex-wrap: wrap; gap: 7px 10px; }
  .chart-legend { display: none; }
  .price-chart { height: 290px; }
  .target-line span { left: 2px; }
  .chart-footer { gap: 12px; }
  .chart-footer > span { font-size: 0.39rem; }
  .chart-footer > span:last-child { display: none; }
  .strategy-panel { padding: 25px 20px; }
  .security-layout { gap: 50px; }
  .security-visual { min-height: 430px; transform: scale(0.9); }
  .vault-rings span:nth-child(1) { width: 320px; height: 320px; }
  .vault-rings span:nth-child(2) { width: 235px; height: 235px; }
  .chip-one { left: 0; }
  .chip-two { right: -6%; }
  .chip-three { left: 2%; }
  .faq-layout { gap: 55px; }
  .accordion summary { min-height: 76px; font-size: 0.92rem; }
  .final-cta { min-height: 590px; }
  .cta-content h2 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .cta-content > p { max-width: 330px; font-size: 0.88rem; line-height: 1.6; }
  .cta-actions { align-items: stretch; flex-direction: column; }
  .footer-top { display: flex; align-items: flex-start; flex-direction: column; gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 18px 25px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
}

@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; }
  .reveal { opacity: 1; transform: none; }
  .terminal-card, .telegram-phone { transform: none !important; }
}
