/* ── Fonts ─────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap");

/* ── Variables ─────────────────────────────────────── */
:root {
  --pink: #e63e91;
  --pink-light: #f05caa;
  --pink-dim: #c1317a;
  --pink-glow: rgba(230, 62, 145, 0.18);
  --pink-glow2: rgba(230, 62, 145, 0.08);
  --bg: #07070e;
  --bg-2: #0d0d18;
  --bg-3: #12121e;
  --bg-4: #181826;
  --border: rgba(255, 255, 255, 0.07);
  --border-pink: rgba(230, 62, 145, 0.25);
  --text: #f0f0f8;
  --text-2: #9898b8;
  --text-3: #5a5a7a;
  --red: #ff5f57;
  --green: #28c840;
  --amber: #f5a623;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

/* ── Base ──────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  background: var(--pink);
  color: #fff;
}

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-2);
}
::-webkit-scrollbar-thumb {
  background: var(--pink-dim);
  border-radius: 3px;
}

/* ── Layout utilities ──────────────────────────────── */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}
.gradient-text {
  background: linear-gradient(135deg, #fff 30%, var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  text-align: center;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.22s ease;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 0 24px var(--pink-glow);
}
.btn-primary:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 32px rgba(230, 62, 145, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Tag ───────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--pink-glow);
  color: var(--pink);
  border: 1px solid var(--border-pink);
}

/* ── Spinner ───────────────────────────────────────── */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Error banner ──────────────────────────────────── */
.error-banner {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
  background: rgba(255, 95, 87, 0.1);
  border: 1px solid rgba(255, 95, 87, 0.25);
  border-radius: var(--radius);
  font-size: 0.84rem;
  color: var(--red);
}
.error-banner.show {
  display: flex;
}

/* ── Background glow (auth pages) ─────────────────── */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 60% 40% at 50% 0%,
      rgba(230, 62, 145, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 30% at 80% 80%,
      rgba(230, 62, 145, 0.04) 0%,
      transparent 60%
    );
}

/* ── Topbar (auth / onboarding pages) ─────────────── */
.topbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 68px;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 7, 14, 0.8);
  backdrop-filter: blur(12px);
}
.topbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
}
.topbar .logo img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}
.topbar-logo-text > span {
  color: var(--pink);
}
.topbar-link {
  font-size: 0.875rem;
  color: var(--text-2);
  transition: color 0.2s;
}
.topbar-link:hover {
  color: var(--text);
}
.topbar-link strong {
  color: var(--pink);
}
.topbar-step {
  font-size: 0.82rem;
  color: var(--text-3);
}

/* ── Full NAV (marketing pages) ───────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition:
    background 0.3s,
    border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 7, 14, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 36px;
  width: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.nav-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-logo-text span {
  color: var(--pink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--pink);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-login {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-login:hover {
  color: var(--pink);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.06); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s, background 0.2s;
}
/* Animate to × when open */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu ───────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 7, 14, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s, transform 0.2s;
  opacity: 0;
  transform: translateY(16px);
}
.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open a:nth-child(2) { transition-delay: 0.06s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.12s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.18s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.24s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu a,
.mobile-menu a:nth-child(n) { transition: color 0.2s, opacity 0.28s ease, transform 0.28s ease; }
.mobile-menu a:hover { color: var(--pink); }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-close:hover { background: rgba(255,255,255,0.12); }
.mobile-close svg { width: 20px; height: 20px; fill: var(--text-2); }

/* ── Ticker ────────────────────────────────────────── */
.ticker {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  overflow: hidden;
}
.ticker-inner {
  position: relative;
  display: flex;
  align-items: center;
}
.ticker-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px 0 20px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  border-right: 1px solid var(--border);
  z-index: 3;
  background: var(--bg-2);
  white-space: nowrap;
}
.ticker-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  animation: pulse-p 1.5s ease-in-out infinite;
}
@keyframes pulse-p {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.ticker-scroll-wrap {
  overflow: hidden;
  flex: 1;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-track:hover {
  animation-play-state: paused;
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-2);
  flex-shrink: 0;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.ticker-item .pair {
  color: var(--text);
  font-weight: 600;
  font-size: 0.8rem;
}
.ticker-item .price { color: var(--text); }
.ticker-item .up {
  color: #28c840;
}
.ticker-item .dn {
  color: #ff5f57;
}
.ticker-item .chg { font-size: 0.72rem; }
.ticker-item .arrow { font-size: 0.6rem; }
.ticker-fade-l,
.ticker-fade-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.ticker-fade-l {
  left: 0;
  background: linear-gradient(to right, var(--bg-2), transparent);
}
.ticker-fade-r {
  right: 0;
  background: linear-gradient(to left, var(--bg-2), transparent);
}

/* ── Footer ────────────────────────────────────────── */
.footer-mini {
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-mini-copy {
  font-size: 0.82rem;
  color: var(--text-3);
}
.footer-mini-copy span {
  color: var(--pink);
}
.footer-mini-links {
  display: flex;
  gap: 24px;
}
.footer-mini-links a {
  font-size: 0.82rem;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer-mini-links a:hover {
  color: var(--pink);
}

/* ── Auth card (login / signup / onboarding) ───────── */
.auth-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}
.auth-page.top {
  align-items: flex-start;
  padding-top: 40px;
}
.card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}
.card-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.card-logo img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: cover;
}
.card-logo .name {
  font-weight: 800;
  font-size: 1.1rem;
}
.card-logo .name span {
  color: var(--pink);
}
.card h1 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.card .subtitle {
  font-size: 0.875rem;
  color: var(--text-3);
  margin-bottom: 28px;
}

/* ── Auth form fields ──────────────────────────────── */
.form-group {
  margin-bottom: 16px;
}
.form-group label,
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 7px;
}
.form-group input,
.form-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  font-family: inherit;
}
.form-group input:focus,
.form-input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-glow);
}
.form-group input.error,
.form-input.error {
  border-color: var(--red);
}
select.form-input {
  cursor: pointer;
}
.field-error {
  font-size: 0.75rem;
  color: var(--red);
  margin-top: 5px;
}
.form-hint {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 5px;
}

/* ── Submit button ─────────────────────────────────── */
.btn-submit {
  width: 100%;
  padding: 13px;
  background: var(--pink);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s,
    box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.btn-submit:hover:not(:disabled) {
  background: var(--pink-light);
  box-shadow: 0 4px 20px rgba(230, 62, 145, 0.35);
}
.btn-submit:active:not(:disabled) {
  transform: scale(0.98);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Divider ───────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider span {
  font-size: 0.75rem;
  color: var(--text-3);
  white-space: nowrap;
}

/* ── Footer link (auth pages) ──────────────────────── */
.footer-link {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-3);
}
.footer-link a {
  color: var(--pink);
  font-weight: 600;
}
.footer-link a:hover {
  text-decoration: underline;
}

/* ── Scroll animations ─────────────────────────────── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.anim-fade-in {
  opacity: 0;
  transition: opacity 0.65s ease;
}
.anim-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.anim-fade-up.visible,
.anim-fade-in.visible,
.anim-scale.visible {
  opacity: 1;
  transform: none;
}
/* Stagger: direct children animate in sequence */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-stagger].visible > * {
  opacity: 1;
  transform: none;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-mini { flex-direction: column; text-align: center; }
  .footer-mini-links { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
}

/* ── Legal pages ────────────────────────────────────── */
.legal-page {
  flex: 1;
  padding: 80px 24px 60px;
}
.legal-container {
  max-width: 780px;
  margin: 0 auto;
}
.legal-header {
  text-align: center;
  margin-bottom: 56px;
}
.legal-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 16px 0 8px;
}
.legal-updated {
  color: var(--text-3);
  font-size: 0.85rem;
}
.legal-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.legal-body section {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}
.legal-body h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pink-light);
  margin-bottom: 14px;
}
.legal-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 16px 0 8px;
}
.legal-body p {
  color: var(--text-2);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.legal-body p:last-child {
  margin-bottom: 0;
}
.legal-body ul {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-body strong {
  color: var(--text);
  font-weight: 600;
}
.legal-body a {
  color: var(--pink-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.legal-footer-nav a {
  color: var(--pink-light);
  font-size: 0.9rem;
  font-weight: 500;
}
.legal-footer-nav a:hover {
  color: var(--pink);
}
@media (max-width: 600px) {
  .legal-body section {
    padding: 24px 20px;
  }
}

/* ── Mobile topbar fix (auth pages) ─────────────────── */
@media (max-width: 480px) {
  .topbar { padding: 0 16px; gap: 8px; }
  .topbar-link { font-size: 0.78rem; white-space: nowrap; }
  .topbar-link-prefix { display: none; }
}

/* ── Index page: noise overlay ──────────────────────── */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

/* ── Utility ─────────────────────────────────────────── */
.pink { color: var(--pink); }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 178px 24px 80px;
  overflow: hidden;
}
.hero-glow-1 {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,62,145,0.14) 0%, transparent 70%);
  top: -10%; left: -15%;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,60,230,0.1) 0%, transparent 70%);
  bottom: 5%; right: -10%;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge { margin-bottom: 24px; }
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats { display: flex; gap: 32px; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-val { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.hero-stat-val span { color: var(--pink); }
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-visual { position: relative; }

/* Mock dashboard */
.mock-dashboard {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  animation: float 6s ease-in-out infinite;
}
.mock-dashboard:hover { animation: none; }
@keyframes float {
  0%, 100% { transform: perspective(1000px) rotateY(-6deg) rotateX(2deg) translateY(0); }
  50%       { transform: perspective(1000px) rotateY(-6deg) rotateX(2deg) translateY(-8px); }
}
.mock-topbar {
  background: var(--bg-4);
  border-bottom: 1px solid var(--border);
  padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.mock-dots { display: flex; gap: 6px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #febc2e; }
.mock-dot:nth-child(3) { background: #28c840; }
.mock-title { font-size: 0.78rem; font-weight: 600; color: var(--text-3); font-family: "JetBrains Mono", monospace; }
.mock-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 600; color: #28c840;
}
.mock-badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #28c840; animation: pulse-green 1.5s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(40,200,64,0.4); }
  50%       { opacity: 0.8; box-shadow: 0 0 0 5px rgba(40,200,64,0); }
}
.mock-body { padding: 18px; }
.mock-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.mock-stat { background: var(--bg-4); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px; }
.mock-stat-l { font-size: 0.68rem; color: var(--text-3); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.mock-stat-v { font-size: 1rem; font-weight: 700; font-family: "JetBrains Mono", monospace; }
.mock-stat-v.green { color: #28c840; }
.mock-stat-v.pink  { color: var(--pink); }
.mock-stat-v.white { color: var(--text); }
.mock-table-header {
  display: grid; grid-template-columns: 1fr 1fr 0.6fr 0.8fr; gap: 8px;
  padding: 8px 10px; font-size: 0.65rem; font-weight: 600; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border); margin-bottom: 6px;
}
.mock-row {
  display: grid; grid-template-columns: 1fr 1fr 0.6fr 0.8fr; gap: 8px;
  padding: 9px 10px; border-radius: 8px;
  font-size: 0.75rem; font-family: "JetBrains Mono", monospace;
  transition: background 0.2s; animation: fadeRow 0.5s ease forwards; opacity: 0;
}
@keyframes fadeRow { to { opacity: 1; } }
.mock-row:hover { background: var(--bg-4); }
.mock-row .dir-buy  { color: #28c840; font-weight: 700; font-size: 0.68rem; }
.mock-row .dir-sell { color: #ff5f57; font-weight: 700; font-size: 0.68rem; }
.mock-row .profit-pos { color: #28c840; }
.mock-row .profit-neg { color: #ff5f57; }

/* Floating cards */
.floating-card {
  position: absolute;
  background: var(--bg-3); border: 1px solid var(--border-pink);
  border-radius: var(--radius-lg); padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 20px var(--pink-glow2);
}
.fc-bot { bottom: -28px; left: -40px; width: 200px; }
.fc-label { font-size: 0.65rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.fc-bot-name { font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.fc-bot-status { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; color: #28c840; font-weight: 500; }
.fc-bot-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #28c840; flex-shrink: 0; }
.fc-profit { top: 40px; right: -40px; width: 160px; text-align: right; }
.fc-profit-label { font-size: 0.65rem; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.fc-profit-val { font-size: 1.4rem; font-weight: 800; color: #28c840; font-family: "JetBrains Mono", monospace; }
.fc-profit-sub { font-size: 0.68rem; color: var(--text-3); }

/* ── Trusted / Logos ─────────────────────────────────── */
.trusted { padding: 36px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.trusted-inner { max-width: 1360px; margin: 0 auto; display: flex; align-items: center; gap: 40px; justify-content: center; flex-wrap: wrap; }
.trusted-label { font-size: 0.78rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; }
.trusted-items { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; justify-content: center; }
.trusted-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: var(--text-3); opacity: 0.6; transition: opacity 0.2s; }
.trusted-item:hover { opacity: 1; }
.trusted-item svg { width: 20px; height: 20px; fill: currentColor; }

/* ── How It Works ────────────────────────────────────── */
.how { padding: 100px 24px; position: relative; }
.steps { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; position: relative; }
.steps::before {
  content: ""; position: absolute; left: 28px; top: 48px; bottom: 48px;
  width: 2px; background: linear-gradient(to bottom, var(--pink), transparent);
}
.step {
  display: grid; grid-template-columns: 60px 1fr; gap: 28px; align-items: flex-start;
  padding: 20px 0; opacity: 0; transform: translateX(-24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.step.visible { opacity: 1; transform: translateX(0); }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-3); border: 2px solid var(--border-pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: var(--pink);
  flex-shrink: 0; position: relative; z-index: 1;
}
.step-content { padding-top: 8px; }
.step-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-desc { font-size: 0.95rem; color: var(--text-2); line-height: 1.7; }

/* ── Features ────────────────────────────────────────── */
.features { padding: 100px 24px; background: var(--bg-2); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1360px; margin: 0 auto; }
.feature-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all 0.3s ease; opacity: 0; transform: translateY(24px);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, var(--pink-glow2), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover { border-color: var(--border-pink); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px var(--pink-glow2); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--pink-glow); border: 1px solid var(--border-pink); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon svg { width: 22px; height: 22px; fill: var(--pink); }
.feature-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }

/* ── Bots section ────────────────────────────────────── */
.bots { padding: 100px 24px; }
.bots-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1360px; margin: 0 auto; }
.bot-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.3s ease; opacity: 0; transform: translateY(24px);
  display: flex; flex-direction: column; cursor: pointer;
  text-decoration: none; color: inherit;
}
.bot-card-link { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.bot-view-btn {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  padding: 9px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  color: var(--pink); border: 1px solid var(--border-pink); background: var(--pink-glow2);
  transition: all 0.2s; width: fit-content;
}
.bot-card:hover .bot-view-btn { background: var(--pink); color: #fff; border-color: var(--pink); }
.bot-card.visible { opacity: 1; transform: translateY(0); }
.bot-card:hover { border-color: var(--border-pink); box-shadow: 0 20px 40px rgba(0,0,0,0.3); transform: translateY(-4px); }
.bot-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.bot-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--pink-glow), rgba(100,60,230,0.12));
  border: 1px solid var(--border-pink); display: flex; align-items: center; justify-content: center; color: var(--pink);
}
.bot-icon svg { display: block; }
.pricing-badge svg { display: inline-block; vertical-align: middle; margin-right: 4px; }
.bot-style-tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 50px; border: 1px solid var(--border); color: var(--text-3); }
.bot-name { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.bot-strategy { font-size: 0.82rem; color: var(--pink); font-weight: 600; margin-bottom: 12px; }
.bot-desc { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.bot-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 18px; border-top: 1px solid var(--border); }
.bot-meta-item { display: flex; flex-direction: column; gap: 2px; }
.bot-meta-label { font-size: 0.65rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; }
.bot-meta-val { font-size: 0.85rem; font-weight: 600; color: var(--text); font-family: "JetBrains Mono", monospace; }

/* ── Stats section ───────────────────────────────────── */
.stats-section { padding: 80px 24px; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.stat-block { background: var(--bg-3); padding: 36px 28px; text-align: center; opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stat-block.visible { opacity: 1; transform: translateY(0); }
.stat-block-num { font-size: 2.6rem; font-weight: 900; color: var(--text); margin-bottom: 6px; letter-spacing: -0.03em; }
.stat-block-num span { color: var(--pink); }
.stat-block-label { font-size: 0.85rem; color: var(--text-2); font-weight: 500; }

/* ── Pricing ─────────────────────────────────────────── */
.pricing { padding: 120px 24px; position: relative; overflow: hidden; }
.pricing-glow { position: absolute; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(230,62,145,0.09) 0%, transparent 70%); top: 10%; right: -20%; pointer-events: none; }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 56px; }
.pricing-toggle-label { font-size: 0.88rem; font-weight: 600; color: var(--text-2); }
.pricing-toggle-label.active { color: var(--text); }
.toggle-switch { position: relative; width: 48px; height: 26px; cursor: pointer; }
.toggle-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-track { position: absolute; inset: 0; background: var(--bg-4); border: 1px solid var(--border); border-radius: 13px; transition: background 0.25s; }
.toggle-switch input:checked + .toggle-track { background: var(--pink); border-color: var(--pink); }
.toggle-thumb { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform 0.25s; pointer-events: none; }
.toggle-switch input:checked ~ .toggle-thumb { transform: translateX(22px); }
.toggle-save-badge { background: var(--pink-glow); color: var(--pink); border: 1px solid var(--border-pink); border-radius: 50px; padding: 2px 10px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; }
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; max-width: 1360px; margin: 0 auto 80px; }
.pricing-card { background: var(--bg-2); padding: 36px 28px 40px; display: flex; flex-direction: column; position: relative; transition: background 0.2s; }
.pricing-card:hover { background: var(--bg-3); }
.pricing-card.featured { background: var(--bg-3); border-left: 1px solid var(--border-pink); border-right: 1px solid var(--border-pink); }
.pricing-card.featured::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--pink-dim), var(--pink), var(--pink-dim)); }
.pricing-badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 50px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; width: fit-content; }
.pricing-badge.trial   { background: rgba(100,180,255,0.1); color: #64b4ff; border: 1px solid rgba(100,180,255,0.2); }
.pricing-badge.starter { background: rgba(80,220,140,0.1);  color: #50dc8c; border: 1px solid rgba(80,220,140,0.2); }
.pricing-badge.pro     { background: var(--pink-glow);      color: var(--pink); border: 1px solid var(--border-pink); }
.pricing-badge.elite   { background: rgba(180,120,255,0.1); color: #b478ff; border: 1px solid rgba(180,120,255,0.2); }
.pricing-plan-name { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.pricing-tagline { font-size: 0.8rem; color: var(--text-3); margin-bottom: 28px; line-height: 1.5; min-height: 36px; }
.pricing-price { margin-bottom: 28px; }
.pricing-amount { font-size: 2.8rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; color: var(--text); }
.pricing-amount sup { font-size: 1.2rem; font-weight: 700; vertical-align: super; margin-right: 2px; color: var(--text-2); }
.pricing-period { font-size: 0.8rem; color: var(--text-3); margin-top: 4px; }
.pricing-annual-note { font-size: 0.75rem; color: var(--pink); margin-top: 3px; min-height: 18px; }
.pricing-cta { display: block; text-align: center; padding: 11px 20px; border-radius: 50px; font-size: 0.88rem; font-weight: 700; cursor: pointer; transition: all 0.22s; margin-bottom: 28px; border: none; font-family: inherit; text-decoration: none; }
.pricing-cta.primary { background: var(--pink); color: #fff; box-shadow: 0 0 20px var(--pink-glow); }
.pricing-cta.primary:hover { background: var(--pink-light); transform: translateY(-1px); box-shadow: 0 4px 28px rgba(230,62,145,0.35); }
.pricing-cta.outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.pricing-cta.outline:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-1px); }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 20px; }
.pricing-feature-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 12px; }
.pricing-features-list { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.pricing-features-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.82rem; color: var(--text-2); line-height: 1.45; }
.pricing-features-list li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; }
.pricing-features-list li.check svg { fill: #50dc8c; }
.pricing-features-list li.cross svg { fill: var(--text-3); }
.pricing-features-list li.cross span { color: var(--text-3); text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.15); }
.pricing-compare { max-width: 1360px; margin: 0 auto; }
.pricing-compare-title { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 36px; letter-spacing: -0.02em; }
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-2); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.compare-table thead tr { border-bottom: 1px solid var(--border); }
.compare-table th { padding: 20px 18px; font-size: 0.82rem; font-weight: 700; text-align: center; color: var(--text-2); white-space: nowrap; }
.compare-table th:first-child { text-align: left; color: var(--text-3); font-weight: 600; width: 260px; }
.compare-table th.col-featured { color: var(--pink); background: rgba(230,62,145,0.04); }
.compare-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.15s; }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.compare-table tbody tr.section-row td { padding: 14px 18px 6px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); background: var(--bg); border-top: 1px solid var(--border); }
.compare-table td { padding: 13px 18px; font-size: 0.83rem; color: var(--text-2); vertical-align: middle; }
.compare-table td:first-child { color: var(--text); font-weight: 500; }
.compare-table td.col-featured { background: rgba(230,62,145,0.03); }
.compare-table td:not(:first-child) { text-align: center; }
.ct-check { display: inline-flex; width: 20px; height: 20px; border-radius: 50%; align-items: center; justify-content: center; background: rgba(80,220,140,0.12); }
.ct-check svg { width: 12px; height: 12px; fill: #50dc8c; }
.ct-cross { display: inline-flex; width: 20px; height: 20px; border-radius: 50%; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); }
.ct-cross svg { width: 12px; height: 12px; fill: var(--text-3); }
.ct-val { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.ct-val.pink { color: var(--pink); }

/* ── CTA ─────────────────────────────────────────────── */
.cta { padding: 120px 24px; position: relative; overflow: hidden; text-align: center; }
.cta-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(230,62,145,0.12) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-title { font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 18px; }
.cta-sub { font-size: 1.05rem; color: var(--text-2); margin-bottom: 40px; line-height: 1.65; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-note { margin-top: 20px; font-size: 0.8rem; color: var(--text-3); }

/* ── Full Footer ─────────────────────────────────────── */
.footer { padding: 48px 24px 32px; border-top: 1px solid var(--border); background: var(--bg-2); }
.footer-inner { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.footer-brand img { height: 34px; width: 34px; border-radius: 8px; object-fit: cover; margin-bottom: 14px; }
.footer-brand-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.footer-brand-name span { color: var(--pink); }
.footer-desc { font-size: 0.85rem; color: var(--text-3); line-height: 1.7; max-width: 240px; }
.footer-col-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--text-2); transition: color 0.2s; }
.footer-links a:hover { color: var(--pink); }
.footer-bottom { max-width: 1360px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.82rem; color: var(--text-3); }
.footer-copy span { color: var(--pink); }
.footer-disclaimer { font-size: 0.78rem; color: var(--text-3); max-width: 480px; text-align: right; line-height: 1.6; }

/* ── Index page responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .features-grid, .bots-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured::before { display: none; }
  .pricing-card.featured { border-left: none; border-right: none; border-top: 2px solid var(--pink); }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .features-grid, .bots-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }
  .steps::before { display: none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
}

