/* ============ Landing page ============ */

/* Offset anchor jumps so section headings aren't hidden under the sticky nav. */
html { scroll-padding-top: 90px; scroll-behavior: smooth; }

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(12, 14, 19, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.lp-nav .brand { text-decoration: none; color: inherit; }
.lp-nav-links { display: flex; align-items: center; gap: 8px; }
.lp-nav-links a { text-decoration: none; }
.lp-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.lp-link:hover { color: var(--text); background: var(--bg-soft); }

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 24px 96px;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform;
  animation: float 16s ease-in-out infinite;
}
.orb.o1 { width: 460px; height: 460px; background: #5b8cff; top: -120px; left: -80px; }
.orb.o2 { width: 420px; height: 420px; background: #8847ff; top: -40px; right: -100px; animation-delay: -5s; }
.orb.o3 { width: 380px; height: 380px; background: #e4ae39; bottom: -180px; left: 40%; opacity: 0.3; animation-delay: -10s; }
/* Translate-only (no scale) keeps the blur layer cached between frames. */
@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  33% { transform: translate3d(24px, -34px, 0); }
  66% { transform: translate3d(-18px, 22px, 0); }
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 70%);
}

.hero-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  background: rgba(91, 140, 255, 0.1);
  border: 1px solid rgba(91, 140, 255, 0.25);
  padding: 6px 14px; border-radius: 30px; margin-bottom: 26px;
}
.eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(56,211,159,0.6); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(56,211,159,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(56,211,159,0); }
  100% { box-shadow: 0 0 0 0 rgba(56,211,159,0); }
}
.hero h1 {
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
}
.hero h1 .grad {
  background: linear-gradient(100deg, #5b8cff, #8847ff 55%, #e4ae39);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.sub {
  font-size: clamp(15px, 2.2vw, 19px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-lg { padding: 14px 26px; font-size: 15px; border-radius: 11px; }
.btn-glow { box-shadow: 0 10px 30px rgba(91, 140, 255, 0.35); }

/* ---- Live stat bar ---- */
.hero-stats {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  margin-top: 64px; position: relative; z-index: 1;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-size: 34px; font-weight: 800; letter-spacing: -1px;
  background: linear-gradient(180deg, #fff, #9fb0d0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stat .lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ---- Sections ---- */
.section { max-width: 1080px; margin: 0 auto; padding: 80px 24px; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(26px, 4vw, 38px); margin: 0 0 12px; letter-spacing: -0.5px; }
.section-head p { color: var(--muted); font-size: 16px; margin: 0; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.feature {
  background: linear-gradient(180deg, var(--card), #12151d);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.15s, border-color 0.15s;
}
.feature:hover { transform: translateY(-4px); border-color: #2f3647; }
.feature .ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
  background: rgba(91,140,255,0.12); border: 1px solid rgba(91,140,255,0.2);
}
.feature h3 { margin: 0 0 8px; font-size: 18px; }
.feature p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* ---- Steps ---- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step { position: relative; padding-left: 56px; }
.step .n {
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; color: #fff;
  background: linear-gradient(135deg, #5b8cff, #8847ff);
}
.step h3 { margin: 4px 0 6px; font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* ---- Deposit / Trade Protection explainer ---- */
.deposit {
  margin: 44px auto 0;
  max-width: 900px;
  background:
    radial-gradient(620px 300px at 50% 0%, rgba(56, 211, 159, 0.08), transparent 70%),
    var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px;
}
.deposit-head { text-align: center; margin-bottom: 26px; }
.dep-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; color: var(--green);
  background: rgba(56, 211, 159, 0.1);
  border: 1px solid rgba(56, 211, 159, 0.25);
  padding: 6px 14px; border-radius: 30px; margin-bottom: 16px;
}
.deposit-head h3 { margin: 0 0 8px; font-size: 23px; letter-spacing: -0.3px; }
.deposit-head p { margin: 0 auto; max-width: 580px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

.deposit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dep-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px 22px 24px;
  transition: transform 0.15s, border-color 0.15s;
}
.dep-card:hover { transform: translateY(-3px); }
.dep-card.good { border-left: 3px solid var(--green); }
.dep-card.bad  { border-left: 3px solid #e4ae39; }
.dep-card.good:hover { border-color: rgba(56, 211, 159, 0.5); }
.dep-card.bad:hover  { border-color: rgba(228, 174, 57, 0.5); }
.dep-ic {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; margin-bottom: 12px;
}
.dep-card.good .dep-ic { background: rgba(56, 211, 159, 0.14); color: var(--green); }
.dep-card.bad .dep-ic  { background: rgba(228, 174, 57, 0.16); color: #e4ae39; }
.dep-card h4 { margin: 0 0 6px; font-size: 16px; }
.dep-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.dep-card b { color: var(--text); font-weight: 700; }

.deposit-note {
  margin: 20px auto 0; max-width: 620px; text-align: center;
  color: var(--muted); font-size: 13px; line-height: 1.6;
}
.deposit-note b { color: var(--text); }

@media (max-width: 640px) {
  .deposit { padding: 26px; }
  .deposit-grid { grid-template-columns: 1fr; }
}

/* ---- Contact ---- */
.contact-wrap {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(91,140,255,0.1), transparent 70%),
    var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px;
  max-width: 880px;
  margin: 0 auto;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.contact-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 18px 20px;
  text-decoration: none; color: inherit;
  transition: transform 0.12s, border-color 0.15s, background 0.15s;
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--accent); background: var(--card-hover); }
.contact-card .ci {
  width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: var(--bg); border: 1px solid var(--border);
}
.contact-card .ct { display: flex; flex-direction: column; }
.contact-card .ct b { font-size: 14.5px; }
.contact-card .ct span { font-size: 13px; color: var(--muted); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form h3 { margin: 0 0 4px; font-size: 20px; }
.contact-form .field input,
.contact-form .field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  resize: vertical;
}
.contact-form .field input:focus,
.contact-form .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91,140,255,0.15);
}

/* ---- Footer ---- */
.lp-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  color: var(--muted-dim);
  font-size: 13px;
}
.lp-footer .brand { justify-content: center; margin-bottom: 10px; color: var(--muted); }

@media (max-width: 760px) {
  .contact-wrap { padding: 24px; }
  .contact-cards { grid-template-columns: 1fr; }
  .hero { padding: 70px 20px 60px; }
  .hero-stats { gap: 30px; margin-top: 44px; }
}

@media (max-width: 620px) {
  .lp-nav { padding: 14px 18px; }
  .lp-hide-mobile { display: none; }
  .lp-nav-links { gap: 4px; }
  .lp-nav-links .btn { padding: 9px 14px; font-size: 13px; }
}
