:root {
  --bg: #070f0a;
  --surface: #0d1a10;
  --surface-2: #102014;
  --primary: #00e676;
  --secondary: #1db954;
  --text: #ffffff;
  --muted: #8a9e8f;
  --border: rgba(0, 230, 118, 0.15);
  --glow: rgba(0, 230, 118, 0.08);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Space Grotesk", system-ui, sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 230, 118, 0.12), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(29, 185, 84, 0.1), transparent 26%),
    linear-gradient(180deg, #070f0a 0%, #061008 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img {
  display: block;
}

.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
  padding: 0 40px;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

nav.scrolled {
  background: rgba(7, 15, 10, 0.88);
  border-color: var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.nav-logo img {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 10px rgba(0, 230, 118, 0.42));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: color 180ms ease;
}

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

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

.container {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease, background 140ms ease;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

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

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.btn-primary {
  background: var(--primary);
  color: #070f0a;
  box-shadow: 0 12px 32px rgba(0, 230, 118, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 16px 40px rgba(0, 230, 118, 0.28);
}

.btn-secondary {
  background: rgba(13, 26, 16, 0.9);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: rgba(16, 32, 20, 0.96);
  border-color: rgba(0, 230, 118, 0.26);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 15px;
}

.section {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
  max-width: 720px;
  margin-bottom: 18px;
}

.section-subcopy {
  font-size: 18px;
  line-height: 1.72;
  color: #b3c1b7;
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-dot,
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.6);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.8;
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.18);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 0 10px rgba(0, 230, 118, 0);
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 88px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.hero::before {
  width: 420px;
  height: 420px;
  top: 30px;
  left: -180px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.18) 0%, transparent 68%);
}

.hero::after {
  width: 520px;
  height: 520px;
  bottom: -140px;
  right: -220px;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.14) 0%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 54px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(42px, 8vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 900;
  max-width: 620px;
  margin: 22px 0 24px;
}

.hero-copy p {
  font-size: 19px;
  line-height: 1.72;
  color: #b4c2b8;
  max-width: 600px;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(13, 26, 16, 0.94);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(0, 230, 118, 0.04), 0 14px 30px rgba(0, 0, 0, 0.22);
}

.hero-meta strong {
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.hero-terminal {
  position: relative;
  padding: 26px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(13, 26, 16, 0.98), rgba(9, 18, 12, 0.98)),
    var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 0 1px rgba(0, 230, 118, 0.05);
  overflow: hidden;
}

.hero-terminal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%);
  pointer-events: none;
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.terminal-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b9c7be;
  font-size: 12px;
  font-weight: 600;
}

.signal-stack {
  display: grid;
  gap: 14px;
}

.signal-row {
  padding: 16px 16px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.signal-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.signal-asset {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-time {
  font-size: 12px;
  color: var(--muted);
}

.signal-direction {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #d5dfd9;
}

.signal-direction strong,
.signal-edge strong {
  color: var(--primary);
}

.signal-edge {
  font-size: 12px;
  color: #a7b5ac;
  line-height: 1.55;
}

.signal-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.signal-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 230, 118, 0.06);
  border: 1px solid rgba(0, 230, 118, 0.14);
  font-size: 12px;
  font-weight: 600;
  color: #d8e3dd;
}

.cards-grid {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.step-card {
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.step-card:hover,
.pricing-card:hover,
.stat-card:hover,
.access-card:hover,
.bot-shell:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 230, 118, 0.24);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.16);
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
}

.step-card h3,
.pricing-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.step-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #b4c2b8;
  white-space: pre-line;
}

.performance-wrap {
  margin-top: 38px;
}

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

.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(0, 230, 118, 0.06);
  border: 1px solid var(--border);
  color: #d8e3dd;
  font-size: 13px;
  font-weight: 700;
}

.stats-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 0;
}

.stat-card {
  padding: 24px 22px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 16px;
}

.stat-value {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--primary);
  font-weight: 900;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

.stat-caption {
  margin-top: 8px;
  font-size: 13px;
  color: #adc0b3;
}

.performance-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.pricing-plan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d5dfd9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pricing-card.popular {
  border-color: rgba(0, 230, 118, 0.32);
  box-shadow: 0 0 0 1px rgba(0, 230, 118, 0.12), 0 24px 58px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 230, 118, 0.08);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.18);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-price {
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--primary);
  margin-bottom: 18px;
}

.pricing-suffix {
  font-size: 18px;
  font-weight: 700;
  color: #d6e0da;
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: #b7c5bb;
  font-size: 15px;
  line-height: 1.55;
}

.pricing-card li {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.bot-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 38px;
  align-items: center;
  margin-top: 38px;
}

.bot-copy p {
  font-size: 18px;
  line-height: 1.72;
  color: #b3c1b7;
  max-width: 520px;
  margin-bottom: 28px;
}

.bot-points {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.bot-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #d7e1db;
}

.bot-point .pulse-dot {
  margin-top: 7px;
  width: 7px;
  height: 7px;
}

.bot-shell {
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.telegram-frame {
  padding: 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(0, 230, 118, 0.08), transparent 34%),
    rgba(6, 14, 9, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.telegram-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
}

.telegram-app {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
}

.telegram-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #00e676 0%, #1db954 100%);
  color: #031108;
  font-weight: 900;
}

.telegram-time {
  font-size: 12px;
  color: var(--muted);
}

.message-bubble {
  padding: 22px;
  border-radius: 24px 24px 24px 10px;
  background: linear-gradient(180deg, rgba(13, 26, 16, 0.98), rgba(12, 23, 15, 0.98));
  border: 1px solid rgba(0, 230, 118, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.message-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 18px;
}

.message-title strong,
.message-body strong,
.message-body .accent {
  color: var(--primary);
}

.message-body {
  display: grid;
  gap: 10px;
  color: #d8e3dd;
  font-size: 14px;
  line-height: 1.7;
}

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

.telegram-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 230, 118, 0.16);
  background: rgba(0, 230, 118, 0.06);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.telegram-btn.skip {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.07);
  color: #ced8d2;
}

.access-wrap {
  margin-top: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: 22px;
  align-items: stretch;
}

.access-card,
.access-side {
  padding: 30px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.access-card h3,
.access-side h3 {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.access-card p,
.access-side p {
  color: #b2c0b6;
  line-height: 1.72;
  font-size: 16px;
}

.access-form {
  margin-top: 24px;
}

.input-label {
  display: block;
  margin-bottom: 10px;
  color: #d6e0da;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.access-controls {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(5, 12, 8, 0.92);
  color: var(--text);
  padding: 0 18px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.input:focus {
  border-color: rgba(0, 230, 118, 0.38);
  box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.08);
}

.form-meta {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.form-note,
.form-message {
  font-size: 14px;
  line-height: 1.6;
}

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

.form-message {
  color: #d6e0da;
  min-height: 22px;
}

.form-message.success {
  color: var(--primary);
}

.form-message.error {
  color: #ff8f8f;
}

.access-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.access-side ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: #d6e0da;
}

.access-side li {
  display: flex;
  gap: 12px;
  line-height: 1.65;
  font-size: 15px;
}

.access-side .pulse-dot {
  margin-top: 8px;
  width: 7px;
  height: 7px;
}

.fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.fade.in {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 34px 0 42px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 20px;
  height: 20px;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

.footer-disclaimer {
  color: #a7b4ab;
  font-size: 13px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

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

@media (max-width: 1080px) {
  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-ctas .btn-secondary {
    display: none;
  }

  .container {
    width: min(100%, calc(100% - 40px));
  }

  .hero {
    padding-top: 118px;
  }

  .hero-grid,
  .bot-grid,
  .access-wrap {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .stats-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-bottom: 52px;
  }

  .hero-actions,
  .access-controls {
    flex-direction: column;
  }

  .btn,
  .input {
    width: 100%;
  }

  .hero-meta {
    border-radius: 22px;
  }

  .steps-grid,
  .stats-grid,
  .pricing-grid,
  .telegram-actions {
    grid-template-columns: 1fr;
  }

  .step-card,
  .pricing-card,
  .stat-card,
  .access-card,
  .access-side,
  .bot-shell,
  .hero-terminal {
    padding: 22px;
  }

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

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

  .btn,
  .fade,
  .step-card,
  .pricing-card,
  .stat-card,
  .access-card,
  .access-side,
  .bot-shell {
    transition: none !important;
  }

  .live-dot,
  .pulse-dot {
    animation: none !important;
  }
}
