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

:root {
  --bg:        #0e0e0e;
  --surface:   #161616;
  --surface2:  #1e1e1e;
  --border:    #2a2a2a;
  --text:      #f0ede8;
  --muted:     #6b6760;
  --accent:    #e8ff47;
  --accent2:   #ff6b35;
  --font-hero: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(14,14,14,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-hero);
  font-size: 22px;
  letter-spacing: .08em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent) !important;
  color: #0e0e0e !important;
  padding: 9px 22px;
  font-weight: 600;
  font-size: 13px !important;
  letter-spacing: .06em;
}
.nav-cta:hover { background: #d4eb30 !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 160px 48px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .35;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232,255,71,0.3);
  padding: 6px 14px;
  margin-bottom: 32px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; } 50% { opacity: .3; }
}
.hero-title {
  font-family: var(--font-hero);
  font-size: clamp(64px, 11vw, 148px);
  line-height: .92;
  letter-spacing: .01em;
  color: var(--text);
}
.hero-title .accent { color: var(--accent); }
.hero-title .outline {
  -webkit-text-stroke: 1px var(--muted);
  color: transparent;
}
.hero-sub-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
}
.hero-sub strong { color: var(--text); font-weight: 500; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-shrink: 0; }

.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--accent);
  color: #0e0e0e;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #d4eb30; transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  padding: 16px 36px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--muted); color: var(--text); }

/* ── TICKER ── */
.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
  background: var(--surface);
}
.ticker {
  display: flex;
  gap: 64px;
  animation: ticker 22s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: var(--font-hero);
  font-size: 15px;
  letter-spacing: .12em;
  color: var(--muted);
  flex-shrink: 0;
}
.ticker-item span { color: var(--accent); margin-right: 12px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
.demo-section {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-hero);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: .03em;
  margin-bottom: 48px;
}
.section-title .outline {
  -webkit-text-stroke: 1px var(--muted);
  color: transparent;
}
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}
.demo-grid-single { margin-bottom: 40px; }

/* ── BEFORE/AFTER SLIDER ── */
.ba-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
  background: #111;
  aspect-ratio: 16/9;
}
.ba-slider img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  pointer-events: none;
}
.ba-after-img { clip-path: inset(0 50% 0 0); }
.ba-line {
  position: absolute; top: 0; bottom: 0;
  width: 2px; background: #fff; left: 50%;
  transform: translateX(-50%); pointer-events: none;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  box-shadow: 0 0 0 4px rgba(232,255,71,0.2);
}
.ba-handle svg { width: 22px; height: 22px; }
.ba-lbl {
  position: absolute; top: 14px;
  font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; pointer-events: none;
}
.ba-lbl-before { left: 14px; background: rgba(0,0,0,0.6); color: #fff; }
.ba-lbl-after  { right: 14px; background: var(--accent); color: #0e0e0e; }

/* ── HOW IT WORKS ── */
.how-section {
  border-top: 1px solid var(--border);
  padding: 100px 48px;
  background: var(--surface);
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.step {
  background: var(--bg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}
.step:hover { border-color: var(--accent); }
.step-num {
  font-family: var(--font-hero);
  font-size: 80px;
  line-height: 1;
  color: var(--surface2);
  position: absolute;
  top: 16px; right: 20px;
  pointer-events: none;
  user-select: none;
}
.step-icon {
  width: 44px; height: 44px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
}
.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; letter-spacing: -.01em; }
.step p  { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── PRICING ── */
.pricing-section {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color .3s;
}
.plan:hover { border-color: var(--muted); }
.plan.featured { border-color: var(--accent); background: var(--surface2); }
.plan-tag { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.plan-name { font-family: var(--font-hero); font-size: 32px; letter-spacing: .04em; margin-bottom: 8px; }
.plan-price { font-family: var(--font-hero); font-size: 52px; line-height: 1; color: var(--text); margin-bottom: 4px; }
.plan-price sup { font-size: 22px; vertical-align: top; margin-top: 10px; }
.plan-price sub { font-size: 16px; color: var(--muted); }
.plan-desc { font-size: 13px; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }
.plan-features { list-style: none; margin-bottom: 36px; flex: 1; }
.plan-features li {
  font-size: 14px; color: var(--muted);
  padding: 10px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.plan-features li::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--muted); flex-shrink: 0;
}
.plan.featured .plan-features li::before { background: var(--accent); }
.plan-features li.on { color: var(--text); }
.plan-btn {
  display: block; text-align: center; padding: 14px;
  border: 1px solid var(--border); color: var(--muted);
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none; transition: all .2s;
}
.plan-btn:hover { border-color: var(--text); color: var(--text); }
.plan.featured .plan-btn { background: var(--accent); border-color: var(--accent); color: #0e0e0e; }
.plan.featured .plan-btn:hover { background: #d4eb30; }

/* ── WHO IT'S FOR ── */
.trades-section {
  border-top: 1px solid var(--border);
  padding: 100px 48px;
  background: var(--surface);
}
.trades-inner { max-width: 1100px; margin: 0 auto; }
.trades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2px;
  margin-top: 56px;
}
.trade-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  transition: border-color .25s, background .25s;
  cursor: default;
}
.trade-card:hover { border-color: var(--accent); background: var(--surface2); }
.trade-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.trade-name { font-size: 13px; font-weight: 500; color: var(--text); letter-spacing: .02em; }
.trade-card.placeholder { border-style: dashed; opacity: .4; }
.trade-card.placeholder .trade-name { color: var(--muted); }

/* ── CTA STRIP ── */
.cta-strip {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  border-top: 1px solid var(--border);
}
.cta-strip h2 {
  font-family: var(--font-hero);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: .02em;
}
.cta-strip h2 .accent { color: var(--accent); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .04em;
  flex-wrap: wrap;
  gap: 12px;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--text); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.on { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  nav { padding: 16px 20px; }
  .nav-links { gap: 16px; }
  .hero { padding: 140px 20px 60px; }
  .demo-section, .pricing-section { padding: 60px 20px; }
  .how-section, .trades-section { padding: 60px 20px; }
  .cta-strip { padding: 60px 20px; grid-template-columns: 1fr; }
  footer { padding: 24px 20px; }
  .demo-grid { grid-template-columns: 1fr; }
  .steps, .pricing-grid { grid-template-columns: 1fr; }
  .hero-sub-row { flex-direction: column; align-items: flex-start; }
}
