* { box-sizing: border-box; }
body {
  margin: 0;
  overscroll-behavior-x: none;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #080a0f;
  --surface: #0e1118;
  --border: #1e2330;
  --accent: #00ff88;
  --accent2: #00ccff;
  --danger: #ff3366;
  --text: #e8eaf0;
  --muted: #5a6078;
  --card: #111520;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  overflow-x: hidden;
  cursor: default;
}
/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.4;
}
/* GRID BG */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
/* GLOW ORBS */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,255,136,0.08), transparent 70%);
  top: -100px; left: -100px;
  animation: drift1 12s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,204,255,0.06), transparent 70%);
  bottom: 100px; right: -50px;
  animation: drift2 15s ease-in-out infinite;
}
@keyframes drift1 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(60px, 40px); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-40px, -60px); }
}
/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(8,10,15,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.logo-bots { color: var(--accent); }
.nav-badge {
  font-size: 0.65rem;
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.3);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* HERO */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0,255,136,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 800px;
  animation: fadeUp 0.6s 0.1s ease both;
}
h1 .accent { color: var(--accent); }
h1 .accent2 { color: var(--accent2); }
.hero-sub {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-top: 24px;
  animation: fadeUp 0.6s 0.2s ease both;
}
/* TICKER */
.ticker-wrap {
  width: 100%;
  max-width: 600px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.6s 0.3s ease both;
  overflow: hidden;
}
.ticker-label {
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-numbers {
  display: flex;
  gap: 8px;
  animation: scroll 8s linear infinite;
}
.num {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  white-space: nowrap;
}
.num.hot { color: var(--danger); background: rgba(255,51,102,0.08); }
.num.cold { color: var(--accent2); background: rgba(0,204,255,0.08); }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* CTA BUTTONS */
.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: #00ffaa;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,255,136,0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
/* STATS */
.stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
  animation: fadeUp 0.6s 0.5s ease both;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}
/* SECTION */
section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
}
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.section-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 60px;
}
/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.step:hover {
  border-color: rgba(0,255,136,0.3);
  transform: translateY(-4px);
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0,255,136,0.1);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}
/* CODE BLOCK */
.code-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}
.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.code-dots {
  display: flex;
  gap: 6px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.code-lang {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
pre {
  padding: 28px;
  font-size: 0.78rem;
  line-height: 1.8;
  overflow-x: auto;
  color: #a8b4c8;
}
.c-green { color: var(--accent); }
.c-blue { color: var(--accent2); }
.c-pink { color: #ff79c6; }
.c-yellow { color: #f1fa8c; }
.c-comment { color: var(--muted); }
/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.plan:hover { transform: translateY(-4px); }
.plan.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(0,255,136,0.04), var(--card));
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price-month {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}
.plan-sub {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.plan-features li {
  font-size: 0.78rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
}
.plan-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}
.plan.featured .plan-cta {
  background: var(--accent);
  color: #000;
}
.plan.featured .plan-cta:hover {
  background: #00ffaa;
  box-shadow: 0 0 30px rgba(0,255,136,0.3);
}
.plan:not(.featured) .plan-cta {
  border: 1px solid var(--border);
  color: var(--text);
}
.plan:not(.featured) .plan-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}
/* FOOTER */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: gap;
  gap: 20px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
}
.footer-bots { color: var(--accent); }
.footer-text {
  font-size: 0.7rem;
  color: var(--muted);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  .stats { gap: 24px; }
  pre { font-size: 0.68rem; }
  .footer-inner { flex-direction: column; text-align: center; }
}
.hidden {
  display: none !important;
  /*position: absolute !important;
  z-index: -9999 !important;
  top: -20404px !important;
  opacity: 0 !important;*/
}
