* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green: #00ff88; --green-dim: rgba(0,255,136,0.12); --green-border: rgba(0,255,136,0.25);
  --bg: #0b0e11; --bg2: #161a1e; --bg3: #1e2329;
  --border: #2a2e39; --text: #d1d4dc; --muted: #848e9c; --red: #f6465d;
  --strong: #ffffff; --placeholder: #3a4050; --row-border: #1a1e24;
  --shadow: rgba(0,0,0,0.4);
  --yellow: #f7c948; --blue: #4fc3f7; --purple: #a78bfa;
}
[data-theme="light"] {
  --green: #009e63; --green-dim: rgba(0,158,99,0.1); --green-border: rgba(0,158,99,0.35);
  --bg: #e8ecf2; --bg2: #f6f8fb; --bg3: #dde2ea;
  --border: #b8c2d0; --text: #0f1117; --muted: #606878; --red: #c82b45;
  --strong: #000000; --placeholder: #a0a8b8; --row-border: #dde2ea;
  --shadow: rgba(0,0,0,0.15);
  --yellow: #d4a017; --blue: #2196f3; --purple: #7c5cbf;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Lato', sans-serif; }
.ft-shell-main{padding:0!important;overflow:hidden!important}
.ft-shell-route{height:100%;overflow-y:auto}

/* ── Main ── */
.main { flex: 1; min-width: 0; }

/* Hero */
.hero {
  min-height: 100vh;
  padding: 60px 60px 80px;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,255,136,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: 20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,136,204,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); margin-bottom: 20px;
}
.hero-eyebrow span { width: 30px; height: 1px; background: var(--green); display: inline-block; }
.hero h1 {
  font-family: 'Urbanist', sans-serif; font-weight: 900;
  font-size: 72px; line-height: 1.0; color: var(--strong);
  margin-bottom: 10px;
}
.hero h1 .accent { color: var(--green); }
.hero-sub {
  font-size: 20px; color: var(--muted); max-width: 600px;
  line-height: 1.6; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.btn-primary {
  padding: 14px 32px; background: var(--green); color: #000;
  font-weight: 700; font-size: 15px; border-radius: 6px;
  text-decoration: none; transition: 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #33ffaa; box-shadow: 0 0 24px rgba(0,255,136,0.3); }
.btn-secondary {
  padding: 14px 32px; background: transparent;
  border: 1px solid var(--border); color: var(--text);
  font-weight: 700; font-size: 15px; border-radius: 6px;
  text-decoration: none; transition: 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); }

/* Ecosystem map */
.hero-ecosystem {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  position: relative;
}
.eco-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 14px;
  text-decoration: none; transition: 0.2s; position: relative;
  display: flex; flex-direction: column; gap: 8px;
}
.eco-card:hover { border-color: var(--green); background: var(--bg3); transform: translateY(-2px); }
.eco-card.center { border-color: var(--green-border); background: var(--green-dim); }
.eco-icon { font-size: 20px; color: var(--green); }
.eco-label { font-size: 12px; font-weight: 700; color: var(--strong); }
.eco-desc { font-size: 11px; color: var(--muted); line-height: 1.4; }
.eco-status { font-size: 10px; font-weight: 700; color: var(--green); margin-top: auto; }

/* Sections */
.section { padding: 80px 60px; border-top: 1px solid var(--border); }
.section-eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); font-weight: 700; margin-bottom: 12px; }
.section h2 { font-family: 'Urbanist', sans-serif; font-size: 42px; font-weight: 900; color: var(--strong); margin-bottom: 12px; line-height: 1.1; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 600px; line-height: 1.6; margin-bottom: 50px; }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 60px; }
.stat-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 24px 20px; }
.stat-num { font-family: 'Urbanist', sans-serif; font-size: 36px; font-weight: 900; color: var(--green); margin-bottom: 4px; }
.stat-label { font-size: 13px; color: var(--muted); }

/* Tools grid */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tool-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 24px;
  text-decoration: none; transition: 0.2s; display: block;
  position: relative; overflow: hidden;
}
.tool-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: 0.2s; }
.tool-card:hover { border-color: rgba(0,255,136,0.4); background: var(--bg3); transform: translateY(-3px); }
.tool-card:hover::before { background: var(--green); }
.tool-card-icon { font-size: 28px; color: var(--green); margin-bottom: 14px; }
.tool-card-title { font-family: 'Urbanist', sans-serif; font-size: 20px; font-weight: 700; color: var(--strong); margin-bottom: 8px; }
.tool-card-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.tool-card-link { font-size: 13px; color: var(--green); font-weight: 700; display: flex; align-items: center; gap: 5px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 14px; padding: 30px 26px;
  display: flex; flex-direction: column; gap: 6px;
}
.plan.featured { border-color: var(--green); position: relative; }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #000;
  font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.plan-name { font-family: 'Urbanist', sans-serif; font-size: 22px; font-weight: 700; color: var(--strong); margin-bottom: 6px; }
.plan-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 16px; }
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 14px 0; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text); line-height: 1.5; margin-bottom: 10px; }
.plan-feature i { color: var(--green); font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.plan-feature.dim i { color: var(--border); }
.plan-feature.dim { color: var(--muted); }
.plan-cta {
  margin-top: auto; padding: 12px;
  background: var(--green-dim); border: 1px solid var(--green-border);
  color: var(--green); border-radius: 6px;
  text-align: center; text-decoration: none;
  font-weight: 700; font-size: 14px; transition: 0.2s;
  display: block;
}
.plan.featured .plan-cta { background: var(--green); color: #000; }
.plan-cta:hover { opacity: 0.85; }
.plan-tool-link { color: var(--green); text-decoration: none; }
.plan-tool-link:hover { text-decoration: underline; }

/* Partners */
.partners { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.partner-tag {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; font-size: 14px; font-weight: 700; color: var(--text);
}
.partner-tag i { font-size: 18px; }
.partner-tag.tv i { color: #1380f7; }
.partner-tag.bybit i { color: #f0b90b; }
.partner-tag.cryptorg i { color: var(--green); }
.partner-tag.tg i { color: #4fc3f7; }

/* Author section */
.author-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.author-big-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  border: 3px solid var(--green);
  background: var(--bg3);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Urbanist', sans-serif; font-size: 42px; font-weight: 900; color: var(--green);
  margin-bottom: 20px;
}
.author-bio { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.author-bio strong { color: var(--strong); }
.timeline { display: flex; flex-direction: column; gap: 14px; }
.tl-item { display: flex; gap: 16px; align-items: flex-start; }
.tl-year { font-family: 'Urbanist', sans-serif; font-size: 13px; font-weight: 700; color: var(--green); min-width: 40px; padding-top: 2px; }
.tl-text { font-size: 14px; color: var(--text); line-height: 1.5; }


/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--muted); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite; pointer-events: none;
}
.scroll-hint i { font-size: 18px; color: var(--green); opacity: 0.7; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* Footer */
.site-footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand { font-family: 'Urbanist', sans-serif; font-size: 18px; color: var(--strong); display: flex; align-items: center; gap: 8px; }
.footer-brand i { color: var(--green); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-copy { font-size: 12px; color: var(--muted); }
