:root {
  --bg: #0B0F1A;
  --bg2: #111827;
  --bg3: #1a2235;
  --fg: #F1F5F9;
  --fg2: #94A3B8;
  --green: #00E5A0;
  --amber: #F59E0B;
  --red: #EF4444;
  --accent: #00E5A0;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Price Ticker */
.price-ticker {
  background: var(--bg2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 10px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.pair {
  font-family: var(--font-body);
  font-size: 12px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pair strong { font-weight: 600; }
.green { color: var(--green); }
.red { color: var(--red); }

/* Section Label */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 60px 80px;
  min-height: 80vh;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,229,160,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(0,229,160,0.3);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg2);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 36px;
}
.stat {}
.stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg2);
  margin-top: 4px;
}

/* Signal Preview Cards (hero) */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.signal-preview {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s;
}
.signal-preview:hover { border-color: rgba(0,229,160,0.3); }
.signal-preview.dim { opacity: 0.45; }
.spair {
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sdir {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}
.sdir.up { background: rgba(0,229,160,0.15); color: var(--green); }
.sdir.dn { background: rgba(239,68,68,0.15); color: var(--red); }
.sprice { font-size: 14px; color: var(--fg2); }
.smeta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}
.sresult { font-size: 12px; font-weight: 600; }
.sresult.win { color: var(--green); }
.swr, .srisk { font-size: 11px; color: var(--fg2); }

/* Signals Section */
.signals {
  background: var(--bg2);
  padding: 80px 60px;
}
.signals h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}
.sg-card {
  background: var(--bg2);
  padding: 32px 28px;
  transition: background 0.2s;
}
.sg-card:hover { background: var(--bg3); }
.sg-icon {
  font-size: 24px;
  color: var(--green);
  margin-bottom: 16px;
}
.sg-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.sg-card p { font-size: 14px; color: var(--fg2); line-height: 1.6; }

/* Copy Trade */
.copytrade {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 60px;
  background: var(--bg);
}
.copytrade h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.copytrade > .copytrade-inner > p {
  font-size: 16px;
  color: var(--fg2);
  margin-bottom: 32px;
  line-height: 1.7;
}
.copy-features { display: flex; flex-direction: column; gap: 12px; }
.cf {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}
.cf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.ct-card {
  background: var(--bg2);
  border: 1px solid rgba(0,229,160,0.2);
  border-radius: 14px;
  padding: 32px;
}
.ct-header {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 24px;
}
.ct-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ct-stat:last-child { border-bottom: none; }
.ct-label { font-size: 13px; color: var(--fg2); }
.ct-val { font-weight: 600; font-size: 15px; }
.ct-val.green { color: var(--green); }

/* Bundles */
.bundles {
  background: var(--bg2);
  padding: 80px 60px;
}
.bundles h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.bundle {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
}
.bundle.featured {
  border-color: rgba(0,229,160,0.3);
  background: var(--bg);
  position: relative;
}
.bpopular {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--green);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.bname {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.bduration {
  font-size: 12px;
  color: var(--fg2);
  margin-bottom: 20px;
}
.bprice {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 24px;
}
.bper {
  font-size: 14px;
  font-weight: 400;
  color: var(--fg2);
}
.bfeats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bfeats li {
  font-size: 13px;
  color: var(--fg2);
  padding-left: 16px;
  position: relative;
}
.bfeats li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.bundle.featured .bfeats li strong { color: var(--fg); }
.coin-note {
  text-align: center;
  font-size: 14px;
  color: var(--fg2);
  margin-top: 8px;
}
.coin-note strong { color: var(--amber); }

/* Discipline */
.discipline {
  padding: 80px 60px;
  background: var(--bg);
}
.disc-inner { max-width: 640px; }
.discipline h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.disc-inner > p {
  font-size: 16px;
  color: var(--fg2);
  line-height: 1.7;
  margin-bottom: 40px;
}
.disc-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.dp {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dp:last-child { border-bottom: none; }
.dp-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
  min-width: 24px;
}
.dp-text {
  font-size: 16px;
  font-weight: 500;
}
.disc-disclaimer {
  font-size: 12px;
  color: rgba(148,163,184,0.5);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 100px 60px;
  background: var(--bg2);
  text-align: center;
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.closing p {
  font-size: 16px;
  color: var(--fg2);
  line-height: 1.7;
  margin-bottom: 32px;
}
.closing-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--fg2);
}
.cphone { font-weight: 600; color: var(--fg); }
.csep { color: rgba(255,255,255,0.2); }

/* Footer */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 60px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-size: 12px;
  color: var(--fg2);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
}
.footer-links a { color: var(--fg2); text-decoration: none; }
.footer-links a:hover { color: var(--green); }
.fsep { color: rgba(255,255,255,0.2); }
.footer-legal {
  font-size: 11px;
  color: rgba(148,163,184,0.4);
  max-width: 500px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 28px;
    gap: 40px;
  }
  .hero-visual { display: none; }
  .hero-headline { font-size: 40px; }
  .hero-stats { gap: 24px; }
  .signal-grid { grid-template-columns: 1fr; }
  .copytrade {
    grid-template-columns: 1fr;
    padding: 60px 28px;
    gap: 40px;
  }
  .bundle-grid { grid-template-columns: 1fr; }
  .signals, .bundles, .discipline, .closing { padding: 60px 28px; }
  .discipline h2, .closing h2, .bundles h2, .signals h2 { font-size: 32px; }
  footer { padding: 32px 28px; }
}

@media (max-width: 500px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-val { font-size: 24px; }
}