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

:root {
  --bg:        #080c14;
  --bg2:       #0d1320;
  --bg3:       #111827;
  --border:    rgba(56,189,248,0.12);
  --border2:   rgba(56,189,248,0.25);
  --cyan:      #38bdf8;
  --cyan2:     #0ea5e9;
  --gold:      #f59e0b;
  --gold2:     #fbbf24;
  --green:     #10b981;
  --red:       #ef4444;
  --text:      #e2e8f0;
  --muted:     #94a3b8;
  --card:      rgba(13,19,32,0.85);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── Grid background ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ─── Glow blobs ─── */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: .35;
}
.blob-1 { width: 600px; height: 600px; background: #0c4a6e; top: -200px; left: -200px; }
.blob-2 { width: 500px; height: 500px; background: #78350f; bottom: 20%; right: -150px; }
.blob-3 { width: 400px; height: 400px; background: #064e3b; bottom: -100px; left: 30%; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 9px; }

/* ─── Reusable ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--cyan); border: 1px solid var(--border2);
  padding: 4px 12px; border-radius: 99px;
  background: rgba(56,189,248,0.06);
}
.tag::before { content: '◆'; font-size: .55rem; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.section-title span { color: var(--cyan); }
.section-title .gold { color: var(--gold); }
.section-sub {
  color: var(--muted); font-size: 1rem; max-width: 560px;
  margin-top: .75rem; line-height: 1.75;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 8px;
  font-weight: 600; font-size: .9rem; text-decoration: none;
  transition: all .2s ease; cursor: pointer; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan2), #2563eb);
  color: #fff;
  box-shadow: 0 0 24px rgba(14,165,233,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(14,165,233,0.55); }
.btn-ghost {
  background: transparent; color: var(--cyan);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { background: rgba(56,189,248,0.08); transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #080c14; font-weight: 700;
  box-shadow: 0 0 24px rgba(245,158,11,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(245,158,11,0.6); }

/* ─── Header ─── */
header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(8,12,20,0.85);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: 1.15rem;
  color: #fff; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.logo-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan2), #2563eb);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 900; color: #fff;
  box-shadow: 0 0 14px rgba(14,165,233,0.5);
}
.logo span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: .875rem;
  font-weight: 500; transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.ticker {
  font-family: 'JetBrains Mono', monospace; font-size: .72rem;
  color: var(--muted); display: flex; gap: 18px;
}
.ticker .up { color: var(--green); }
.ticker .dn { color: var(--red); }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--muted); border-radius: 9px; }

/* ─── Hero ─── */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  padding: 80px 0 60px;
  position: relative;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}
.live-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem; color: var(--green); letter-spacing: .1em; text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -.03em; margin-bottom: 20px;
}
.hero-title .line2 { color: var(--cyan); }
.hero-title .line3 { color: var(--gold); }
.hero-desc {
  color: var(--muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 36px; max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 32px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.stat-num {
  font-size: 1.5rem; font-weight: 800; color: var(--text);
  font-variant-numeric: tabular-nums;
}
.stat-num span { color: var(--cyan); }
.stat-label { font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* ─── Terminal card ─── */
.terminal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 80px rgba(56,189,248,0.06), 0 24px 64px rgba(0,0,0,0.5);
}
.terminal-bar {
  background: rgba(255,255,255,0.04);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ef4444; }
.dot-y { background: #f59e0b; }
.dot-g { background: #22c55e; }
.terminal-title {
  margin-left: 8px; font-family: 'JetBrains Mono', monospace;
  font-size: .72rem; color: var(--muted); letter-spacing: .05em;
}
.terminal-body { padding: 20px; }
.chart-row {
  display: flex; align-items: flex-end; gap: 4px;
  height: 120px; margin-bottom: 16px;
}
.bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--cyan2), rgba(14,165,233,0.2));
  animation: growUp .8s ease both;
}
@keyframes growUp {
  from { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  to   { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
}
.bar:nth-child(2)  { animation-delay: .05s; }
.bar:nth-child(3)  { animation-delay: .1s; }
.bar:nth-child(4)  { animation-delay: .15s; }
.bar:nth-child(5)  { animation-delay: .2s; }
.bar:nth-child(6)  { animation-delay: .25s; }
.bar:nth-child(7)  { animation-delay: .3s; }
.bar:nth-child(8)  { animation-delay: .35s; }
.bar:nth-child(9)  { animation-delay: .4s; }
.bar:nth-child(10) { animation-delay: .45s; }
.bar:nth-child(11) { animation-delay: .5s; }
.bar:nth-child(12) { animation-delay: .55s; }
.bar.gold {
  background: linear-gradient(180deg, var(--gold), rgba(245,158,11,0.2));
}
.bar.green {
  background: linear-gradient(180deg, var(--green), rgba(16,185,129,0.2));
}
.metric-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.metric {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px;
}
.metric-label { font-size: .68rem; color: var(--muted); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: .06em; }
.metric-value { font-size: 1.15rem; font-weight: 700; margin-top: 4px; font-variant-numeric: tabular-nums; }
.metric-value.up { color: var(--green); }
.metric-value.down { color: var(--red); }
.metric-value.gold { color: var(--gold); }
.metric-delta { font-size: .72rem; font-family: 'JetBrains Mono', monospace; margin-top: 2px; }
.metric-delta.up { color: var(--green); }
.metric-delta.dn { color: var(--red); }

/* ─── Sections ─── */
section { padding: 100px 0; position: relative; z-index: 1; }

/* ─── Trust logos ─── */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(13,19,32,0.5);
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-label {
  font-family: 'JetBrains Mono', monospace; font-size: .68rem;
  color: var(--muted); text-transform: uppercase; letter-spacing: .12em;
  white-space: nowrap;
}
.trust-logo {
  font-weight: 700; font-size: .9rem; color: var(--muted);
  letter-spacing: .04em; opacity: .6; transition: opacity .2s;
  padding: 8px 16px; border: 1px solid var(--border);
  border-radius: 8px; font-family: 'JetBrains Mono', monospace;
}
.trust-logo:hover { opacity: 1; }

/* ─── Features ─── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 60px;
}
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  backdrop-filter: blur(20px);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity .2s;
}
.feature-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.fi-cyan { background: rgba(56,189,248,0.12); }
.fi-gold { background: rgba(245,158,11,0.12); }
.fi-green { background: rgba(16,185,129,0.12); }
.fi-purple { background: rgba(139,92,246,0.12); }
.feature-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: .875rem; color: var(--muted); line-height: 1.75; }

/* ─── Steps ─── */
.steps-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; margin-top: 60px;
}
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 20px;
  padding: 28px 24px; border-radius: 14px;
  transition: background .2s;
  position: relative;
}
.step::after {
  content: '';
  position: absolute; left: 40px; bottom: -1px;
  width: 2px; height: calc(100% - 68px);
  background: var(--border); top: 68px;
}
.step:last-child::after { display: none; }
.step:hover { background: rgba(56,189,248,0.04); }
.step-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: .85rem; font-weight: 700;
  border: 1px solid var(--border2); color: var(--cyan);
  background: rgba(56,189,248,0.08);
}
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: .875rem; color: var(--muted); line-height: 1.75; }

.steps-visual {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  backdrop-filter: blur(20px);
}
.order-mock-title {
  font-family: 'JetBrains Mono', monospace; font-size: .75rem;
  color: var(--muted); text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.order-mock-title::before { content: ''; display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.strategy-item {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.strategy-name { font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.strategy-badge {
  font-family: 'JetBrains Mono', monospace; font-size: .65rem;
  padding: 3px 8px; border-radius: 4px; display: inline-block;
  font-weight: 500; letter-spacing: .06em;
}
.risk-low { background: rgba(16,185,129,0.15); color: var(--green); }
.risk-med { background: rgba(245,158,11,0.15); color: var(--gold); }
.risk-high { background: rgba(239,68,68,0.15); color: var(--red); }
.strategy-right { text-align: right; }
.strategy-return { font-size: .85rem; color: var(--green); font-weight: 700; font-family: 'JetBrains Mono', monospace; }
.strategy-price { font-size: .8rem; color: var(--muted); margin-top: 2px; }
.order-btn {
  width: 100%; padding: 14px; border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan2), #2563eb);
  color: #fff; font-weight: 700; font-size: .9rem;
  border: none; cursor: pointer; margin-top: 16px;
  box-shadow: 0 0 24px rgba(14,165,233,0.3);
  transition: box-shadow .2s, transform .2s;
}
.order-btn:hover { box-shadow: 0 0 40px rgba(14,165,233,0.5); transform: translateY(-1px); }

/* ─── Affiliate ─── */
.affiliate-card {
  background: linear-gradient(135deg, rgba(13,19,32,0.9), rgba(8,12,20,0.9));
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 24px; padding: 64px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.affiliate-card::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(245,158,11,0.06); filter: blur(60px);
}
.affiliate-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 16px;
}
.affiliate-title span { color: var(--gold); }
.affiliate-desc { color: var(--muted); max-width: 480px; line-height: 1.8; margin-bottom: 32px; }
.affiliate-features { display: flex; flex-direction: column; gap: 12px; }
.af-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: .875rem; color: var(--muted);
}
.af-feat::before {
  content: '✓'; display: block; width: 20px; height: 20px;
  border-radius: 5px; background: rgba(16,185,129,0.15);
  color: var(--green); font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.affiliate-right { text-align: center; }
.commission-circle {
  width: 160px; height: 160px; border-radius: 50%;
  border: 2px solid rgba(245,158,11,0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(245,158,11,0.05);
  box-shadow: 0 0 60px rgba(245,158,11,0.15);
}
.commission-rate {
  font-size: 2.5rem; font-weight: 900; color: var(--gold);
  line-height: 1; font-family: 'JetBrains Mono', monospace;
}
.commission-label { font-size: .75rem; color: var(--muted); margin-top: 4px; letter-spacing: .06em; }

/* ─── Contact ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
  align-items: start; margin-top: 60px;
}
.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(56,189,248,0.1); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  flex-shrink: 0;
}
.contact-key { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-family: 'JetBrains Mono', monospace; }
.contact-val { font-size: .95rem; font-weight: 500; color: var(--text); margin-top: 2px; }

.contact-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px;
  backdrop-filter: blur(20px);
}
.form-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
}
.form-input, .form-textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 16px; color: var(--text); font-size: .9rem;
  font-family: 'Inter', sans-serif; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--cyan2); box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 14px; border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan2), #2563eb);
  color: #fff; font-weight: 700; font-size: .95rem;
  border: none; cursor: pointer; margin-top: 8px;
  box-shadow: 0 0 24px rgba(14,165,233,0.3);
  transition: box-shadow .2s, transform .2s;
}
.form-submit:hover { box-shadow: 0 0 40px rgba(14,165,233,0.5); transform: translateY(-1px); }

/* ─── Footer ─── */
footer {
  background: rgba(8,12,20,0.95); border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { color: var(--muted); font-size: .875rem; line-height: 1.75; margin: 16px 0 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--border); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: .85rem;
  transition: border-color .15s, color .15s, background .15s;
}
.social-btn:hover { border-color: var(--border2); color: var(--text); background: rgba(56,189,248,0.08); }
.footer-col h4 {
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); margin-bottom: 18px;
  font-family: 'JetBrains Mono', monospace;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--muted); text-decoration: none; font-size: .875rem;
  transition: color .15s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: .8rem; color: var(--muted);
}
.footer-disclaimer {
  max-width: 520px; line-height: 1.7;
  font-size: .75rem; color: rgba(148,163,184,0.6);
  margin-top: 8px;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .terminal-card { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .affiliate-card { grid-template-columns: 1fr; }
  .affiliate-right { display: none; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta .btn-ghost, .ticker { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .affiliate-card { padding: 36px 24px; }
}

/* ─── Fade-in on scroll ─── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
