:root {
  --bg-a: #240044;
  --bg-b: #0f0240;
  --bg-c: #400959;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --purple: #7450fe;
  --cyan: #4ad6ff;
  --green: #2ee59d;
  --radius-pill: 50px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body.site-body {
  font-family: Poppins, sans-serif;
  color: var(--text);
  background: linear-gradient(#240044 0%, #0f0240 25%, #400959 40%, #0f0240 65%, #0f0240);
  background-attachment: fixed;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.site-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(46, 229, 157, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 22%, rgba(74, 214, 255, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 64% 70%, rgba(116, 80, 254, 0.2) 0 2px, transparent 3px),
    repeating-radial-gradient(circle at 8% 30%, transparent 0 18px, rgba(116, 80, 254, 0.07) 19px, transparent 20px);
  opacity: 0.9;
}

.site-header, .site-main, .site-footer, .social-rail, .scroll-top { position: relative; z-index: 1; }

.social-rail {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 8px;
  border-radius: 40px;
  background: rgba(10, 4, 40, 0.55);
  border: 1px solid var(--line);
  z-index: 30;
}
.social-rail a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  opacity: 0.85;
}
.social-rail a:hover { opacity: 1; background: rgba(116, 80, 254, 0.35); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(rgba(15, 2, 64, 0.72), rgba(15, 2, 64, 0.2));
  backdrop-filter: blur(10px);
}
.site-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.site-logo-text { font-size: 22px; letter-spacing: -0.02em; }
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  padding: 8px 12px;
}
.site-nav a:hover, .site-nav a.is-active { color: #fff; }
.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--purple);
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-left: 12px;
}
.btn-login:hover { background: rgba(116, 80, 254, 0.18); color: #fff; }
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 11px;
}
.nav-toggle span { display: block; height: 2px; background: #fff; }

.btn-grad, .btn-grad-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: 0;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
  cursor: pointer;
}
.btn-grad { background: linear-gradient(90deg, #2ee59d, #4ad6ff 55%, #6a7bff); }
.btn-grad-alt { background: linear-gradient(90deg, #4ad6ff, #7a5cff); }
.btn-grad:hover, .btn-grad-alt:hover { filter: brightness(1.08); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 11px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--purple);
  background: transparent;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
}
.btn-block { width: 100%; }

.hero-stage {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  min-height: calc(100vh - 90px);
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 90, 180, 0.35);
  border: 1px solid rgba(74, 214, 255, 0.25);
  border-radius: var(--radius-pill);
  padding: 7px 14px 7px 10px;
  font-size: 13px;
  color: #dceeff;
}
.kicker-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2ee59d;
  color: #083322;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
}
.hero-copy h1 {
  margin: 18px 0 14px;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-copy .lead {
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 460px;
  font-size: 15px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.iso-art { width: 100%; max-width: 540px; margin-left: auto; }

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 42px; }
.section-head h2 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
}
.section-head p { margin: 0; color: var(--muted); }

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}
.score-row { display: flex; gap: 28px; margin: 8px 0 18px; }
.score {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(#2ee59d var(--p), rgba(255,255,255,0.12) 0);
  position: relative;
}
.score::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #160248;
}
.score span { position: relative; font-size: 28px; font-weight: 700; }
.about-note { color: var(--muted); font-size: 14px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.feature-block h3 { margin: 0 0 12px; font-size: 22px; }
.feature-block p { color: var(--muted); }
.link-more { color: #9ad8ff; font-weight: 600; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card, .team-card, .info-card, .glass {
  background: rgba(22, 8, 64, 0.45);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
}
.svc-ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(46,229,157,0.2), rgba(116,80,254,0.35));
  font-size: 22px;
}
.svc-card h3, .info-card h3 { margin: 0 0 8px; font-size: 18px; }
.svc-card p, .info-card p { margin: 0; color: var(--muted); font-size: 14px; }

.roadmap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  position: relative;
}
.roadmap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(#2ee59d, #7450fe);
  transform: translateX(-50%);
}
.road-item { padding: 8px 12px; }
.road-item time { color: #9ad8ff; font-size: 13px; font-weight: 600; }
.road-item h3 { margin: 6px 0 8px; font-size: 20px; }
.road-item p { margin: 0; color: var(--muted); }

.wallet-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: center; }
.wallet-list h3 { margin: 0 0 8px; }
.wallet-list p { color: var(--muted); margin: 0 0 22px; }
.phone-mock {
  min-height: 340px;
  border-radius: 36px;
  border: 8px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, #2a1068, #12043a);
  padding: 28px 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.phone-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  color: #fff;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.faq-item p { display: none; color: var(--muted); margin: 10px 0 0; }
.faq-item.open p { display: block; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-group { margin: 0 0 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-control, .custom-select, textarea.form-control {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}
.form-control:focus, .custom-select:focus { border-color: var(--purple); }
.custom-select option { color: #111; }
.input-group { display: flex; }
.input-group-text {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 12px 0 0 12px;
  padding: 12px 14px;
  color: var(--muted);
}
.input-group .form-control { border-radius: 0 12px 12px 0; }

.page-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 24px 80px; }
.page-kicker { color: #9ad8ff; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.page-wrap h1 { font-size: 40px; margin: 8px 0 12px; }
.page-lead { color: var(--muted); max-width: 640px; }
.grid-3, .grid-2 { display: grid; gap: 16px; margin-top: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.price { font-size: 26px; font-weight: 700; margin: 10px 0; }
.tag { color: #9ad8ff; font-size: 12px; font-weight: 600; text-transform: uppercase; }
.table-wrap { overflow: auto; margin-top: 24px; }
.site-table { width: 100%; border-collapse: collapse; }
.site-table th, .site-table td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line); font-size: 14px; }
.site-table th { color: var(--muted); }
.chg-up { color: var(--green); font-weight: 700; }
.chg-down { color: #ff6b8a; font-weight: 700; }
.hero-actions { margin-top: 8px; }
.steps { display: grid; gap: 12px; margin-top: 24px; }
.step { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 16px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(90deg, #2ee59d, #7450fe);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.steps { counter-reset: step; }
.step h3 { margin: 0 0 6px; font-size: 16px; }
.step p { margin: 0; }
.muted { color: var(--muted); }

.market-id { display: inline-flex; align-items: center; gap: 10px; }
.coin-dot {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
}
.coin-btc { background: #f7931a; }
.coin-eth { background: #627eea; }
.coin-sol { background: #14f195; color: #052e16; }
.coin-usdt { background: #26a17b; }

.auth-shell { min-height: calc(100vh - 240px); display: flex; align-items: center; justify-content: center; padding: 40px 16px; }
.auth-card { width: 100%; max-width: 440px; padding: 32px 28px; }
.auth-card h1 { font-size: 26px; margin: 0 0 6px; }
.alert { border-radius: 12px; padding: 10px 12px; margin-bottom: 14px; font-size: 14px; }
.alert-danger { background: rgba(255, 107, 138, 0.16); color: #ffd0da; }
.alert-success { background: rgba(46, 229, 157, 0.16); color: #c8ffe8; }
.alert-info { background: rgba(74, 214, 255, 0.16); color: #d7f4ff; }
.form-text { font-size: 12px; color: var(--muted); margin-top: 6px; display: block; }
.text-success { color: var(--green) !important; }
.text-danger { color: #ff6b8a !important; }
.auth-links { display: flex; justify-content: space-between; margin-top: 14px; font-size: 13px; color: #9ad8ff; }
.cred-box { background: rgba(255,255,255,0.06); border: 1px solid var(--line); border-radius: 12px; padding: 14px; margin: 12px 0 16px; }

.team-card { text-align: center; }
.avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #2ee59d, #7450fe);
  font-weight: 700; font-size: 22px;
}
.team-card h3 { margin: 0; font-size: 18px; }
.team-card p { margin: 4px 0 0; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 24px 20px;
  background: rgba(8, 2, 32, 0.45);
}
.site-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer-brand p, .site-footer p { color: var(--muted); }
.site-footer h4 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ad8ff;
}
.site-footer a { display: block; padding: 4px 0; font-size: 14px; }
.site-footer-bottom {
  max-width: 1180px;
  margin: 28px auto 0;
  color: var(--muted);
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 30;
}

@media (max-width: 980px) {
  .social-rail { display: none; }
  .hero-stage, .about-grid, .two-col, .roadmap, .wallet-grid, .contact-grid, .svc-grid, .team-grid, .grid-3, .grid-2, .site-footer-inner {
    grid-template-columns: 1fr;
  }
  .roadmap::before { display: none; }
  .hero-copy h1 { font-size: 36px; }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .site-nav, .site-header-actions { display: none; }
  body.nav-open .site-nav,
  body.nav-open .site-header-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .site-header-inner { flex-wrap: wrap; }
  .btn-login { margin: 8px 0 0; }
}
