﻿:root {
  --bg: #050714;
  --bg-2: #070b1f;
  --surface: rgba(7, 12, 30, 0.88);
  --surface-strong: rgba(7, 12, 30, 0.96);
  --card: rgba(10, 16, 36, 0.92);
  --border: rgba(110, 150, 255, 0.2);
  --border-strong: rgba(70, 240, 255, 0.35);
  --accent: #46f0ff;
  --accent-2: #7bffcf;
  --accent-soft: rgba(70, 240, 255, 0.18);
  --text-main: #f5f7ff;
  --text-muted: #9aa3c4;
  --success: #35ffb0;
  --danger: #ff6b81;
  --shadow-lg: 0 30px 80px rgba(2, 6, 20, 0.75);
  --shadow-md: 0 20px 50px rgba(2, 6, 20, 0.55);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --section-pad: clamp(56px, 10vh, 120px);
  --content-max: clamp(1100px, 88vw, 1680px);
  --page-pad: clamp(18px, 3vw, 56px);
  --hero-min: clamp(520px, 75vh, 820px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 10% 15%, rgba(70, 240, 255, 0.14), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(123, 255, 207, 0.12), transparent 40%),
    linear-gradient(160deg, var(--bg), var(--bg-2));
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(70, 240, 255, 0.6);
  outline-offset: 2px;
}

button {
  font-family: inherit;
  color: inherit;
}

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

section,
.anchor {
  scroll-margin-top: 110px;
}

.anchor {
  display: block;
  height: 1px;
  width: 100%;
}

.container {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding-inline: var(--page-pad);
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.65;
  z-index: 0;
  pointer-events: none;
}

.bg-orb-one {
  width: 520px;
  height: 520px;
  top: -120px;
  left: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(70, 240, 255, 0.45), transparent 65%);
}

.bg-orb-two {
  width: 620px;
  height: 620px;
  right: -200px;
  top: 20vh;
  background: radial-gradient(circle at 40% 40%, rgba(123, 255, 207, 0.35), transparent 68%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(120, 140, 200, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 140, 200, 0.16) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gridMove 40s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='3' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.8'/%3E%3C/svg%3E");
  z-index: 0;
}

@keyframes gridMove {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 56px, 56px 0;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 9, 24, 0.78);
  border-bottom: 1px solid rgba(110, 150, 255, 0.15);
  backdrop-filter: blur(16px);
}

.nav-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-3);
  padding-block: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #020511;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 0 24px rgba(70, 240, 255, 0.55);
}

.logo-type {
  display: grid;
  gap: 2px;
}

.logo-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.logo-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}

.site-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
  border-color: rgba(70, 240, 255, 0.3);
  background: rgba(7, 13, 34, 0.5);
  color: var(--text-main);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.nav-cta {
  padding-inline: 18px;
}

.nav-toggle {
  appearance: none;
  border: 1px solid rgba(70, 240, 255, 0.35);
  background: rgba(5, 12, 30, 0.75);
  border-radius: 12px;
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle:hover {
  border-color: rgba(70, 240, 255, 0.6);
  background: rgba(5, 12, 30, 0.9);
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
}

.mobile-nav {
  display: grid;
  gap: 10px;
  padding: 0 var(--page-pad);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.2s ease, opacity 0.2s ease;
  background: rgba(4, 9, 24, 0.92);
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(110, 150, 255, 0.2);
  background: rgba(7, 13, 34, 0.7);
  font-size: 14px;
}

.mobile-nav a:hover {
  border-color: rgba(70, 240, 255, 0.4);
  background: rgba(7, 13, 34, 0.9);
}

body.nav-open .mobile-nav {
  max-height: 540px;
  opacity: 1;
  pointer-events: auto;
  padding-bottom: 20px;
}

.market-ticker {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(110, 150, 255, 0.18);
  background: linear-gradient(180deg, rgba(7, 11, 31, 0.88), rgba(5, 7, 20, 0.6));
}

.ticker-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0 16px;
}

.ticker-row {
  display: grid;
  grid-template-columns: minmax(90px, 140px) 1fr;
  align-items: center;
  gap: 18px;
}

.ticker-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ticker {
  position: relative;
  overflow: hidden;
  padding: 6px 0;
  border-radius: 999px;
  background: rgba(7, 12, 30, 0.65);
  border: 1px solid rgba(110, 150, 255, 0.2);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 36s linear infinite;
}

.ticker-track-slow {
  animation-duration: 48s;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  white-space: nowrap;
  border-right: 1px solid rgba(110, 150, 255, 0.2);
  font-size: 13px;
}

.ticker-symbol {
  font-weight: 600;
  color: var(--text-main);
}

.ticker-price {
  color: var(--text-muted);
}

.ticker-change {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 999px;
}

.ticker-change.up {
  color: var(--success);
  background: rgba(53, 255, 176, 0.12);
}

.ticker-change.down {
  color: var(--danger);
  background: rgba(255, 107, 129, 0.12);
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #8ff8ff, #46f0ff);
  color: #020712;
  box-shadow: 0 16px 36px rgba(23, 196, 233, 0.55);
}

.btn-ghost {
  border: 1px solid rgba(110, 150, 255, 0.4);
  color: var(--text-main);
  background: rgba(5, 12, 30, 0.4);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(3, 12, 34, 0.8);
}

.hero {
  position: relative;
  padding-block: var(--section-pad);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  min-height: var(--hero-min);
}

.hero-copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.accent-text {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 20px;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-inline-size: 60ch;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--accent), #0cb3ff);
  box-shadow: 0 0 12px rgba(70, 240, 255, 0.9);
}

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

.hero-meta {
  font-size: 13px;
  color: var(--text-muted);
  max-inline-size: 60ch;
}

.hero-meta a {
  color: var(--accent);
}

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

.terminal-card {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 0%, rgba(93, 255, 210, 0.2), transparent 60%),
    radial-gradient(circle at 100% 0%, rgba(70, 240, 255, 0.28), transparent 55%),
    linear-gradient(145deg, rgba(6, 10, 30, 0.96), rgba(6, 12, 34, 0.96));
  border: 1px solid rgba(119, 155, 255, 0.45);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.terminal-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, rgba(70, 240, 255, 0), rgba(70, 240, 255, 0.18), rgba(123, 255, 207, 0));
  opacity: 0.7;
  animation: sheen 3.6s ease-in-out infinite;
  pointer-events: none;
}

.terminal-card > * {
  position: relative;
  z-index: 1;
}

.terminal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.terminal-badge {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(123, 255, 207, 0.5);
  background: rgba(13, 228, 172, 0.12);
  color: var(--accent-2);
  font-size: 10px;
}

.terminal-body {
  display: grid;
  gap: 10px;
}

.terminal-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  font-size: 13px;
}

.terminal-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  color: var(--text-muted);
}

.terminal-value {
  color: var(--text-main);
}

.terminal-value.accent {
  color: var(--accent-2);
  font-weight: 600;
}

.terminal-value.warn {
  color: var(--danger);
}

.terminal-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 70px;
  margin-top: 8px;
}

.terminal-bar {
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(70, 240, 255, 0.9), rgba(70, 240, 255, 0.2));
}

.terminal-chart .terminal-bar:nth-child(1) { height: 72%; }
.terminal-chart .terminal-bar:nth-child(2) { height: 58%; }
.terminal-chart .terminal-bar:nth-child(3) { height: 82%; }
.terminal-chart .terminal-bar:nth-child(4) { height: 46%; }
.terminal-chart .terminal-bar:nth-child(5) { height: 68%; }
.terminal-chart .terminal-bar:nth-child(6) { height: 54%; }

.terminal-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(70, 240, 255, 0.9);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes sheen {
  0% { transform: translateX(-60%); opacity: 0.2; }
  50% { transform: translateX(20%); opacity: 0.8; }
  100% { transform: translateX(60%); opacity: 0.2; }
}

@keyframes pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

.trust {
  padding-bottom: var(--section-pad);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.trust-card {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px rgba(2, 6, 20, 0.6);
}

.trust-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.trust-value {
  font-size: 24px;
  font-weight: 600;
  margin: 6px 0 4px;
}

.trust-note {
  font-size: 13px;
  color: var(--text-muted);
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  max-inline-size: 70ch;
}

.kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--text-muted);
}

.telegram-section,
.features,
.live-board,
.market-pulse,
.how {
  padding-block: var(--section-pad);
  position: relative;
  z-index: 1;
}

.telegram-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid rgba(110, 150, 255, 0.3);
  box-shadow: var(--shadow-lg);
}

.telegram-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.feed-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.feed-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feed-status {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.feed-badge {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(70, 240, 255, 0.4);
  background: rgba(70, 240, 255, 0.12);
  color: var(--accent);
  font-size: 10px;
}

.feed-top {
  border-radius: 999px;
  border: 1px solid rgba(110, 150, 255, 0.35);
  background: rgba(5, 12, 30, 0.6);
  color: var(--text-main);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  cursor: pointer;
}

.feed-top:hover {
  border-color: rgba(70, 240, 255, 0.55);
  background: rgba(5, 12, 30, 0.85);
}

.telegram-feed-wrap {
  position: relative;
}

.telegram-feed {
  height: clamp(280px, 42vh, 380px);
  overflow-y: auto;
  display: grid;
  gap: 12px;
  padding: 8px 10px 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(70, 240, 255, 0.35) rgba(7, 13, 34, 0.9);
}

.telegram-feed::-webkit-scrollbar {
  width: 6px;
}

.telegram-feed::-webkit-scrollbar-thumb {
  background: rgba(70, 240, 255, 0.3);
  border-radius: 999px;
}

.telegram-feed::-webkit-scrollbar-track {
  background: rgba(7, 13, 34, 0.6);
}

.feed-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 30px;
  pointer-events: none;
}

.feed-fade-top {
  top: 0;
  background: linear-gradient(180deg, rgba(7, 12, 30, 0.95), transparent);
}

.feed-fade-bottom {
  bottom: 0;
  background: linear-gradient(0deg, rgba(7, 12, 30, 0.95), transparent);
}

.telegram-feed .news-item {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(5, 10, 28, 0.9);
  border: 1px solid rgba(110, 150, 255, 0.18);
  display: grid;
  gap: 8px;
}

.telegram-feed .news-item-title {
  font-size: 14px;
  font-weight: 600;
}

.telegram-feed .news-text {
  font-size: 13px;
  color: var(--text-muted);
  white-space: pre-wrap;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.telegram-feed .news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.news-source {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(70, 240, 255, 0.3);
  color: var(--accent);
  font-size: 9px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid rgba(110, 150, 255, 0.2);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 55px rgba(2, 6, 20, 0.6);
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #020712;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.feature-card h3 {
  margin: 0;
  font-size: 16px;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.ai-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(110, 150, 255, 0.18);
  background: rgba(4, 10, 32, 0.9);
  padding: 14px;
  display: grid;
  gap: 10px;
  overflow: hidden;
}

.ai-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.ai-card-name {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ai-card-name strong {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
  line-height: 1.15;
}

.ai-card-name span {
  font-size: 11px;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-chip {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid rgba(123, 255, 207, 0.25);
  background: rgba(5, 13, 40, 0.75);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.tv-wrap {
  border-radius: 14px;
  border: 1px solid rgba(110, 150, 255, 0.14);
  background: rgba(3, 9, 35, 0.7);
  overflow: hidden;
  min-height: 220px;
}

.tv-wrap .tradingview-widget-container,
.tv-wrap .tradingview-widget-container__widget {
  height: 220px;
  width: 100%;
}

.tv-wrap .tradingview-widget-copyright {
  font-size: 10px;
  color: rgba(154, 163, 196, 0.75);
  padding: 8px 10px 10px;
}

.tv-wrap .tradingview-widget-copyright a {
  color: rgba(70, 240, 255, 0.85);
  text-decoration: none;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-hero {
  padding-top: var(--section-pad);
  padding-bottom: clamp(24px, 6vh, 48px);
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.page-lead {
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-inline-size: 70ch;
}

.page-content {
  padding-bottom: var(--section-pad);
  position: relative;
  z-index: 1;
}

.page-card {
  padding: clamp(20px, 3vw, 32px);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(110, 150, 255, 0.22);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 16px;
}

.page-card h2 {
  margin: 10px 0 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.page-card h3 {
  margin: 12px 0 6px;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.page-card p,
.page-card li {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.page-card ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.page-card .kvs {
  display: grid;
  gap: 6px;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.page-card .kvs div strong {
  color: var(--accent-2);
  font-weight: 600;
}

.page-meta {
  font-size: 13px;
  color: var(--text-muted);
}

.page-meta strong {
  color: var(--accent-2);
  font-weight: 600;
}

.page-note {
  border-radius: var(--radius-md);
  border: 1px solid rgba(110, 150, 255, 0.2);
  background: rgba(5, 11, 30, 0.75);
  padding: 14px;
}

.page-card details {
  border-radius: 14px;
  border: 1px solid rgba(110, 150, 255, 0.18);
  background: rgba(5, 11, 30, 0.7);
  padding: 12px 14px;
}

.page-card details + details {
  margin-top: 10px;
}

.page-card summary {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-main);
}

.page-card summary::marker {
  color: rgba(70, 240, 255, 0.8);
}

.roadmap-timeline {
  display: grid;
  gap: 18px;
}

.roadmap-card {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid rgba(110, 150, 255, 0.22);
  padding: 20px 22px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 12px;
}

.roadmap-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.roadmap-badge {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(110, 150, 255, 0.35);
  background: rgba(5, 13, 40, 0.7);
  font-size: 10px;
}

.roadmap-badge.is-now {
  color: var(--success);
  border-color: rgba(53, 255, 176, 0.35);
  background: rgba(53, 255, 176, 0.12);
}

.roadmap-badge.is-next {
  color: var(--accent);
  border-color: rgba(70, 240, 255, 0.4);
  background: rgba(70, 240, 255, 0.12);
}

.roadmap-badge.is-later {
  color: #ffd56b;
  border-color: rgba(255, 213, 107, 0.4);
  background: rgba(255, 213, 107, 0.12);
}

.roadmap-card h3 {
  margin: 0;
  font-size: 18px;
}

.roadmap-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.roadmap-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(10, 18, 46, 0.9);
  overflow: hidden;
}

.roadmap-progress > div {
  height: 100%;
  width: var(--pct, 0%);
  background: linear-gradient(90deg, rgba(70, 240, 255, 0.2), rgba(70, 240, 255, 0.9));
}

.pct-70 { --pct: 70%; }
.pct-35 { --pct: 35%; }
.pct-20 { --pct: 20%; }
.pct-10 { --pct: 10%; }

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.roadmap-panel {
  border-radius: var(--radius-md);
  background: rgba(7, 12, 30, 0.85);
  border: 1px solid rgba(110, 150, 255, 0.2);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.roadmap-panel h3 {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.roadmap-panel .big {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border-radius: 999px;
  border: 1px solid rgba(110, 150, 255, 0.35);
  padding: 8px 12px;
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(5, 12, 30, 0.7);
}

.pill strong {
  color: var(--text-main);
  font-weight: 600;
}

.news-section,
.movers-section {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(110, 150, 255, 0.2);
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.news-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-title > div {
  display: grid;
  gap: 4px;
}

.news-subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

.news-link {
  border-radius: 999px;
  border: 1px solid rgba(70, 240, 255, 0.35);
  background: rgba(5, 12, 30, 0.6);
  color: var(--text-main);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  cursor: pointer;
}

.news-link:hover {
  border-color: rgba(70, 240, 255, 0.55);
  background: rgba(5, 12, 30, 0.85);
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.news-item {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(5, 10, 28, 0.9);
  border: 1px solid rgba(110, 150, 255, 0.18);
  display: grid;
  gap: 6px;
}

.news-item h3 {
  margin: 0;
  font-size: 14px;
}

.news-item h3 a {
  color: inherit;
}

.news-meta {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
}

.news-empty {
  text-align: center;
  color: var(--text-muted);
}

.news-skeleton {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: rgba(5, 10, 28, 0.9);
  border: 1px solid rgba(110, 150, 255, 0.18);
  padding: 12px 14px;
}

.news-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(70, 240, 255, 0.08), transparent);
  transform: translateX(-120%);
  animation: newsShimmer 1.2s ease-in-out infinite;
}

.sk-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(120, 140, 200, 0.2);
  margin-bottom: 8px;
}

.sk-line:last-child {
  margin-bottom: 0;
}

.sk-line.w-92 { width: 92%; }
.sk-line.w-88 { width: 88%; }
.sk-line.w-86 { width: 86%; }
.sk-line.w-84 { width: 84%; }
.sk-line.w-82 { width: 82%; }
.sk-line.w-78 { width: 78%; }
.sk-line.w-76 { width: 76%; }
.sk-line.w-72 { width: 72%; }
.sk-line.w-70 { width: 70%; }

@keyframes newsShimmer {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

.movers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.movers-card {
  border-radius: var(--radius-md);
  background: rgba(5, 11, 30, 0.8);
  border: 1px solid rgba(110, 150, 255, 0.18);
  padding: 14px;
}

.movers-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.movers-card-title {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.movers-updated {
  font-size: 10px;
  color: var(--text-muted);
}

.movers-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.mover-row {
  display: grid;
  gap: 6px;
}

.mover-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mover-symbol {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.mover-change {
  font-size: 12px;
  font-weight: 600;
}

.mover-change.positive { color: var(--success); }
.mover-change.negative { color: var(--danger); }

.mover-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.mover-bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(12, 20, 50, 0.8);
  overflow: hidden;
}

.mover-fill {
  position: absolute;
  inset: 0;
  width: var(--bar, 60%);
  background: linear-gradient(90deg, rgba(70, 240, 255, 0.2), rgba(70, 240, 255, 0.9));
}

.mover-fill.negative {
  background: linear-gradient(90deg, rgba(255, 107, 129, 0.2), rgba(255, 107, 129, 0.85));
}

.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.steps {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(7, 12, 30, 0.82);
  border: 1px solid rgba(110, 150, 255, 0.2);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #020712;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.steps h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

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

.beta-panel {
  position: relative;
}

.beta-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid rgba(110, 150, 255, 0.28);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 14px;
}

.beta-card-header h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.beta-card-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.field input,
.field textarea {
  border-radius: 12px;
  border: 1px solid rgba(110, 150, 255, 0.2);
  background: rgba(3, 10, 24, 0.85);
  color: var(--text-main);
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  width: 100%;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 1px solid rgba(70, 240, 255, 0.6);
}

.beta-note {
  font-size: 12px;
  color: var(--text-muted);
}

.site-footer {
  padding-top: var(--section-pad);
  padding-bottom: 32px;
  background: rgba(4, 8, 22, 0.9);
  border-top: 1px solid rgba(110, 150, 255, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.footer-brand {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: flex-start;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
}

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

.footer-bottom {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav-bar {
    grid-template-columns: auto 1fr;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

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

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .nav-actions {
    gap: 8px;
  }

  .nav-cta {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .telegram-card {
    padding: 18px;
  }

  .ticker-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ticker {
    border-radius: var(--radius-sm);
  }

  .ticker-label {
    font-size: 10px;
  }
}

@media (max-width: 540px) {
  .terminal-row {
    grid-template-columns: 1fr;
  }
}

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

  .bg-grid {
    animation: none;
  }

  .btn,
  .trust-card,
  .feature-card,
  .terminal-card::before,
  .pulse-dot,
  .news-skeleton::after {
    animation: none;
    transition: none;
  }
}
