:root {
  color-scheme: dark;
  --bg: #030b12;
  --bg-2: #07111b;
  --panel: rgba(10, 23, 32, 0.9);
  --panel-soft: rgba(12, 30, 42, 0.72);
  --line: rgba(128, 255, 55, 0.18);
  --line-cold: rgba(116, 176, 255, 0.18);
  --text: #f4f7f2;
  --muted: #9ca8b5;
  --dim: #657386;
  --green: #76ff22;
  --green-2: #38d615;
  --blue: #36a3ff;
  --violet: #b552ff;
  --red: #ff4a2e;
  --yellow: #ffc247;
  --shadow-green: 0 0 24px rgba(118, 255, 34, 0.35);
  --radius: 8px;
  --font: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 10%, rgba(54, 163, 255, 0.08), transparent 25%),
    radial-gradient(circle at 60% 42%, rgba(118, 255, 34, 0.09), transparent 24%),
    linear-gradient(180deg, #030910 0%, #06121c 42%, #050d15 100%);
  color: var(--text);
  font-family: var(--font);
  font-variant-numeric: tabular-nums;
  line-height: 1.35;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(126, 255, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 255, 40, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.25));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 4px);
  opacity: 0.55;
}

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

.topbar,
.brand,
.nav-links,
.top-actions,
.btn {
  font-family: var(--font);
}

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

.page-shell {
  width: min(1500px, calc(100vw - 40px));
  margin: 0 auto;
}

.topbar {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(127, 158, 180, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--green);
  filter: drop-shadow(0 0 12px rgba(118, 255, 34, 0.35));
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: rgba(53, 255, 23, 0.08);
  stroke: currentColor;
  stroke-width: 2;
}

.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1;
}

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

.brand small {
  display: block;
  margin-top: 2px;
  color: #c2c9d2;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  color: #d9dde2;
  font-size: 15px;
  font-weight: 650;
}

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

.nav-links a:hover,
.footer a:hover {
  color: var(--green);
  text-shadow: 0 0 14px rgba(118, 255, 34, 0.32);
}

.nav-active {
  color: var(--green);
  text-shadow: 0 0 14px rgba(118, 255, 34, 0.32);
}

.top-actions {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 28px;
  border: 1px solid rgba(157, 187, 208, 0.28);
  border-radius: 7px;
  color: #f4f8f2;
  font-weight: 800;
  white-space: nowrap;
  background: rgba(10, 20, 32, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  border-color: rgba(118, 255, 34, 0.9);
  background:
    linear-gradient(180deg, rgba(154, 255, 57, 0.95), rgba(44, 177, 17, 0.82)),
    #4bdc11;
  color: #f8fff4;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.22), 0 0 20px rgba(118, 255, 34, 0.48);
}

.btn-primary:hover {
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.27), 0 0 30px rgba(118, 255, 34, 0.64);
}

.btn-ghost {
  min-width: 112px;
}

.btn-wide {
  min-width: 205px;
}

.btn-demo {
  min-width: 188px;
  gap: 12px;
  color: #c9d2db;
}

.play-icon {
  width: 22px;
  height: 22px;
  border: 2px solid #d7dee8;
  border-radius: 999px;
  position: relative;
}

.play-icon::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 8px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #d7dee8;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.98fr) minmax(620px, 1.38fr);
  gap: 42px;
  align-items: center;
  min-height: 335px;
  padding: 20px 0 15px;
  border-bottom: 1px solid rgba(127, 158, 180, 0.15);
}

.hero::before {
  content: "";
  position: absolute;
  left: 28%;
  top: 46px;
  width: 290px;
  height: 170px;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 9%, rgba(118, 255, 34, 0.55) 9.5% 10.5%, transparent 11% 23%, rgba(118, 255, 34, 0.7) 23.5% 24.5%, transparent 25% 38%, rgba(118, 255, 34, 0.55) 38.5% 39.5%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(255, 194, 71, 0.6) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 32%, rgba(118, 255, 34, 0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 62%, rgba(118, 255, 34, 0.52) 0 1px, transparent 2px);
  opacity: 0.68;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  color: #f7f8f4;
  font-size: clamp(42px, 4.6vw, 58px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--green);
  text-shadow: 0 0 24px rgba(118, 255, 34, 0.42);
}

.hero-copy p {
  max-width: 570px;
  margin: 18px 0 0;
  color: #b4bfca;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  margin: 20px 0 0;
  color: #9faaba;
  list-style: none;
  font-size: 12px;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.solana-ribbon {
  display: inline-block;
  width: 21px;
  height: 16px;
  background:
    linear-gradient(135deg, #34e8ff 0 32%, transparent 32% 42%, #8f63ff 42% 64%, transparent 64% 74%, #76ff22 74%);
  transform: skewX(-12deg);
  border-radius: 2px;
}

.mini-icon {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.pulse-dot::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(118, 255, 34, 0.8);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(118, 255, 34, 0.65);
  border-radius: 50%;
}

.shield-dot {
  border: 1.5px solid var(--green);
  clip-path: polygon(50% 0, 92% 16%, 84% 68%, 50% 100%, 16% 68%, 8% 16%);
  background: rgba(118, 255, 34, 0.1);
}

.terminal-preview {
  position: relative;
  padding: 14px 14px 16px;
  border: 1px solid rgba(118, 255, 34, 0.42);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(8, 20, 30, 0.96), rgba(6, 16, 25, 0.93)),
    var(--panel);
  box-shadow: 0 0 26px rgba(118, 255, 34, 0.12), inset 0 0 28px rgba(118, 255, 34, 0.04);
}

.terminal-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background-image: linear-gradient(rgba(118, 255, 34, 0.035) 1px, transparent 1px);
  background-size: 100% 4px;
}

.terminal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 9px;
}

.terminal-head strong {
  display: block;
  color: var(--green);
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
}

.terminal-head span {
  display: block;
  margin-top: 3px;
  color: #8c99a6;
  font-size: 11px;
}

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

.mode-panel,
.stop-panel,
.filters-card,
.mode-state,
.metric,
.feature-card,
.mode-card,
.preview-card {
  border: 1px solid rgba(118, 149, 174, 0.2);
  border-radius: var(--radius);
  background: rgba(11, 26, 38, 0.75);
}

.mode-panel {
  padding: 9px 10px;
}

.label,
.metric span,
.panel-title span,
.mode-state > span {
  color: #8d9ba8;
  font-size: 11px;
  text-transform: uppercase;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 8px;
}

.segmented-control button {
  min-height: 29px;
  border: 1px solid rgba(128, 158, 181, 0.18);
  border-radius: 6px;
  color: #aeb9c5;
  background: rgba(5, 14, 23, 0.78);
  font-size: 12px;
  font-weight: 750;
}

.segmented-control .active {
  border-color: rgba(118, 255, 34, 0.78);
  color: #f7fff1;
  background: linear-gradient(180deg, rgba(116, 255, 33, 0.62), rgba(34, 124, 23, 0.62));
  box-shadow: 0 0 20px rgba(118, 255, 34, 0.45);
}

.segmented-control .locked {
  color: #818d99;
}

.lock-mini {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 8px;
  margin-left: 6px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  vertical-align: -1px;
}

.lock-mini::before {
  content: "";
  position: absolute;
  left: 1px;
  top: -7px;
  width: 6px;
  height: 7px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.stop-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  border-color: rgba(255, 74, 46, 0.66);
  color: var(--red);
  text-transform: uppercase;
  font-size: 11px;
}

.toggle-off {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 74px;
  height: 24px;
  margin-top: 8px;
  padding: 3px 9px 3px 4px;
  border: 1px solid rgba(255, 74, 46, 0.65);
  border-radius: 999px;
  color: #e4e9ee;
  background: rgba(8, 12, 18, 0.86);
}

.toggle-off span {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e4ecef, #8a98a2);
}

.bot-status {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr 1.15fr 0.42fr 0.42fr 0.9fr;
  gap: 0;
  margin-top: 9px;
  padding: 7px 8px;
  border: 1px solid rgba(92, 138, 172, 0.16);
  border-radius: 7px;
  background: rgba(7, 18, 29, 0.66);
}

.bot-status span {
  min-width: 0;
  padding: 0 8px;
  border-right: 1px solid rgba(115, 145, 168, 0.13);
  color: var(--green);
  font-size: 10px;
  line-height: 1.3;
}

.bot-status span:last-child {
  border-right: 0;
}

.bot-status b {
  display: block;
  color: #7e8b98;
  font-weight: 650;
}

.bot-status .danger,
.danger {
  color: var(--red);
}

.stat-grid {
  display: grid;
  grid-template-columns: 1.32fr 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.metric {
  position: relative;
  min-height: 66px;
  padding: 10px 10px 8px;
  overflow: hidden;
}

.metric strong {
  display: block;
  margin-top: 2px;
  color: var(--green);
  font-size: 25px;
  line-height: 1;
}

.metric small {
  color: var(--green);
  font-weight: 800;
  font-size: 12px;
}

.metric.blue strong,
.metric.blue small {
  color: var(--blue);
}

.spark,
.wide-chart,
.mini-chart,
.cta-chart {
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(118, 255, 34, 0.6));
}

.spark {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 68px;
  height: 26px;
}

.coin-stack,
.bars {
  position: absolute;
  right: 14px;
  bottom: 11px;
}

.coin-stack {
  width: 28px;
  height: 27px;
  border: 3px solid var(--green);
  border-top-width: 4px;
  border-radius: 50% / 18%;
  box-shadow: inset 0 -8px 0 rgba(118, 255, 34, 0.16), 0 0 12px rgba(118, 255, 34, 0.4);
}

.coin-stack::before,
.coin-stack::after {
  content: "";
  position: absolute;
  left: -3px;
  width: 28px;
  height: 10px;
  border: 3px solid var(--green);
  border-top: 0;
  border-radius: 0 0 50% 50%;
}

.coin-stack::before {
  top: 7px;
}

.coin-stack::after {
  top: 16px;
}

.bars {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 28px;
}

.bars i {
  width: 5px;
  border: 2px solid var(--blue);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 0 8px rgba(54, 163, 255, 0.5);
}

.bars i:nth-child(1) { height: 15px; }
.bars i:nth-child(2) { height: 25px; }
.bars i:nth-child(3) { height: 20px; }
.bars i:nth-child(4) { height: 28px; }

.dashboard-bottom {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.filters-card,
.mode-state {
  padding: 10px;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.panel-title button {
  min-height: 20px;
  border: 1px solid rgba(139, 165, 186, 0.2);
  border-radius: 5px;
  color: #aab5c1;
  background: rgba(16, 35, 49, 0.88);
  font-size: 10px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}

.filter-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(118, 255, 34, 0.32);
  border-radius: 5px;
  color: var(--green);
  background: rgba(83, 255, 25, 0.08);
  font-size: 10px;
  font-weight: 750;
}

.mode-state p {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 6px;
  margin: 7px 0 0;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(130, 159, 180, 0.12);
  color: #aeb9c4;
  font-size: 11px;
}

.mode-state p:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.mode-state b {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 8px rgba(118, 255, 34, 0.8);
}

.mode-state b.is-pulsing,
.pulse-dot.is-pulsing::after {
  box-shadow: 0 0 14px rgba(118, 255, 34, 0.95);
  transform: scale(1.12);
}

.mode-state em {
  color: var(--green);
  font-style: normal;
  font-weight: 750;
}

.mode-state .locked b,
.mode-state .locked em {
  background: var(--red);
  color: var(--red);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 8px 0 8px;
  border-bottom: 1px solid rgba(127, 158, 180, 0.15);
}

.feature-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  min-height: 69px;
  padding: 13px 15px;
}

.feature-card h2 {
  margin: 0 0 3px;
  color: var(--green);
  font-size: 15px;
  line-height: 1.1;
}

.feature-card p {
  margin: 0;
  color: #b1bdc8;
  font-size: 13px;
}

.feature-icon,
.mode-icon {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  color: var(--green);
}

.feature-icon::before,
.feature-icon::after,
.mode-icon::before,
.mode-icon::after {
  content: "";
  position: absolute;
}

.feature-icon.shield {
  border: 3px solid currentColor;
  clip-path: polygon(50% 0, 92% 15%, 84% 66%, 50% 100%, 16% 66%, 8% 15%);
  background: rgba(118, 255, 34, 0.08);
}

.feature-icon.shield::after {
  inset: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.feature-icon.check {
  border: 3px solid currentColor;
  border-radius: 50%;
}

.feature-icon.check::after {
  left: 12px;
  top: 9px;
  width: 16px;
  height: 9px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.feature-icon.chart {
  border: 3px solid currentColor;
  border-radius: 8px;
}

.feature-icon.chart::after {
  left: 8px;
  top: 22px;
  width: 24px;
  height: 12px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: skewY(-34deg);
}

.feature-icon.gate {
  border: 3px solid currentColor;
  border-radius: 8px;
}

.feature-icon.gate::before {
  left: 8px;
  top: 7px;
  width: 24px;
  height: 6px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.feature-icon.gate::after {
  left: 18px;
  top: 9px;
  width: 3px;
  height: 24px;
  background: currentColor;
}

.feature-icon.bell::before {
  left: 8px;
  top: 7px;
  width: 26px;
  height: 27px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 16px 16px 4px 4px;
}

.feature-icon.bell::after {
  left: 16px;
  bottom: 2px;
  width: 10px;
  height: 10px;
  border-bottom: 3px solid currentColor;
  border-radius: 50%;
}

.modes {
  padding: 5px 0 10px;
}

.modes h2,
.platform h2 {
  margin: 0 0 4px;
  text-align: center;
  color: #f3f6f0;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 950;
}

.modes h2 span,
.cta-copy span {
  color: var(--green);
}

.mode-cards {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.mode-card {
  position: relative;
  min-height: 122px;
  padding: 16px 18px 14px 64px;
}

.mode-card h3 {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 17px;
}

.mode-card p,
.mode-card li {
  color: #b5c0cb;
  font-size: 13px;
}

.mode-card p {
  margin: 0 0 8px;
}

.mode-card ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mode-card li {
  position: relative;
  padding-left: 17px;
}

.mode-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 8px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.mode-icon {
  position: absolute;
  left: 20px;
  top: 18px;
}

.lens {
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.lens::after {
  width: 22px;
  height: 3px;
  right: -14px;
  bottom: 0;
  background: var(--blue);
  transform: rotate(45deg);
  transform-origin: left center;
}

.paper {
  border-color: rgba(118, 255, 34, 0.65);
  background: linear-gradient(90deg, rgba(18, 77, 35, 0.7), rgba(8, 35, 31, 0.78));
  box-shadow: 0 0 24px rgba(118, 255, 34, 0.24), inset 0 0 28px rgba(118, 255, 34, 0.08);
}

.paper h3,
.paper li,
.paper p {
  color: #caffb0;
}

.growth::before {
  left: 5px;
  bottom: 5px;
  width: 31px;
  height: 24px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
}

.growth::after {
  left: 9px;
  top: 8px;
  width: 28px;
  height: 18px;
  border-top: 4px solid var(--green);
  border-right: 4px solid var(--green);
  transform: skewY(-32deg);
}

.recommend-badge {
  position: absolute;
  top: 10px;
  right: 14px;
  min-height: 22px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #dfffd3;
  background: rgba(117, 255, 34, 0.22);
  font-size: 10px;
  font-weight: 800;
}

.real {
  border-color: rgba(181, 82, 255, 0.48);
  background: rgba(26, 19, 43, 0.78);
}

.real h3,
.real li::before,
.lock {
  color: var(--violet);
}

.lock::before {
  left: 9px;
  top: 18px;
  width: 25px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.lock::after {
  left: 15px;
  top: 6px;
  width: 14px;
  height: 16px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 11px 11px 0 0;
}

.platform {
  padding: 0 0 10px;
}

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

.preview-card {
  min-height: 114px;
  padding: 11px 12px;
  border-color: rgba(194, 214, 49, 0.32);
  overflow: hidden;
}

.preview-head {
  margin-bottom: 8px;
  text-align: center;
}

.preview-head span {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.preview-head small {
  color: #9cabb6;
  font-size: 11px;
}

.fake-table {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.6fr 0.8fr 0.8fr;
  gap: 4px 8px;
  font-size: 8px;
  color: #9eacb8;
}

.fake-table span {
  min-height: 14px;
  padding: 2px 4px;
  border-bottom: 1px solid rgba(127, 158, 180, 0.12);
}

.fake-table span:nth-child(5n + 3),
.fake-table span:nth-child(5n + 4),
.fake-table span:nth-child(5n + 5) {
  color: var(--green);
}

.fake-table span:nth-last-child(1) {
  color: var(--red);
}

.token-layout {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 9px;
  align-items: center;
}

.token-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #ecfff0;
  background: radial-gradient(circle, #baff89, #38c416);
  font-weight: 950;
}

.token-layout b {
  display: block;
  color: #d7e6dc;
  font-size: 11px;
}

.token-layout small,
.token-price {
  color: var(--green);
  font-size: 10px;
}

.mini-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.mini-metrics span {
  padding: 5px 5px;
  border: 1px solid rgba(118, 255, 34, 0.16);
  border-radius: 5px;
  color: var(--green);
  background: rgba(118, 255, 34, 0.06);
  font-size: 8px;
  text-align: center;
}

.mini-chart {
  grid-column: 1 / -1;
  width: 100%;
  height: 28px;
}

.fake-terminal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.fake-terminal div {
  padding: 6px 7px;
  border: 1px solid rgba(127, 158, 180, 0.14);
  border-radius: 5px;
  background: rgba(4, 12, 20, 0.52);
}

.fake-terminal span {
  display: block;
  color: #82909d;
  font-size: 8px;
}

.fake-terminal b {
  color: var(--green);
  font-size: 10px;
}

.wide-chart {
  display: block;
  width: 100%;
  height: 33px;
  margin-top: 6px;
}

.positions-list {
  display: grid;
  gap: 7px;
}

.positions-list p {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  margin: 0;
  padding: 6px 8px;
  border: 1px solid rgba(127, 158, 180, 0.13);
  border-radius: 5px;
  color: #b8c3cf;
  font-size: 10px;
}

.positions-list b,
.positions-list em {
  color: var(--green);
  font-style: normal;
}

.positions-list .down {
  color: var(--red);
}

.cta-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  margin: 0 0 4px;
  padding: 12px 130px 12px 190px;
  border: 1px solid rgba(118, 255, 34, 0.45);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(8, 20, 30, 0.84);
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  margin: 0;
  color: #f9f7f2;
  font-size: clamp(25px, 2.3vw, 33px);
  line-height: 1.08;
  font-weight: 950;
}

.cta-copy p {
  max-width: 750px;
  margin: 6px 0 0;
  color: #aab5c0;
  font-size: 13px;
}

.cta-action {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
}

.cta-action small {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #bcc7d0;
  font-weight: 700;
}

.cta-chart {
  position: absolute;
  z-index: 0;
  width: 340px;
  opacity: 0.5;
}

.green-line {
  left: 36px;
  bottom: 7px;
}

.violet-line {
  right: 450px;
  bottom: 8px;
  stroke: var(--violet);
  filter: drop-shadow(0 0 8px rgba(181, 82, 255, 0.55));
}

.footer {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr 1.15fr 1.45fr;
  gap: 34px;
  min-height: 82px;
  padding: 10px 80px 16px;
  border-top: 1px solid rgba(127, 158, 180, 0.15);
}

.footer-brand p,
.footer-brand small,
.social-col p {
  color: #8995a4;
  font-size: 11px;
}

.footer-brand p {
  max-width: 320px;
  margin: 11px 0 4px;
}

.footer h3 {
  margin: 0 0 7px;
  color: #f0f3ee;
  font-size: 13px;
}

.footer-col,
.social-col {
  display: grid;
  align-content: start;
  gap: 3px;
}

.footer-col a {
  color: #9aa6b3;
  font-size: 12px;
}

.social-icons {
  display: flex;
  gap: 11px;
}

.social-icons a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(146, 169, 190, 0.22);
  border-radius: 50%;
  color: #d9e1e9;
  background: rgba(10, 23, 32, 0.7);
}

.social-icons span {
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.social-col p {
  display: flex;
  gap: 8px;
  max-width: 240px;
  margin: 10px 0 0;
}

.features-page {
  padding-bottom: 16px;
}

.features-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 28px;
  align-items: stretch;
  padding: 32px 0 22px;
  border-bottom: 1px solid rgba(127, 158, 180, 0.15);
}

.features-hero-copy,
.feature-terminal,
.seo-section,
.seo-card,
.warning-section {
  border: 1px solid rgba(118, 255, 34, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(10, 24, 34, 0.88), rgba(5, 15, 24, 0.88)),
    var(--panel);
  box-shadow: inset 0 0 24px rgba(118, 255, 34, 0.035);
}

.features-hero-copy {
  padding: clamp(22px, 3vw, 34px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(118, 255, 34, 0.28);
  border-radius: 999px;
  color: var(--green);
  background: rgba(118, 255, 34, 0.07);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.features-hero h1 {
  max-width: 980px;
  margin: 18px 0 16px;
  color: #f7f8f4;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.04;
  font-weight: 950;
}

.features-hero p,
.seo-section p,
.seo-card p,
.warning-section p {
  color: #b5c1cb;
  font-size: 16px;
  line-height: 1.62;
}

.features-hero p {
  max-width: 980px;
  margin: 0 0 12px;
}

.feature-terminal {
  position: relative;
  padding: 18px;
  overflow: hidden;
}

.feature-terminal::after,
.seo-section::after,
.seo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(118, 255, 34, 0.026) 1px, transparent 1px);
  background-size: 100% 5px;
  opacity: 0.65;
}

.feature-terminal,
.seo-section,
.seo-card {
  position: relative;
}

.feature-terminal > *,
.seo-section > *,
.seo-card > * {
  position: relative;
  z-index: 1;
}

.feature-matrix {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.feature-matrix p {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(127, 158, 180, 0.15);
  border-radius: 6px;
  background: rgba(4, 12, 20, 0.5);
}

.feature-matrix span {
  color: #8f9daa;
}

.feature-matrix b {
  color: var(--green);
  text-transform: uppercase;
}

.features-toc {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 0;
  background: rgba(3, 11, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(127, 158, 180, 0.12);
}

.features-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid rgba(127, 158, 180, 0.18);
  border-radius: 999px;
  color: #b7c3ce;
  background: rgba(9, 22, 32, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.features-toc a:hover {
  border-color: rgba(118, 255, 34, 0.45);
  color: var(--green);
}

.seo-section,
.warning-section {
  margin-top: 18px;
  padding: clamp(22px, 3vw, 34px);
}

.seo-section h2,
.seo-card h2,
.warning-section h2 {
  margin: 12px 0 12px;
  color: #f5f8f2;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.15;
}

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

.seo-card {
  padding: 22px;
}

.seo-card.wide-card {
  grid-column: span 2;
}

.seo-card ul,
.seo-card ol {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  padding-left: 22px;
  color: #b5c1cb;
  line-height: 1.5;
}

.seo-card li::marker {
  color: var(--green);
}

.check-grid,
.data-grid,
.terminal-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.check-grid span,
.data-grid span,
.terminal-list span {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid rgba(118, 255, 34, 0.18);
  border-radius: 6px;
  color: #d8e3da;
  background: rgba(118, 255, 34, 0.055);
  font-size: 13px;
}

.check-grid span::before,
.data-grid span::before,
.terminal-list span::before {
  content: ">";
  margin-right: 8px;
  color: var(--green);
  font-weight: 950;
}

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

.terminal-section {
  border-color: rgba(118, 255, 34, 0.32);
  box-shadow: 0 0 24px rgba(118, 255, 34, 0.1), inset 0 0 24px rgba(118, 255, 34, 0.035);
}

.feature-modes {
  margin-top: 18px;
  padding-top: 18px;
}

.feature-modes h2 {
  margin-bottom: 14px;
}

.emergency-card {
  border-color: rgba(255, 74, 46, 0.32);
  background: linear-gradient(180deg, rgba(42, 17, 19, 0.82), rgba(12, 18, 27, 0.9));
}

.emergency-card h2,
.warning-section h2 {
  color: #ff9b8e;
}

.warning-section {
  border-color: rgba(255, 74, 46, 0.32);
  background: linear-gradient(180deg, rgba(42, 17, 19, 0.74), rgba(8, 16, 26, 0.92));
}

.features-cta {
  margin-top: 18px;
}

@media (max-width: 1260px) {
  .page-shell {
    width: min(1120px, calc(100vw - 28px));
  }

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

  .nav-links {
    display: none;
  }

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

  .hero::before {
    left: auto;
    right: 8%;
  }

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

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

  .check-grid,
  .data-grid,
  .terminal-list,
  .check-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-strip .feature-card:last-child {
    grid-column: 1 / -1;
  }

  .mode-cards {
    gap: 16px;
  }

  .cta-band,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 20px, 720px);
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 12px;
    padding: 12px 0;
  }

  .top-actions {
    justify-content: start;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 0;
    padding-top: 20px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .trust-row,
  .hero-actions {
    align-items: stretch;
  }

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

  .btn {
    width: 100%;
  }

  .terminal-grid,
  .dashboard-bottom,
  .stat-grid,
  .mode-cards,
  .feature-strip,
  .preview-grid,
  .seo-grid,
  .check-grid,
  .data-grid,
  .terminal-list,
  .check-grid.compact,
  .cta-band,
  .footer {
    grid-template-columns: 1fr;
  }

  .seo-card.wide-card {
    grid-column: auto;
  }

  .features-toc {
    position: static;
  }

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

  .feature-strip .feature-card:last-child {
    grid-column: auto;
  }

  .mode-card {
    padding-left: 72px;
  }

  .cta-band {
    padding: 20px;
  }

  .cta-chart {
    display: none;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 15px;
  }

  .terminal-preview {
    padding: 10px;
  }

  .segmented-control,
  .bot-status,
  .mini-metrics {
    grid-template-columns: 1fr;
  }

  .bot-status span {
    border-right: 0;
    border-bottom: 1px solid rgba(115, 145, 168, 0.13);
    padding: 5px 0;
  }

  .bot-status span:last-child {
    border-bottom: 0;
  }

  .feature-card {
    grid-template-columns: 40px 1fr;
    padding: 12px;
  }
}
