@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #000000;
  --bg-card: #0a0a0a;
  --bg-elevated: #111111;
  --text: #f2f2f2;
  --muted: #7a8f82;
  --accent: #58b38f;
  --accent-2: #3d9a72;
  --accent-bright: #6ec9a3;
  --gold: #ffb800;
  --gold-bright: #ffd700;
  --green: #58b38f;
  --green-bright: #00ff85;
  --green-neon: #00ff85;
  --red: #e85d6f;
  --border: rgba(88, 179, 143, 0.12);
  --glow: 0 0 60px rgba(88, 179, 143, 0.14);
  --radius: 12px;
  --font: 'Nunito', system-ui, sans-serif;
  --nav-height: 58px;
  --ticker-height: 40px;
  --space-xs: 0.35rem;
  --space-sm: 0.65rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.75rem;
  --section-y: clamp(2.75rem, 7vw, 4.5rem);
  --container-px: clamp(1rem, 4vw, 1.75rem);
  --logo-nav: 44px;
  --logo-auth: 52px;
  --logo-footer: 40px;
}

body.landing-page {
  --site-header: calc(var(--nav-height) + var(--ticker-height));
}

body:not(.landing-page) {
  --site-header: var(--nav-height);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(88, 179, 143, 0.08), transparent),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1120px, calc(100% - var(--container-px) * 2));
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

/* ─── Brand logo — consistent sizing sitewide ───────────────────────────── */
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(88, 179, 143, 0.08);
  border: 1px solid rgba(88, 179, 143, 0.18);
  overflow: hidden;
}

.logo-mark--nav { width: 40px; height: 40px; padding: 5px; }
.logo-mark--auth { width: 36px; height: 36px; padding: 4px; }
.logo-mark--sidebar { width: 34px; height: 34px; padding: 4px; border-radius: 10px; }
.logo-mark--loader {
  width: 80px;
  height: 80px;
  padding: 10px;
  border-radius: 20px;
  animation: logo-pulse 1.8s ease-in-out infinite;
}

.brand-logo,
.logo img,
.auth-logo img,
.footer-brand img,
.logo-mark img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  display: block;
}

.text-center { text-align: center; }

/* ─── Sticky site header (nav + ticker unified) ─────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  border-bottom: 1px solid rgba(88, 179, 143, 0.12);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.96);
  border-bottom-color: rgba(0, 255, 133, 0.22);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(0, 255, 133, 0.06);
}

.site-header.scrolled .nav-glow-line {
  opacity: 1;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 133, 0.75), rgba(88, 179, 143, 0.45), transparent);
}

/* ─── Nav (futuristic green) ──────────────────────────────────────────── */
.nav {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  backdrop-filter: none;
}

.nav-future {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45), inset 0 -1px 0 rgba(88, 179, 143, 0.08);
}

.nav-glow-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 133, 0.45), rgba(88, 179, 143, 0.28), transparent);
  pointer-events: none;
  opacity: 0.65;
  transition: opacity 0.35s ease;
}

.nav-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  padding: 0.6rem 0;
  min-height: var(--nav-height);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1.4vw, 1.25rem);
  list-style: none;
  margin: 0;
  padding: 0 0.25rem;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.nav-links::-webkit-scrollbar { display: none; }

.nav-links a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s, text-shadow 0.25s;
  position: relative;
  padding: 0.35rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-bright);
  text-decoration: none;
  text-shadow: 0 0 18px rgba(0, 255, 133, 0.28);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.btn-nav {
  padding: 0.48rem 1rem !important;
  font-size: 0.78rem !important;
  border-radius: 999px !important;
  white-space: nowrap;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-nav-signin {
  border: 1px solid rgba(88, 179, 143, 0.45) !important;
  background: rgba(0, 0, 0, 0.35) !important;
  color: var(--text) !important;
  box-shadow: none !important;
}

.btn-nav-signin:hover {
  border-color: var(--green-bright) !important;
  color: var(--green-bright) !important;
  background: rgba(0, 255, 133, 0.08) !important;
  text-decoration: none !important;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 900;
  font-size: clamp(0.72rem, 1.8vw, 1.05rem);
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

#cryptovex-nav ~ .mobile-brand { display: none !important; }

/* Auth pages — logo-only header (login / register) */
.auth-page {
  --nav-height: 52px;
  --site-header: var(--nav-height);
}

html:has(body.auth-page) {
  overflow: hidden;
  height: 100%;
  max-height: 100dvh;
}

.site-header--auth {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(88, 179, 143, 0.12);
}

.site-header--auth .nav-inner--auth {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  grid-template-columns: none;
  max-width: none;
  width: 100%;
  padding: 0.55rem clamp(1.25rem, 4vw, 2.75rem);
  min-height: var(--nav-height);
}

.site-header--auth .nav-links,
.site-header--auth .nav-actions {
  display: none !important;
}

.site-header--auth .logo--auth {
  margin: 0;
}

.site-header--auth .logo--auth img {
  width: 40px;
  height: 40px;
}

.site-header--auth .logo-text {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: #fff;
}

.auth-page .auth-visual-top {
  justify-content: flex-start;
  padding-top: 0;
}

.auth-page .auth-visual-brand {
  display: none;
}

.nav-shortcuts,
.nav-menu-btn,
.nav-drawer { display: none !important; }

.form-page { padding-top: 64px; }

.logo:hover { text-decoration: none; }

.logo img {
  width: var(--logo-nav);
  height: var(--logo-nav);
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(88, 179, 143, 0.4));
}

.logo span { color: var(--accent); }

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.live-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.ticker-bar {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
  border-bottom: none;
  border-top: 1px solid rgba(88, 179, 143, 0.08);
  overflow: hidden;
  height: var(--ticker-height);
}

.site-header--ticker .ticker-bar {
  display: block;
}

.site-header:not(.site-header--ticker) .ticker-bar {
  display: none;
}

.ticker-track {
  display: flex;
  align-items: center;
  height: 40px;
  gap: 0;
  animation: ticker-scroll var(--ticker-duration, 24s) linear infinite;
  white-space: nowrap;
  padding: 0 0.5rem;
  will-change: transform;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0 0.85rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.ticker-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.ticker-symbol {
  font-weight: 800;
  font-size: 0.84rem;
  color: #fff;
  letter-spacing: 0.03em;
  min-width: 2.75rem;
}

.ticker-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(180, 200, 190, 0.85);
  max-width: 5.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticker-sep {
  width: 1px;
  height: 1.1rem;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 0.15rem;
  flex-shrink: 0;
}

.ticker-price {
  color: #e8fff4;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  min-width: 5rem;
  text-align: right;
  font-size: 0.84rem;
}

.ticker-chg-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 4.75rem;
  justify-content: flex-end;
}

.ticker-chg-label {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(140, 160, 150, 0.9);
}

.ticker-item strong { color: var(--text); }

.ticker-chg--up,
.ticker-chg.up {
  color: #00FF85 !important;
  font-weight: 700;
}

.ticker-chg--down,
.ticker-chg.down {
  color: #f87171 !important;
  font-weight: 700;
}

.ticker-chg--flat {
  color: var(--muted) !important;
  font-weight: 600;
}

.up { color: #00FF85 !important; font-weight: 700; }
.down { color: #f87171 !important; font-weight: 700; }

.market-flat { color: var(--muted) !important; font-weight: 600; }

.hero.has-ticker { padding-top: var(--site-header); }

/* ─── Landing hero (Nexas-style split) ─────────────────────────────────── */
.hero-coin {
  position: relative;
  margin-top: 0;
  min-height: calc(100svh - var(--site-header));
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 1.5rem 0 2rem;
  background: #000;
}

.hero-coin.has-ticker {
  padding-top: calc(var(--site-header) + 1rem);
}

@media (min-width: 901px) {
  .landing-page .hero-coin.has-ticker {
    min-height: min(86vh, 820px);
    padding-bottom: 2.5rem;
  }
}

.hero-coin-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 78% 50%, rgba(88, 179, 143, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 20% 40%, rgba(88, 179, 143, 0.05) 0%, transparent 50%),
    #000;
  pointer-events: none;
}

.hero-coin-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-copy-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero-copy--split {
  max-width: none;
  margin: 0;
  text-align: left;
  align-items: flex-start;
  width: 100%;
}

.hero-copy--split .hero-badge {
  margin-bottom: 0.55rem;
  font-size: 0.68rem;
}

.hero-copy--split h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  margin-bottom: 0.65rem;
  line-height: 1.1;
  max-width: 540px;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(0.88rem, 1.6vw, 0.98rem);
  line-height: 1.55;
  max-width: 500px;
  margin: 0 0 1.15rem;
}

.hero-activity {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 0.15rem;
}

.hero-activity-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 0.7rem;
}

.hero-activity-eyebrow {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(88, 179, 143, 0.85);
}

.hero-copy--split .hero-activity {
  margin: 0;
  max-width: 100%;
}

#cryptovex-nav {
  position: relative;
  z-index: 200;
}

.hero-visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hero-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stage-ring {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 255, 133, 0.14) 0%, rgba(88, 179, 143, 0.06) 42%, transparent 68%);
  border: 1px solid rgba(0, 255, 133, 0.18);
  box-shadow:
    0 0 60px rgba(0, 255, 133, 0.12),
    inset 0 0 40px rgba(0, 255, 133, 0.06);
  animation: stage-pulse 4s ease-in-out infinite;
}

.hero-stage-ring::after {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(0, 255, 133, 0.12);
}

.hero-stage-lines {
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 0deg at 50% 55%, transparent 0deg, rgba(0, 255, 133, 0.08) 20deg, transparent 40deg, rgba(0, 255, 133, 0.06) 120deg, transparent 140deg, rgba(0, 255, 133, 0.07) 220deg, transparent 240deg, rgba(0, 255, 133, 0.05) 300deg, transparent 320deg);
  mask-image: radial-gradient(circle at 50% 55%, black 18%, transparent 62%);
  pointer-events: none;
}

@keyframes stage-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.04); opacity: 1; }
}

.hero-coin-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  max-height: min(56vh, 500px);
  z-index: 2;
}

.hero-coin-glow {
  position: absolute;
  width: min(90%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 179, 143, 0.18) 0%, rgba(0, 120, 255, 0.08) 35%, transparent 70%);
  filter: blur(40px);
  animation: coin-glow-pulse 4s ease-in-out infinite;
}

@keyframes coin-glow-pulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-stage--symbols {
  max-width: 380px;
  margin: 0 auto;
}

.hero-symbol-stage {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}

.hero-coin-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  width: 100%;
}

.hero-coin-card.is-switching .hero-coin-disc {
  animation: hero-coin-pop 0.45s ease;
}

.hero-coin-card.is-switching .hero-coin-meta {
  animation: hero-meta-fade 0.45s ease;
}

@keyframes hero-coin-pop {
  0% { opacity: 0.85; transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes hero-meta-fade {
  0% { opacity: 0.5; transform: translateY(4px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-coin-disc {
  position: relative;
  width: min(48vw, 188px);
  height: min(48vw, 188px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-coin-disc-rim {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 210deg, #00ff85 0%, #00c98a 35%, #058f5e 55%, #00ff85 100%);
  box-shadow:
    0 18px 48px rgba(0, 255, 133, 0.28),
    0 4px 16px rgba(0, 0, 0, 0.45),
    inset 0 2px 0 rgba(255, 255, 255, 0.25);
}

.hero-coin-disc-face {
  position: relative;
  z-index: 1;
  width: 86%;
  height: 86%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  box-shadow: inset 0 0 28px rgba(0, 0, 0, 0.95);
}

.hero-coin-icon-wrap {
  position: relative;
  width: 68%;
  height: 68%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-coin-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 133, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.hero-coin-icon {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 10px rgba(0, 255, 133, 0.32))
    drop-shadow(0 5px 14px rgba(0, 0, 0, 0.65));
}

.hero-coin-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  width: 100%;
  max-width: 20rem;
  padding: 0.65rem 1rem 0.75rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 255, 133, 0.18);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hero-coin-head {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.hero-coin-symbol {
  font-weight: 900;
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  letter-spacing: 0.04em;
  color: #00ff85;
}

.hero-coin-name {
  font-weight: 600;
  font-size: clamp(0.82rem, 3vw, 0.95rem);
  color: rgba(200, 230, 215, 0.88);
}

.hero-coin-pair {
  font-weight: 700;
  font-size: clamp(0.78rem, 2.8vw, 0.88rem);
  letter-spacing: 0.08em;
  color: rgba(184, 212, 196, 0.75);
  text-transform: uppercase;
}

.hero-coin-price {
  font-size: clamp(1.75rem, 6.5vw, 2.35rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
  text-shadow: 0 2px 16px rgba(0, 255, 133, 0.25);
}

.hero-coin-price--live {
  color: #f4fffb;
}

.hero-coin-chg-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.15rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-coin-chg-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(180, 210, 195, 0.95);
}

.hero-coin-chg {
  font-size: clamp(1rem, 3.8vw, 1.2rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.hero-coin-chg.profit-pos {
  color: #00ff85;
  text-shadow: 0 0 12px rgba(0, 255, 133, 0.35);
}

.hero-coin-chg.profit-neg {
  color: #ff6b6b;
  text-shadow: 0 0 12px rgba(255, 107, 107, 0.3);
}

.hero-coin-chg--muted {
  color: var(--muted, #888);
}

/* Legacy orbit styles — kept for cache safety, unused */
.hero-symbol-center,
.hero-orbit,
.hero-orbit-slot,
.hero-orbit-icon {
  display: none !important;
}

.coin-icon-plain {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.ticker-item .coin-icon-plain {
  width: 22px;
  height: 22px;
  image-rendering: -webkit-optimize-contrast;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.75))
    drop-shadow(0 0 6px rgba(0, 255, 133, 0.22))
    drop-shadow(0 2px 5px rgba(0, 0, 0, 0.45));
}

.landing-feed-list .market-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.market-row-icon {
  flex-shrink: 0;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.market-row-icon .coin-icon-plain {
  width: 32px;
  height: 32px;
}

.landing-binance-card {
  border-color: rgba(0, 255, 133, 0.22);
  background: linear-gradient(180deg, rgba(0, 255, 133, 0.04) 0%, rgba(10, 10, 10, 0.6) 100%);
}

.landing-binance-card .market-watch-title {
  color: #00ff85;
}

.landing-sentiment-card {
  border-color: rgba(88, 179, 143, 0.18);
}

.landing-exec-card .exec-platform-bar--inset {
  border-bottom: 1px solid rgba(0, 255, 133, 0.12);
  margin-bottom: 0.75rem;
  padding-bottom: 0.85rem;
}

.landing-exec-card .exec-platform-stat--profit strong {
  color: #00ff85;
}

.hero-coin-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(100%, 460px);
  max-height: min(52vh, 460px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 60px rgba(88, 179, 143, 0.12));
  animation: coin-float 5s ease-in-out infinite;
}

@keyframes coin-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* legacy full-bg hero (unused) */
.hero-fullbg {
  position: relative;
  margin-top: 104px;
  min-height: min(92vh, 900px);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 2rem 0 3rem;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.82) 45%, rgba(0,0,0,0.95) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.75) 100%);
}

.hero-full-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-copy--centered {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.hero-institutional {
  max-width: 520px;
  margin: 0 auto 1.5rem !important;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* legacy panel — kept for backwards compat, landing uses .hero-activity */
.hero-metrics-panel {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.hero-metrics-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  flex-wrap: wrap;
}

.hero-metrics-eyebrow {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(88, 179, 143, 0.85);
}

.hero-metrics-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.58rem;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.55;
  transition: opacity 0.3s, color 0.3s;
}

.hero-metrics-live.is-live {
  opacity: 1;
  color: #2dd4a8;
}

.hero-metrics-live.is-hot {
  color: #00ff85;
}

.live-dot--pulse-fast {
  animation-duration: 0.65s !important;
}

.hero-metrics-live-hint {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  color: #2dd4a8;
  font-weight: 600;
  min-height: 1.1em;
}

.hero-metrics-live-hint.hidden {
  visibility: hidden;
  opacity: 0;
}

.hero-metrics--pulse {
  animation: hero-panel-pulse 0.45s ease;
}

@keyframes hero-panel-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

.exec-platform-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.exec-platform-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.85rem 0.75rem;
  text-align: center;
}

.exec-platform-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
}

.exec-platform-stat strong {
  display: block;
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: #fff;
  margin-top: 0.3rem;
  font-variant-numeric: tabular-nums;
  transition: color 0.25s ease, transform 0.25s ease;
}

.exec-platform-stat strong.is-ticking {
  animation: hero-metric-tick 0.4s ease;
}

.exec-platform-stat--profit strong {
  color: #00FF85;
  text-shadow: 0 0 16px rgba(0, 255, 133, 0.2);
}

@media (max-width: 768px) {
  .exec-platform-bar {
    grid-template-columns: 1fr;
  }
}

.hero-landing {
  position: relative;
  margin-top: 0;
  padding: 0;
  background: var(--bg);
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  min-height: min(70vh, 680px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
  max-width: 540px;
  margin: 0 auto;
}

.hero-photo-panel {
  position: relative;
  height: min(72vh, 640px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(88, 179, 143, 0.2);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 80px rgba(88, 179, 143, 0.08);
}

.hero-side-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-photo-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.75) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.hero-copy .hero-stats {
  justify-content: center;
  width: 100%;
}

.hero-copy .hero-actions {
  justify-content: center;
}

.hero-copy .desc {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy .hero-badge {
  margin-bottom: 1rem;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.hero-copy h1 {
  margin-bottom: 0.65rem;
}

.hero-copy .tagline {
  margin-bottom: 1rem;
}

.hero-copy .desc-lead {
  margin-bottom: 0.5rem !important;
}

.hero-copy .desc:last-of-type {
  margin-bottom: 1.5rem;
  max-width: 480px;
}

/* legacy hero visual (unused on landing) */
.hero-visual {
  display: none;
}

.hero-split {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding: 3rem 0 4rem;
}

.hero-content--left {
  max-width: 620px;
  text-align: left;
  margin: 0;
  padding: 0;
}

.hero-content--left .hero-logo {
  width: 72px;
  height: 72px;
  margin: 0 0 1.25rem;
}

.hero-content--left .hero-stats {
  justify-content: flex-start;
}

.hero-content--left .hero-actions {
  justify-content: flex-start;
}

.hero-content--left .desc {
  margin-left: 0;
  margin-right: 0;
}

.desc-lead {
  font-weight: 700 !important;
  color: var(--text) !important;
  margin-bottom: 0.75rem !important;
}

.trust-band {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.trust-band .trust-strip {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.trust-band .trust-item {
  background: transparent;
  border: none;
  padding: 0.65rem 0.5rem;
  text-align: center;
}

.trust-band .trust-item .num {
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}

.trust-band .trust-item .lbl {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

.hero-stats {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Hero platform metrics (landing) */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.45rem, 1.2vw, 0.75rem);
  width: 100%;
  max-width: 100%;
  margin: 0 0 1.1rem;
  align-items: stretch;
}

.hero-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: clamp(84px, 12vw, 104px);
  background: rgba(8, 8, 8, 0.55);
  border: 1px solid rgba(88, 179, 143, 0.14);
  border-radius: 14px;
  padding: clamp(0.65rem, 1.5vw, 0.9rem) clamp(0.4rem, 1vw, 0.6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-width: 0;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.hero-metric.is-hot {
  border-color: rgba(0, 255, 133, 0.38);
  box-shadow: 0 0 28px rgba(0, 255, 133, 0.1);
  transform: translateY(-1px);
}

.hero-metric::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  opacity: 0.7;
}

.hero-metric--mint .hero-metric-value { color: #6ec9a3; }
.hero-metric--mint::after { background: #6ec9a3; }
.hero-metric--green .hero-metric-value { color: #58b38f; }
.hero-metric--green::after { background: #58b38f; }
.hero-metric--bright .hero-metric-value {
  color: #00FF85;
  text-shadow: 0 0 20px rgba(0, 255, 133, 0.3);
}
.hero-metric--bright::after { background: #00FF85; }
.hero-metric--bright {
  border-color: rgba(0, 255, 133, 0.15);
  background: rgba(0, 255, 133, 0.04);
}

/* legacy metric colors */
.hero-metric--cyan .hero-metric-value { color: #6ec9a3; }
.hero-metric--cyan::after { background: #6ec9a3; }
.hero-metric--gold .hero-metric-value { color: #58b38f; }
.hero-metric--gold::after { background: #58b38f; }

.hero-metric-value {
  font-size: clamp(0.92rem, 2.4vw, 1.55rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  word-break: break-word;
  font-variant-numeric: tabular-nums;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hero-metric-value.is-ticking {
  animation: hero-metric-tick 0.4s ease;
}

@keyframes hero-metric-tick {
  0% { transform: scale(1); filter: brightness(1); }
  40% { transform: scale(1.06); filter: brightness(1.25); }
  100% { transform: scale(1); filter: brightness(1); }
}

.hero-metric--bright .hero-metric-value {
  font-size: clamp(0.95rem, 2.6vw, 1.62rem);
}

.hero-metric-sub {
  margin-top: 0.3rem;
  font-size: clamp(0.52rem, 1vw, 0.62rem);
  font-weight: 700;
  color: #6ec9a3;
  letter-spacing: 0.02em;
  transition: color 0.25s ease, transform 0.25s ease;
}

.hero-metric-sub--profit {
  color: #00FF85;
}

.hero-metric-sub.is-flash {
  color: #00FF85;
  transform: scale(1.04);
  animation: hero-metric-tick 0.5s ease;
}

.hero-metric-label {
  margin-top: 0.4rem;
  font-size: clamp(0.5rem, 1.1vw, 0.58rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.25;
  max-width: 100%;
}

.exec-row--new {
  animation: exec-row-in 0.55s ease;
  background: rgba(0, 255, 133, 0.06);
}

@keyframes exec-row-in {
  from { opacity: 0.4; transform: translateY(-6px); background: rgba(0, 255, 133, 0.14); }
  to { opacity: 1; transform: translateY(0); background: rgba(0, 255, 133, 0.06); }
}

.hero-cta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  margin: 0 0 0.75rem;
}

.hero-cta-row::before { display: none; }

.hero-cta-row .btn-hero-main {
  background: linear-gradient(135deg, #00FF85, #58b38f) !important;
  color: #000 !important;
  border: none !important;
  box-shadow: 0 8px 28px rgba(0, 255, 133, 0.22);
}

.hero-cta-row .btn-hero-secondary {
  white-space: nowrap;
  min-width: 148px;
}

.hero-activity .hero-trust-list {
  border-top: 1px solid rgba(88, 179, 143, 0.1);
}

.hero-trust-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.35rem, 1vw, 0.55rem);
  padding: 0.85rem 0 0;
  margin: 0;
  max-width: 100%;
  width: 100%;
}

.hero-trust-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  color: #aaa;
  text-align: center;
  line-height: 1.3;
}

.btn-hero-main,
.btn-hero-secondary {
  flex: 1 1 180px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.78rem !important;
  padding: 0.75rem 1rem !important;
}

.btn-hero-secondary {
  background: rgba(0, 0, 0, 0.55) !important;
  backdrop-filter: blur(8px);
}

.btn-icon { opacity: 0.85; font-size: 0.9em; }
.btn-arrow { margin-left: 0.15rem; }

.hero-trust-list li {
  font-weight: 600;
}

.hero-trust-list .check {
  color: #00FF85;
  font-weight: 900;
}

.hero-panel-green {
  width: 100%;
  margin-top: 0.85rem;
  padding: 0.85rem 0.75rem 0.75rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(88, 179, 143, 0.14) 0%, rgba(88, 179, 143, 0.06) 100%);
  border: 1px solid rgba(88, 179, 143, 0.28);
  box-shadow: inset 0 1px 0 rgba(110, 201, 163, 0.12);
}

.btn-hero-start {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  min-height: 50px;
  padding: 0.85rem 1.25rem !important;
  font-size: 0.92rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em;
  border-radius: 999px !important;
  box-shadow: 0 10px 32px rgba(88, 179, 143, 0.35);
}

.btn-hero-start:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(88, 179, 143, 0.45);
}

.hero-panel-green .hero-trust-list {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.hero-copy .hero-metrics,
.hero-copy .hero-cta-row,
.hero-copy .hero-panel-green {
  width: 100%;
}

.hero-copy--split .hero-metrics,
.hero-copy--split .hero-cta-row,
.hero-copy--split .hero-activity,
.hero-copy--split .hero-panel-green {
  width: 100%;
}

@media (min-width: 1200px) {
  .hero-copy--split h1 {
    max-width: 580px;
    font-size: clamp(2rem, 2.8vw, 2.85rem);
  }
  .hero-lead {
    max-width: 540px;
    margin-bottom: 1.25rem;
  }
  .hero-copy-col {
    padding-right: 0.5rem;
  }
}

@media (min-width: 1600px) {
  .hero-coin-grid {
    gap: clamp(2rem, 4vw, 3.5rem);
  }
  .hero-stage {
    max-width: 520px;
  }
}

.hero-stat {
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(88, 179, 143, 0.2);
  border-radius: 14px;
  padding: 0.85rem 1.25rem;
  min-width: 140px;
  backdrop-filter: blur(8px);
}

.hero-stat .label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
}

.hero-stat .value {
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 0.2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.feature-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(88, 179, 143, 0.12);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem 1.25rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(88, 179, 143, 0.4);
  transform: translateY(-3px);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.55rem;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.market-section {
  background: linear-gradient(180deg, transparent, rgba(10,10,10,0.8) 30%, transparent);
}

.sentiment-bar {
  max-width: 100%;
  margin: 0;
  padding: 1.35rem 1.25rem;
  text-align: center;
  border: 1px solid rgba(88, 179, 143, 0.12);
}

.sentiment-score {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
}

.sentiment-label {
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0.25rem 0;
}

.binance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(88, 179, 143, 0.1);
  border: 1px solid rgba(88, 179, 143, 0.35);
  color: var(--accent-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.binance-badge--live {
  background: rgba(0, 255, 133, 0.12);
  border-color: rgba(0, 255, 133, 0.4);
  color: #00ff85;
}

.binance-badge--warn {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.35);
  color: #fbbf24;
}

.market-table-card {
  overflow: hidden;
}

.source-tag {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-links a:hover { color: var(--text); }

/* ─── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-primary {
  background: linear-gradient(135deg, #00FF85, #58b38f);
  color: #000;
  box-shadow: 0 8px 32px rgba(0, 255, 133, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-gold {
  background: linear-gradient(135deg, #00FF85, #58b38f);
  color: #000;
  font-weight: 800;
  box-shadow: 0 8px 32px rgba(0, 255, 133, 0.22);
}

.btn-gold:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 7rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/images/hero.jpg') center/cover no-repeat;
  filter: brightness(0.28) saturate(0.85) hue-rotate(15deg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, var(--bg) 75%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(88, 179, 143, 0.1);
  border: 1px solid rgba(88, 179, 143, 0.35);
  color: var(--accent-bright);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1,
.hero-landing h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero h1 .highlight,
.hero-landing h1 .highlight {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .tagline,
.hero-landing .tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.hero .desc,
.hero-landing .desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Sections ────────────────────────────────────────────────────────── */
section { padding: var(--section-y) 0; }

.landing-section,
#markets,
#executions,
#flow,
#faq {
  scroll-margin-top: calc(var(--site-header) + 0.75rem);
  position: relative;
}

.landing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 133, 0.14), transparent);
  pointer-events: none;
}

.trust-band {
  scroll-margin-top: calc(var(--site-header) + 0.5rem);
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  font-size: 1.05rem;
  line-height: 1.65;
  padding: 0 var(--space-sm);
}

/* ─── Landing page layout system ─────────────────────────────────────── */
.landing-page .landing-section-inner {
  max-width: 920px;
  margin: 0 auto;
}

.landing-page .landing-section-inner--narrow {
  max-width: 720px;
}

.landing-page .section-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.landing-page .section-header .section-title {
  margin-bottom: 0.5rem;
}

.landing-page .section-header .section-sub {
  margin-bottom: 0;
}

.landing-page .section-header .binance-badge {
  margin: 0.5rem 0 0.85rem;
}

.landing-panel-stack {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.landing-features-section {
  background: var(--bg-card);
}

.landing-faq-section {
  background: var(--bg-card);
}

.landing-feed-empty {
  color: var(--muted) !important;
  justify-content: center;
  text-align: center;
  font-size: 0.88rem;
  padding: 1.25rem 0.5rem !important;
}

.landing-feed-error {
  color: #fbbf24 !important;
}

.sentiment-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.35rem 0 0;
  line-height: 1.55;
}

/* ─── Flow diagram ────────────────────────────────────────────────────── */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.flow-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  position: relative;
}

.flow-step .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-2));
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 0.9rem;
}

.flow-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.flow-step p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ─── Cards ───────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--glow);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── Forms ───────────────────────────────────────────────────────────── */
.form-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

.form-side.hero-mini {
  background: url('/images/hero.jpg') center/cover no-repeat;
}

.form-side.hero-mini::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.form-side-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 400px;
}

.form-side-content h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.form-side-content p { color: var(--muted); }

.form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.form-box {
  width: min(440px, 100%);
}

.form-box h1 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-align: center;
}

.form-box .sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-row { display: flex; gap: 0.75rem; }

.form-row .form-group { flex: 1; }

/* ─── Auth pages (single card — login & register) ─────────────────────── */
.auth-page {
  position: relative;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
  background: #050505;
}

.auth-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #050505;
}

.auth-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 38%;
  display: block;
}

.auth-bg-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.22) 0%,
      rgba(0, 0, 0, 0.32) 38%,
      rgba(0, 0, 0, 0.46) 68%,
      rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.38) 0%,
      rgba(0, 0, 0, 0.14) 32%,
      rgba(0, 0, 0, 0.42) 100%),
    rgba(0, 0, 0, 0.12);
}

.auth-page #cryptovex-nav,
.auth-page .auth-shell,
.auth-page .auth-bg {
  isolation: isolate;
}

.auth-page #cryptovex-nav,
.auth-page .auth-shell {
  position: relative;
  z-index: 2;
}

.auth-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100dvh - var(--site-header));
  max-height: calc(100dvh - var(--site-header));
  margin-top: var(--site-header);
  padding: 0.75rem var(--container-px);
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  box-sizing: border-box;
  overflow: hidden;
}

.auth-shell--split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  gap: clamp(1.25rem, 4vw, 3rem);
  padding: 0 clamp(1.5rem, 5vw, 3.5rem);
  margin-top: var(--site-header);
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  height: calc(100dvh - var(--site-header));
  max-height: calc(100dvh - var(--site-header));
  overflow: hidden;
  box-sizing: border-box;
}

/* ─── Left panel: copy over hero ───────────────────────────────────── */
.auth-shell--split .auth-visual {
  justify-self: end;
  padding-right: clamp(0.25rem, 1.5vw, 1.25rem);
}

.auth-shell--split .auth-panel {
  justify-self: start;
  padding-left: clamp(0.25rem, 1.5vw, 1.25rem);
}

.auth-visual {
  position: relative;
  z-index: 1;
  min-height: 0;
  overflow: hidden;
  background: transparent;
}

.auth-visual-media,
.auth-visual-overlay {
  display: none;
}

.auth-visual-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 420px;
  max-height: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.auth-visual-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-shrink: 0;
}

.auth-visual-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
}

.auth-visual-brand img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.auth-visual-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0fff8;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 255, 133, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.auth-visual-content {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 1.45rem 1.55rem;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.auth-visual-eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00ff85;
}

.auth-visual-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.65);
}

.auth-visual-text {
  margin: 0 0 1.15rem;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #f4faf7;
  max-width: 44ch;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.auth-visual-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auth-visual-points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #f2faf6;
}

.auth-visual-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: rgba(0, 255, 133, 0.22);
  color: #00ff85;
  font-size: 0.62rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 255, 133, 0.25);
}

.auth-visual-stats {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin: 0;
  padding: 0.85rem 0.7rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.auth-visual-stats div {
  text-align: center;
}

.auth-visual-stats strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.2rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.auth-visual-stats span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #d0e8dc;
}

/* ─── Right panel: premium form card (login + register) ──────────────── */
.auth-visual,
.auth-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
}

.auth-panel {
  padding: 0;
  background: transparent;
}

.auth-card-wrap {
  width: min(420px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 5;
  flex-shrink: 0;
}

.auth-shell--split .auth-card--premium,
.auth-shell--split .auth-card {
  position: relative;
  overflow: visible;
  width: 100%;
  background: linear-gradient(168deg, rgba(12, 14, 13, 0.9) 0%, rgba(6, 8, 7, 0.92) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 255, 133, 0.22);
  border-radius: 18px;
  padding: 1.5rem 1.65rem 1.25rem;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.48),
    0 0 40px rgba(0, 255, 133, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.auth-card-accent {
  display: block;
  height: 2px;
  margin: -1.5rem -1.65rem 1.25rem;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, transparent, #00ff85 28%, #00ff85 72%, transparent);
  opacity: 0.95;
}

.auth-card-head {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(88, 179, 143, 0.14);
}

.auth-card-head .auth-progress {
  margin: 0.55rem auto 0.3rem;
}

.auth-card-head .auth-step-label {
  margin: 0;
  color: #b8d4c4;
  font-size: 0.68rem;
}

/* Step indicator visible on register step 1 — see auth-register.css */

.auth-page--register[data-step="2"] .auth-card-head,
.auth-page--register[data-step="3"] .auth-card-head {
  margin-bottom: 0.7rem;
  padding-bottom: 0.65rem;
}

.auth-page--register[data-step="2"] .form-group,
.auth-page--register[data-step="3"] .form-group {
  margin-bottom: 0.6rem;
}

.auth-page--register[data-step="2"] .auth-shell--split .auth-card,
.auth-page--register[data-step="3"] .auth-shell--split .auth-card {
  padding: 1.2rem 1.45rem 1rem;
}

.auth-label-opt {
  color: #8fa89a;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.auth-back {
  width: 100%;
  min-height: 44px;
  margin-top: 0.5rem;
  border-radius: 12px !important;
  font-weight: 700;
}

.auth-inline-link {
  background: none;
  border: none;
  color: #00ff85;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
}

.auth-inline-link:disabled {
  color: #5a7a6a;
  cursor: not-allowed;
}

.auth-card-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00ff85;
}

.auth-shell--split .auth-logo {
  margin-bottom: 0.9rem;
}

.auth-shell--split .auth-logo img {
  width: 38px;
  height: 38px;
}

.auth-shell--split .auth-card-head h1 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  text-align: center;
}

.auth-shell--split .auth-sub {
  margin: 0 auto;
  max-width: 34ch;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #d8ebe3;
  text-align: center;
}

.auth-shell--split .auth-submit,
.auth-shell--split .auth-step-actions .btn-primary {
  border-radius: 12px;
  min-height: 48px;
  font-size: 0.92rem;
  font-weight: 800;
  width: 100%;
  letter-spacing: 0.03em;
  background: #00ff85 !important;
  color: #000 !important;
  border: none !important;
  box-shadow: 0 8px 32px rgba(0, 255, 133, 0.32);
}

.auth-shell--split .auth-submit:hover,
.auth-shell--split .auth-step-actions .btn-primary:hover {
  box-shadow: 0 10px 36px rgba(0, 255, 133, 0.42);
  filter: brightness(1.05);
}

.auth-shell--split .auth-switch {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.86rem;
  color: #a8c4b6;
}

.auth-shell--split .auth-switch a {
  color: #00ff85;
  font-weight: 700;
}

.auth-trust {
  margin: 0.75rem 0 0;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(88, 179, 143, 0.12);
  text-align: center;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #8fa89a;
}

.auth-page--login .auth-shell--split .auth-card,
.auth-page--register .auth-shell--split .auth-card {
  max-height: none;
  overflow: visible;
}

@media (min-width: 901px) {
  .auth-shell--split .auth-logo {
    display: none;
  }
}

@media (max-width: 1024px) {
  .auth-shell--split {
    max-width: none;
  }

  .auth-panel {
    border-left: none;
    padding: 1.25rem 1.25rem;
  }

  .auth-visual-inner {
    padding: 0 1rem;
  }

  .auth-visual-content {
    padding: 1.15rem 1.25rem;
  }
}

@media (min-width: 1100px) {
  .auth-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.auth-card {
  width: min(480px, 100%);
  flex-shrink: 0;
  background: linear-gradient(165deg, rgba(16, 16, 16, 0.99), rgba(8, 8, 8, 0.99));
  border: 1px solid rgba(88, 179, 143, 0.28);
  border-radius: 20px;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 56px rgba(0, 255, 133, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Shared visibility — labels & fields readable on all auth pages */
.auth-page .form-group {
  margin-bottom: 0.85rem;
}

.auth-page .form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ecf5f0;
  margin-bottom: 0.4rem;
}

.auth-page .form-group input,
.auth-page .form-group select {
  width: 100%;
  min-height: 46px;
  padding: 0.6rem 0.85rem;
  font-size: 16px;
  color: #f4f4f4;
  background-color: #0a0a0a;
  border: 1px solid rgba(88, 179, 143, 0.35);
  border-radius: 11px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-page .form-group select {
  cursor: pointer;
  appearance: none;
  font-family: system-ui, -apple-system, "Segoe UI", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2358b38f' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
}

.auth-page .form-group input {
  cursor: text;
  background-image: none;
  padding-right: 0.85rem;
}

.auth-page .form-group select option {
  background: #0f0f0f;
  color: #f4f4f4;
  padding: 0.35rem 0.5rem;
  font-family: system-ui, -apple-system, "Segoe UI", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

.auth-page .form-group input::placeholder {
  color: #7a9588;
}

.auth-page .form-group input:focus,
.auth-page .form-group select:focus {
  outline: none;
  border-color: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(0, 255, 133, 0.12);
}

.auth-page .alert {
  margin-bottom: 0.75rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  line-height: 1.45;
  border-radius: 10px;
  border: 1px solid rgba(88, 179, 143, 0.2);
  background: rgba(0, 0, 0, 0.35);
}

.auth-page--register .auth-card--premium,
.auth-page--login .auth-card--premium {
  max-height: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.auth-otp-panel {
  margin: 0 0 0.85rem;
  padding: 0.7rem 0.75rem;
  border-radius: 11px;
  background: rgba(0, 255, 133, 0.04);
  border: 1px solid rgba(88, 179, 143, 0.2);
}

.auth-otp-panel.is-sent {
  border-color: rgba(0, 255, 133, 0.32);
  background: rgba(0, 255, 133, 0.07);
}

.auth-otp-panel.is-verified {
  border-color: rgba(0, 255, 133, 0.45);
  background: rgba(0, 255, 133, 0.1);
}

.auth-otp-panel.hidden {
  display: none;
}

.auth-otp-status {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: #c5d9ce;
  line-height: 1.45;
}

.auth-otp-status.is-verified {
  color: #00ff85;
}

.auth-otp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(159, 184, 173, 0.5);
  flex-shrink: 0;
}

.auth-otp-panel.is-sent .auth-otp-dot {
  background: #ffb800;
  box-shadow: 0 0 8px rgba(255, 184, 0, 0.5);
}

.auth-otp-panel.is-verified .auth-otp-dot {
  background: #00ff85;
  box-shadow: 0 0 8px rgba(0, 255, 133, 0.5);
}

.auth-otp-resend {
  margin-top: 0.35rem;
  font-size: 0.68rem;
  color: #7a9a8a;
}

.auth-otp-resend button {
  background: none;
  border: none;
  color: var(--green-bright);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
}

.auth-otp-resend button:disabled {
  color: #5a7a6a;
  cursor: not-allowed;
}

.auth-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 0.5rem;
  max-width: 200px;
}

.auth-progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(88, 179, 143, 0.2);
  border: 2px solid rgba(88, 179, 143, 0.35);
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.auth-progress-dot.active {
  background: var(--green-bright);
  border-color: var(--green-bright);
  box-shadow: 0 0 12px rgba(0, 255, 133, 0.45);
  transform: scale(1.15);
}

.auth-progress-dot.done {
  background: rgba(0, 255, 133, 0.55);
  border-color: rgba(0, 255, 133, 0.7);
}

.auth-progress-line {
  flex: 1;
  height: 2px;
  background: rgba(88, 179, 143, 0.2);
  min-width: 28px;
}

.auth-step-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8ddd2;
  margin: 0;
}

.auth-step {
  display: none;
  animation: authStepIn 0.3s ease;
}

.auth-step.active {
  display: block;
}

@keyframes authStepIn {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

.auth-step-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.auth-step-actions .btn {
  min-height: 46px;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 11px;
}

.auth-benefits--compact {
  margin: 0.25rem 0 0.5rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.78rem;
}

.auth-page--register .form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0;
}

.auth-page--register .form-row--2 .form-group {
  margin-bottom: 0.7rem;
}

.form-row--inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  align-items: stretch;
}

.form-row--inline input {
  min-width: 0;
}

.auth-page--register .btn-inline {
  min-height: 46px;
  min-width: 96px;
  padding: 0.55rem 0.9rem !important;
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 11px;
  align-self: stretch;
}

.auth-page--register .otp-input--compact,
.auth-page--login .otp-input--compact {
  font-size: 1rem !important;
  letter-spacing: 0.22em;
}

.auth-page--login .auth-card,
.auth-page--register .auth-card {
  width: min(420px, 94vw);
  max-height: none;
}

.auth-page--login .auth-card-head .auth-sub,
.auth-page--register .auth-card-head .auth-sub {
  color: #c8ddd2;
}

.auth-page .auth-switch a {
  color: var(--green-bright);
  font-weight: 700;
}

.auth-page .auth-hint {
  color: #a8c4b6;
  font-size: 0.78rem;
  margin-top: 0.45rem;
  line-height: 1.45;
}

.auth-page .alert-error {
  color: #ffb3c0;
  border-color: rgba(255, 120, 140, 0.5);
  background: rgba(80, 20, 30, 0.45);
}

.auth-page .alert-success {
  color: #00ff85;
  border-color: rgba(0, 255, 133, 0.45);
  background: rgba(0, 60, 35, 0.35);
}

.auth-page .alert-info {
  color: #b8f0d4;
  border-color: rgba(88, 179, 143, 0.45);
  background: rgba(0, 40, 28, 0.35);
}

@media (min-width: 521px) {
  .auth-page--register .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }

  .auth-page--register .form-row--inline {
    grid-template-columns: 1fr auto;
  }

  .auth-page--register .btn-inline {
    width: auto;
  }
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 1rem;
}

.auth-logo img {
  width: var(--logo-auth);
  height: var(--logo-auth);
  filter: drop-shadow(0 0 14px rgba(88, 179, 143, 0.45));
}

.auth-logo em { color: var(--accent); font-style: normal; }

.auth-card h1 {
  text-align: center;
  font-size: clamp(1.5rem, 5vw, 1.85rem);
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.auth-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1.35rem;
}

.auth-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.45rem;
  line-height: 1.45;
}

.auth-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 0.5rem;
  font-weight: 800;
}

.auth-switch {
  text-align: center;
  margin-top: 1.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.auth-benefits {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(0, 255, 133, 0.05);
  border: 1px solid rgba(0, 255, 133, 0.12);
}

.auth-benefits li {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.auth-benefits li:last-child { margin-bottom: 0; }

.otp-input {
  letter-spacing: 0.35em;
  text-align: center;
  font-weight: 800;
  font-size: 1.15rem !important;
}

.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-row--stack-mobile {
  display: flex;
  gap: 0.65rem;
  align-items: stretch;
}

.form-row--stack-mobile input { flex: 1; min-width: 0; }

.btn-inline {
  flex-shrink: 0;
  min-height: 48px;
  padding: 0.75rem 1rem !important;
  white-space: nowrap;
}

.auth-card .form-group input,
.auth-card .form-group select {
  min-height: 46px;
  font-size: 16px;
}

.auth-card .alert { margin-bottom: 1rem; }

.steps {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  border: 2px solid var(--border);
  color: var(--muted);
}

.step-dot.active {
  border-color: var(--accent);
  background: rgba(88, 179, 143, 0.15);
  color: var(--accent-bright);
}

.step-dot.done {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.alert-error {
  background: rgba(255, 92, 122, 0.12);
  border: 1px solid rgba(255, 92, 122, 0.3);
  color: var(--red);
}

.alert-success {
  background: rgba(88, 179, 143, 0.12);
  border: 1px solid rgba(88, 179, 143, 0.3);
  color: var(--green);
}

.alert-info {
  background: rgba(88, 179, 143, 0.1);
  border: 1px solid rgba(88, 179, 143, 0.25);
  color: var(--accent-bright);
}

.hidden { display: none !important; }

/* ─── Dashboard ───────────────────────────────────────────────────────── */
.dashboard {
  padding: 6rem 0 3rem;
}

.dash-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.dash-header h1 {
  font-size: 2rem;
  font-weight: 800;
}

.flow-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem 0 2rem;
}

.flow-pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--muted);
}

.flow-pill.done {
  background: rgba(88, 179, 143, 0.12);
  border-color: rgba(88, 179, 143, 0.35);
  color: var(--green);
}

.wallet-box {
  background: var(--bg-elevated);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  font-family: monospace;
  font-size: 0.82rem;
  word-break: break-all;
}

.wallet-box .net {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
  font-family: var(--font);
}

.trade-list { list-style: none; }

.trade-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.trade-list .profit-pos { color: var(--green); font-weight: 700; }
.trade-list .profit-neg { color: var(--red); font-weight: 700; }

.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.badge-pending { background: rgba(88, 179, 143, 0.12); color: var(--accent-bright); }
.badge-success { background: rgba(88, 179, 143, 0.18); color: var(--green); }
.badge-review { background: rgba(61, 154, 114, 0.2); color: var(--accent-bright); }
.badge-danger { background: rgba(255, 92, 122, 0.15); color: var(--red); }

footer {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

/* ─── Live executions strip ───────────────────────────────────────────── */
.exec-section { background: var(--bg-card); }

.exec-list {
  list-style: none;
  max-height: min(520px, 65vh);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding-right: 0.25rem;
}

.exec-list li.exec-row,
.exec-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.35rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.exec-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.exec-pair-line {
  display: block;
  line-height: 1.35;
  word-break: break-word;
}

.exec-price-line {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
}

.market-row .exec-price-line.profit-pos,
.market-row .exec-meta.profit-pos {
  color: #00ff85;
  font-weight: 700;
}

.market-row .exec-price-line.profit-neg,
.market-row .exec-meta.profit-neg {
  color: #ff4d6d;
  font-weight: 700;
}

.market-row.market-row--up {
  box-shadow: inset 3px 0 0 rgba(0, 255, 133, 0.55);
}

.market-row.market-row--down {
  box-shadow: inset 3px 0 0 rgba(255, 77, 109, 0.55);
}

.landing-feed-list .market-row .exec-price-line.profit-pos,
.landing-feed-list .market-row .exec-meta.profit-pos,
.wallet-markets-feed .market-row .exec-price-line.profit-pos,
.wallet-markets-feed .market-row .exec-meta.profit-pos {
  color: #00ff85;
}

.landing-feed-list .market-row .exec-price-line.profit-neg,
.landing-feed-list .market-row .exec-meta.profit-neg,
.wallet-markets-feed .market-row .exec-price-line.profit-neg,
.wallet-markets-feed .market-row .exec-meta.profit-neg {
  color: #ff4d6d;
}

.exec-pnl {
  flex-shrink: 0;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  padding-top: 0.1rem;
}

.exec-list li .profit-neg {
  color: var(--red) !important;
  font-weight: 800;
}

.exec-list .exec-meta {
  color: var(--muted);
  font-size: 0.78rem;
  display: block;
  margin-top: 0.15rem;
}

.exec-list .exec-vol {
  display: inline-block;
  margin: 0 0.35rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: rgba(88, 179, 143, 0.12);
  color: var(--accent-bright);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: left;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.footer-grid a {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  text-decoration: none;
}

.footer-grid a:hover { color: var(--accent); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.footer-brand img { width: var(--logo-footer); height: var(--logo-footer); }

.form-side .logo-img {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  display: block;
  filter: drop-shadow(0 0 16px rgba(88, 179, 143, 0.4));
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Page loader ─────────────────────────────────────────────────────── */
#axiotrade-loader,
#cryptovex-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: #000;
  transition: opacity 0.45s ease;
}

#axiotrade-loader.hide,
#cryptovex-loader.hide { opacity: 0; pointer-events: none; }

#axiotrade-loader .logo-mark--loader,
#cryptovex-loader img {
  filter: drop-shadow(0 0 28px rgba(88, 179, 143, 0.45));
}

@keyframes logo-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.88; }
}

#axiotrade-loader .loader-name,
#cryptovex-loader .loader-name {
  font-weight: 900;
  letter-spacing: 0.2em;
  font-size: 1.1rem;
}

#axiotrade-loader .loader-name span,
#cryptovex-loader .loader-name span { color: var(--accent); }

#axiotrade-loader .loader-bar,
#cryptovex-loader .loader-bar {
  width: 120px;
  height: 3px;
  background: rgba(88, 179, 143, 0.15);
  border-radius: 99px;
  overflow: hidden;
}

#axiotrade-loader .loader-bar-fill,
#cryptovex-loader .loader-bar-fill {
  height: 100%;
  width: 40%;
  background: var(--accent);
  border-radius: 99px;
  animation: loader-slide 1.2s ease-in-out infinite;
}

@keyframes loader-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ─── Hero logo mark ───────────────────────────────────────────────────── */
.hero-logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.25rem;
  display: block;
  filter: drop-shadow(0 0 28px rgba(88, 179, 143, 0.5));
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 0 auto 1.5rem;
  border-radius: 99px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.trust-item {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.trust-item .num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent-bright);
  line-height: 1.2;
}

.trust-item .lbl {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-q:hover { color: var(--accent-bright); }

.faq-q::after {
  content: '+';
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
}

.faq-item.open .faq-q::after { content: '−'; }

.faq-a {
  display: none;
  padding: 0 1.25rem 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-a { display: block; }

.mobile-brand {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem;
  background: #000;
  border-bottom: 1px solid var(--border);
}

.mobile-brand img { width: 32px; height: 32px; }
.mobile-brand span { font-weight: 900; letter-spacing: 0.14em; }
.mobile-brand span em { color: var(--accent); font-style: normal; }

.footer-copy {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.dash-welcome {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.dash-welcome img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 12px rgba(88, 179, 143, 0.35));
}

.card {
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: rgba(88, 179, 143, 0.22);
  box-shadow: 0 0 40px rgba(88, 179, 143, 0.06);
}

/* ─── Extreme premium polish ──────────────────────────────────────────── */
::selection {
  background: rgba(88, 179, 143, 0.35);
  color: #fff;
}

html {
  scrollbar-color: var(--accent-2) #000;
  scrollbar-width: thin;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb {
  background: var(--accent-2);
  border-radius: 99px;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(88, 179, 143, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 179, 143, 0.6) 1px, transparent 1px);
  background-size: 48px 48px;
}

body > * { position: relative; z-index: 1; }

.section-title {
  background: linear-gradient(135deg, #fff 30%, var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

table tbody tr {
  transition: background 0.15s;
}

table tbody tr:hover {
  background: rgba(88, 179, 143, 0.05);
}

.stat-value {
  text-shadow: 0 0 24px rgba(88, 179, 143, 0.2);
}

.landing-page .hero-coin-grid.container {
  width: min(1240px, 92vw);
}

.landing-page .table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-cta {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (min-width: 1400px) {
  .container { width: min(1280px, 90vw); }
  .hero h1 { font-size: 4.5rem; }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 2000px) {
  .container { width: min(1440px, 85vw); }
  .hero-logo { width: 112px; height: 112px; }
}

@media (max-width: 1100px) {
  .nav-links a { font-size: 0.78rem; }
  .hero-coin-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 1.25rem;
  }
  .hero-coin-img { max-width: 360px; max-height: 360px; }
}

@media (max-width: 900px) {
  :root { --nav-height: 56px; }

  .nav-links--desktop {
    display: none !important;
  }

  .nav-inner {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    padding: 0.4rem 0;
    min-height: var(--nav-height);
  }

  .logo {
    justify-self: start;
  }

  .logo-text {
    max-width: none;
    overflow: visible;
    text-overflow: unset;
    white-space: nowrap;
  }

  .btn-nav {
    padding: 0.38rem 0.55rem !important;
    font-size: 0.68rem !important;
    min-height: 34px;
  }

  .btn-nav-signin {
    padding: 0.38rem 0.5rem !important;
  }

  .nav-actions {
    gap: 0.35rem;
    flex-shrink: 0;
    align-items: center;
  }

  .nav-actions #langPickerMount {
    order: -1;
  }

  .logo img { width: 38px; height: 38px; --logo-nav: 38px; }
  .logo-text { font-size: 0.72rem; letter-spacing: 0.06em; }
  .logo-text em { display: inline; }

  .form-page { grid-template-columns: 1fr; }
  .form-side { display: none; }
  .mobile-brand { display: flex; }

  .auth-shell--split {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    max-width: none;
    height: calc(100dvh - var(--site-header));
    max-height: calc(100dvh - var(--site-header));
    overflow: hidden;
    gap: 0.5rem;
    padding: 0 0.85rem;
  }

  .auth-shell--split .auth-visual,
  .auth-shell--split .auth-panel {
    justify-self: center;
    padding-left: 0;
    padding-right: 0;
  }

  .auth-bg-img {
    object-position: 50% 32%;
  }

  .auth-visual {
    justify-content: flex-end;
    max-height: min(26vh, 200px);
    border-right: none;
    border-bottom: none;
    overflow: hidden;
  }

  .auth-visual-top {
    padding: 0.85rem 1rem 0;
  }

  .auth-visual-inner {
    padding: 0 0.85rem;
  }

  .auth-visual-content {
    flex: 0;
    justify-content: flex-end;
    margin: 0.5rem 0;
    padding: 0.85rem 1rem;
  }

  .auth-visual-title {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
  }

  .auth-visual-eyebrow {
    font-size: 0.6rem;
    margin-bottom: 0.35rem;
  }

  .auth-visual-text {
    font-size: 0.78rem;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .auth-visual-points {
    display: none;
  }

  .auth-visual-stats {
    margin-bottom: 0.85rem;
    padding: 0.6rem 0.5rem;
    gap: 0.35rem;
  }

  .auth-visual-stats strong {
    font-size: 0.82rem;
  }

  .auth-visual-stats span {
    font-size: 0.55rem;
    color: #c5d9ce;
  }

  .auth-card-wrap {
    margin-left: 0;
    width: 100%;
  }

  .auth-panel {
    padding: 0 0 0.5rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 0;
  }

  .auth-card-wrap {
    margin-left: auto;
    margin-right: auto;
  }

  .auth-shell--split .auth-logo {
    display: flex;
  }

  .auth-shell--split .auth-card-head h1,
  .auth-shell--split .auth-sub,
  .auth-shell--split .auth-switch,
  .auth-shell--split .auth-trust {
    text-align: center;
  }

  .landing-page .hero-coin {
    min-height: auto;
    padding: calc(var(--site-header) + 0.75rem) 0 1.5rem;
    align-items: flex-start;
  }
  .hero-coin-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero-copy-col { order: 1; }
  .hero-visual-col { order: 2; }
  .hero-stage {
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 1.1;
  }
  .hero-stage-ring { width: 78%; }
  .hero-coin-visual {
    max-height: 200px;
    margin: 0.25rem 0 0.5rem;
  }
  .hero-coin-img {
    max-width: 260px;
    max-height: 200px;
    animation: none;
  }
  .hero-coin-glow { width: min(70%, 220px); }
  .hero-copy--split {
    text-align: center;
    align-items: center;
  }
  .hero-copy--split h1,
  .hero-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
  }
  .hero-fullbg { min-height: auto; padding: 0.75rem 0 1.75rem; align-items: flex-start; }
  .hero-bg-layer { background-position: center 22%; }
  .hero-copy--centered { max-width: 100%; }
  .hero-copy h1 { font-size: clamp(1.85rem, 8vw, 2.5rem); }
  .hero-institutional { margin-bottom: 1rem !important; font-size: 0.88rem; }
  .hero-activity-top,
  .hero-metrics-head {
    justify-content: center;
    text-align: center;
  }
  .hero-activity-eyebrow,
  .hero-metrics-eyebrow { text-align: center; width: 100%; }
  .hero-metrics-live { margin: 0 auto; }
  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    margin-bottom: 0.9rem;
  }
  .hero-metric {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 76px;
    padding: 0.6rem 0.35rem;
  }
  .hero-metric-value { font-size: clamp(0.82rem, 3.2vw, 1rem); text-align: center; }
  .hero-metric--bright .hero-metric-value { font-size: clamp(0.85rem, 3.4vw, 1.05rem); }
  .hero-metric-label {
    margin-top: 0.3rem;
    text-align: center;
    font-size: 0.48rem;
    max-width: none;
    line-height: 1.2;
  }
  .hero-cta-row {
    grid-template-columns: 1fr;
    margin-bottom: 0.6rem;
  }
  .hero-cta-row .btn { width: 100%; }
  .hero-cta-row .btn-hero-secondary { min-width: 0; }
  .hero-trust-list {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding-top: 0.6rem;
  }
  .hero-trust-list li {
    justify-content: center;
    font-size: 0.74rem;
  }
  .hero-split { padding: 2rem 0 2.5rem; }
  .hero-content--left { text-align: center; max-width: 100%; }
  .hero-content--left .hero-logo { margin-left: auto; margin-right: auto; }
  .hero-content--left .hero-stats,
  .hero-content--left .hero-actions { justify-content: center; }
  .trust-band .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .page-with-nav { padding-top: var(--site-header) !important; }
  .hero.has-ticker { padding-top: var(--site-header); }
  .dash-stats-row { grid-template-columns: repeat(2, 1fr); }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { position: static; }
  .dash-sidebar-nav {
    flex-direction: row;
    overflow-x: auto;
    padding: 0.5rem;
  }
  .dash-sidebar-btn {
    flex: 0 0 auto;
    min-width: 140px;
    padding: 0.65rem 0.75rem;
  }
  .dash-sidebar-icon { width: 32px; height: 32px; }
  .dash-secondary-grid { grid-template-columns: 1fr; }
  .dash-top-live { display: none; }

  .dashboard-pro.page-with-nav { padding-top: calc(var(--site-header) + 3.25rem) !important; }
  .dash-top-bar { top: var(--site-header); }
  .dash-sidebar-nav { -webkit-overflow-scrolling: touch; }
  .dash-main .card { padding: 1rem; }
  .bot-duration-grid { grid-template-columns: repeat(2, 1fr); }
  .deposit-address-row { flex-direction: column; align-items: stretch; }
  .deposit-qr { max-width: 200px; margin: 0 auto; }
  .network-tabs { flex-wrap: wrap; }
  .network-tab { flex: 1 1 45%; min-height: 44px; }
}

@media (max-width: 520px) {
  .btn-nav { font-size: 0.64rem !important; padding: 0.35rem 0.45rem !important; }
}

@media (max-width: 480px) {
  :root { --nav-height: 52px; --ticker-height: 36px; }
  .container { width: min(1120px, 94vw); }

  html { overflow-x: clip; }
  body { overflow-x: clip; }

  .auth-shell:not(.auth-shell--split) {
    margin-top: var(--site-header);
    padding: 0.5rem 0.85rem;
    align-items: center;
    height: calc(100dvh - var(--site-header));
    max-height: calc(100dvh - var(--site-header));
  }

  .auth-visual {
    max-height: min(22vh, 170px);
  }

  .auth-panel {
    padding: 0 0 0.35rem;
  }

  .auth-page--register .auth-card,
  .auth-page--login .auth-card {
    width: min(500px, 96vw);
    padding: 1rem 1rem 0.95rem;
  }

  .auth-page--register .auth-shell--split .auth-card,
  .auth-page--login .auth-shell--split .auth-card {
    max-height: none;
    overflow: visible;
  }

  .auth-step-actions {
    grid-template-columns: 1fr;
  }

  .auth-step-actions .btn-primary {
    order: -1;
  }

  .auth-page--register .form-row--2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .auth-page--register .form-row--inline {
    grid-template-columns: 1fr;
  }

  .auth-page--register .btn-inline {
    width: 100%;
    min-width: 0;
  }

  .form-row--2 { grid-template-columns: 1fr; }
  .form-row--stack-mobile { flex-direction: column; }
  .btn-inline { width: 100%; }

  .hero-copy--split h1 { font-size: 1.65rem; }
  .hero-metric { min-height: 70px; padding: 0.55rem 0.25rem; }
  .hero-metric-label { font-size: 0.44rem; letter-spacing: 0.06em; }
  .hero-trust-list { grid-template-columns: 1fr; gap: 0.35rem; }
  section { padding: 2.25rem 0; }
  .features-grid { grid-template-columns: 1fr; }
  .flow-grid { grid-template-columns: 1fr 1fr; }
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

.page-with-nav {
  padding-top: var(--site-header);
}

.page-no-ticker {
  padding-top: 6.5rem !important;
}

.dash-top-bar {
  position: fixed;
  top: var(--site-header);
  left: 0;
  right: 0;
  z-index: 85;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid var(--border);
}

.dash-top-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  padding: 0.55rem 0;
  font-size: 0.85rem;
}

.dash-top-inner a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.dash-top-inner a:hover { color: var(--accent-bright); }

.dash-user {
  color: var(--muted);
  font-weight: 700;
  margin-right: auto;
}

/* ─── Deposit panel (exchange-style) ──────────────────────────────────── */
.deposit-card { padding: 0; overflow: hidden; }

.deposit-title {
  font-weight: 800;
  font-size: 1.15rem;
  padding: 1.5rem 1.5rem 0;
  text-align: center;
}

.deposit-sub {
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
  padding: 0.5rem 1.5rem 0;
}

.deposit-pool-hint {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
  margin: 0 1.25rem 0.75rem;
  line-height: 1.45;
}

.deposit-provider-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  width: fit-content;
  max-width: calc(100% - 2rem);
  text-align: center;
}

.deposit-provider-badge--binance {
  background: rgba(240, 185, 11, 0.12);
  color: #f0b90b;
  border: 1px solid rgba(240, 185, 11, 0.35);
}

.deposit-provider-badge--trust {
  background: rgba(5, 193, 174, 0.12);
  color: #05c1ae;
  border: 1px solid rgba(5, 193, 174, 0.35);
}

.trust-wallet-btn {
  width: 100%;
  margin-top: 0.85rem;
  text-align: center;
  font-weight: 700;
  border-color: rgba(5, 193, 174, 0.45);
  color: #05c1ae;
}

.trust-wallet-btn:hover {
  background: rgba(5, 193, 174, 0.1);
  border-color: #05c1ae;
}

.deposit-timer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.75rem 0 0;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: rgba(88, 179, 143, 0.08);
  border: 1px solid rgba(88, 179, 143, 0.25);
  font-size: 0.82rem;
  font-weight: 600;
}

.deposit-timer-bar--expired {
  background: rgba(255, 80, 80, 0.08);
  border-color: rgba(255, 80, 80, 0.35);
  color: #ff6b6b;
}

.btn-refresh-address {
  padding: 0.35rem 0.65rem;
  font-size: 0.72rem;
  white-space: nowrap;
}

.deposit-confirm-hint {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
  margin: -0.35rem 0 1rem;
}

.deposit-pending-banner {
  margin-top: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.deposit-pending-banner strong { display: block; margin-bottom: 0.2rem; }
.deposit-pending-banner span { color: var(--muted); display: block; }
.deposit-pending-banner a { color: var(--accent); font-weight: 700; }

.deposit-pending-banner--ok {
  background: rgba(88, 179, 143, 0.1);
  border: 1px solid rgba(88, 179, 143, 0.3);
}

.deposit-pending-banner--wait {
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.deposit-pending-banner--warn {
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.3);
}

.deposit-panel { padding: 1.25rem 1.5rem 1.5rem; }

.deposit-qr-wrap {
  display: flex;
  justify-content: center;
  margin: 1rem 0 1.25rem;
}

.deposit-qr {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.network-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.network-tab {
  flex: 1;
  padding: 0.65rem 0.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--muted);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
}

.network-tab.active {
  border-color: rgba(88, 179, 143, 0.5);
  background: rgba(88, 179, 143, 0.12);
  color: var(--accent-bright);
}

.deposit-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.deposit-network-name {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.deposit-address-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.deposit-address {
  font-family: ui-monospace, monospace;
  font-size: 0.82rem;
  word-break: break-all;
  line-height: 1.5;
  color: var(--text);
}

.deposit-address .addr-head,
.deposit-address .addr-tail {
  color: var(--accent-bright);
  font-weight: 800;
}

.copy-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  cursor: pointer;
  font-size: 1.1rem;
  transition: border-color 0.2s;
}

.copy-btn:hover { border-color: var(--accent); }

.copy-toast {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

.copy-toast.hidden { display: none; }

.deposit-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}

.deposit-step-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.btn-deposit-submit { width: 100%; margin-top: 0.25rem; }

/* ─── Dashboard tab navigation ─────────────────────────────────────────── */
.dash-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.dash-tab {
  padding: 1rem 0.75rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.dash-tab small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0.25rem;
  opacity: 0.75;
}

.dash-tab:hover { border-color: rgba(88, 179, 143, 0.35); color: var(--text); }

.dash-tab.active {
  background: linear-gradient(135deg, rgba(88, 179, 143, 0.18), rgba(88, 179, 143, 0.06));
  border-color: var(--accent);
  color: var(--accent-bright);
  box-shadow: 0 8px 24px rgba(88, 179, 143, 0.12);
}

.dash-tab[data-panel="bot"].active {
  background: linear-gradient(135deg, rgba(0, 255, 133, 0.12), rgba(88, 179, 143, 0.05));
  border-color: var(--green-bright);
  color: var(--green-bright);
}

.dash-panel { display: none; animation: panel-in 0.25s ease; }
.dash-panel.active { display: block; }

@keyframes panel-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.bot-run-panel {
  background: linear-gradient(180deg, rgba(88, 179, 143, 0.06), transparent);
  border: 1px solid rgba(88, 179, 143, 0.18);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.bot-duration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin: 1rem 0 1.25rem;
}

.bot-duration-btn {
  padding: 0.85rem 0.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
}

.bot-duration-btn span {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 0.2rem;
}

.bot-duration-btn.active,
.bot-duration-btn:hover {
  border-color: var(--green-bright);
  background: rgba(0, 255, 133, 0.1);
  color: var(--green-bright);
}

.bot-activity-panel {
  margin-top: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  max-height: 280px;
  overflow-y: auto;
}

.bot-activity-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 700;
}

.bot-activity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bot-activity-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
}

.bot-session-timer {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green-bright);
  margin: 0.5rem 0;
}

.admin-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.admin-tab-btn {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
}

.admin-tab-btn.active {
  background: rgba(88, 179, 143, 0.15);
  border-color: var(--accent);
  color: var(--accent-bright);
}

.admin-section { display: none; }
.admin-section.active { display: block; }

.user-row-highlight td:first-child { border-left: 3px solid var(--accent); }

.session-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  margin-top: 0.65rem;
  overflow: hidden;
}

.session-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #58b38f, #00FF85);
  border-radius: 999px;
  transition: width 0.4s ease;
}

@media (max-width: 900px) {
  .bot-duration-grid { grid-template-columns: repeat(2, 1fr); }
}

.dash-stat-card {
  text-align: center;
  border: 1px solid rgba(88, 179, 143, 0.15);
  background: linear-gradient(180deg, rgba(88, 179, 143, 0.06), transparent);
}

.dash-stat-sub { font-size: 0.72rem; color: var(--muted); margin-top: 0.35rem; }

.withdraw-step-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  font-weight: 800;
  margin: 1rem 0 0.65rem;
}

.withdraw-card { border: 1px solid rgba(88, 179, 143, 0.14); }

.admin-credit-row input {
  width: 80px;
  padding: 0.35rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
}

/* ─── Professional dashboard layout ───────────────────────────────────── */
.dashboard-pro {
  padding-bottom: 3rem;
}

.dash-pro-wrap {
  max-width: 1180px;
}

.dash-pro-header {
  margin-bottom: 1.25rem;
  text-align: left;
}

.dash-pro-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 0.5rem;
}

.dash-pro-header h1,
.dash-header--clean h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 900;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.dash-pro-sub {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 520px;
  margin: 0;
}

.dash-top-live {
  margin-right: auto;
  margin-left: 1rem;
}

.dash-top-link {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}

.dash-top-link:hover { color: var(--accent-bright); }

.dash-flow-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  padding: 0.65rem 0;
  overflow-x: auto;
}

.dash-flow-strip .flow-pill {
  font-size: 0.68rem;
  padding: 0.35rem 0.65rem;
  white-space: nowrap;
}

.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.dash-stat-pro {
  background: linear-gradient(160deg, rgba(16, 16, 16, 0.95), rgba(8, 8, 8, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dash-stat-pro--pnl { border-left-color: #00FF85; }
.dash-stat-pro--status { border-left-color: var(--accent-bright); }

.dash-stat-pro--balance {
  border-left-color: #00FF85;
  background: linear-gradient(160deg, rgba(0, 255, 133, 0.08), rgba(8, 8, 8, 0.98));
  border-color: rgba(0, 255, 133, 0.18);
  box-shadow: 0 8px 32px rgba(0, 255, 133, 0.06);
}

.dash-stat-pro--tier {
  border-left-color: var(--accent-bright);
}

.dash-stat-pro-value--green {
  color: #00FF85 !important;
  text-shadow: 0 0 28px rgba(0, 255, 133, 0.25);
  font-size: clamp(1.5rem, 3vw, 1.75rem);
}

.dash-stat-pro-value--sm { font-size: 1.05rem; letter-spacing: 0.06em; }

.dash-stat-pro-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
}

.dash-stat-pro-value {
  font-size: 1.45rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  line-height: 1.1;
}

.dash-stat-pro-hint {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.dash-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.dash-sidebar {
  position: sticky;
  top: 7.5rem;
}

.dash-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.65rem;
}

.dash-sidebar-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
}

.dash-sidebar-btn strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 800;
}

.dash-sidebar-btn small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.dash-sidebar-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(88, 179, 143, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--accent-bright);
  flex-shrink: 0;
}

.dash-sidebar-btn:hover {
  background: rgba(88, 179, 143, 0.06);
  border-color: rgba(88, 179, 143, 0.15);
}

.dash-sidebar-btn.active {
  background: linear-gradient(135deg, rgba(88, 179, 143, 0.14), rgba(88, 179, 143, 0.04));
  border-color: rgba(88, 179, 143, 0.35);
  box-shadow: 0 4px 20px rgba(88, 179, 143, 0.08);
}

.dash-sidebar-btn.active .dash-sidebar-icon {
  background: rgba(88, 179, 143, 0.2);
}

.dash-main { min-width: 0; }

.dash-panel { display: none; animation: panel-in 0.25s ease; }
.dash-panel.active { display: block; }

.dash-panel-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 8, 8, 0.75);
  backdrop-filter: blur(8px);
}

.dash-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.dash-card-head h3 {
  font-weight: 800;
  font-size: 1rem;
  margin: 0;
}

.dash-secondary-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
}

.dash-market-card .source-tag {
  text-align: center;
  padding: 0.65rem 0 0;
  font-size: 0.78rem;
}

.dash-table-wrap { margin-top: 1.25rem; }

.dash-header--clean {
  text-align: left;
  margin-bottom: 1.5rem;
}

.market-table-card {
  border: 1px solid rgba(88, 179, 143, 0.14);
}

.market-watch-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
  padding: 0 0.15rem;
}

.market-watch-head h3,
.market-watch-title {
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0;
  text-align: left;
}

.market-pair-count {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-bright);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 255, 133, 0.08);
  border: 1px solid rgba(0, 255, 133, 0.22);
  white-space: nowrap;
}

.market-watch-scroll {
  max-height: min(520px, 60vh);
  overflow-y: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid rgba(88, 179, 143, 0.1);
}

.market-watch-scroll table {
  margin: 0;
}

.market-watch-scroll thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--bg-elevated);
  box-shadow: 0 1px 0 rgba(88, 179, 143, 0.12);
}

/* Market feed search + scrollable lists */
.market-search-wrap {
  flex-shrink: 0;
  margin-bottom: 0.75rem;
}

.market-search-input {
  width: 100%;
  padding: 0.65rem 0.85rem 0.65rem 2.25rem;
  border-radius: 10px;
  border: 1px solid rgba(88, 179, 143, 0.22);
  background: rgba(0, 0, 0, 0.25) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2388b38f' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242 1.156a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E") no-repeat 0.7rem center;
  color: var(--text);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.market-search-input::placeholder {
  color: var(--muted);
}

.market-search-input:focus {
  border-color: rgba(88, 179, 143, 0.55);
  box-shadow: 0 0 0 3px rgba(88, 179, 143, 0.12);
}

.exec-list--fill {
  flex: 1;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
}

/* Landing — contained scroll feeds (all symbols inside the box) */
.landing-feed-card {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.25rem 1rem;
  max-width: 100%;
  border: 1px solid rgba(88, 179, 143, 0.14);
  background: rgba(8, 8, 8, 0.55);
}

.landing-feed-search {
  margin-bottom: 0.65rem;
}

.landing-feed-scroll {
  max-height: min(420px, 52vh);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid rgba(88, 179, 143, 0.12);
  background: rgba(0, 0, 0, 0.22);
  scrollbar-width: thin;
  scrollbar-color: rgba(88, 179, 143, 0.4) transparent;
}

.landing-feed-scroll::-webkit-scrollbar {
  width: 6px;
}

.landing-feed-scroll::-webkit-scrollbar-thumb {
  background: rgba(88, 179, 143, 0.35);
  border-radius: 4px;
}

.landing-feed-list {
  max-height: none;
  overflow: visible;
  margin: 0;
  padding: 0 0.15rem;
}

.landing-feed-list li.exec-row,
.landing-feed-list li {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.landing-feed-source {
  flex-shrink: 0;
  text-align: center;
  padding: 0.7rem 0 0;
  margin: 0;
  font-size: 0.78rem;
}

.landing-exec-card .landing-exec-head {
  margin-bottom: 0.65rem;
  padding-bottom: 0;
  border-bottom: none;
}

.exec-platform-bar--inset {
  margin: 0 0 1rem;
  gap: 0.65rem;
}

.exec-platform-bar--inset .exec-platform-stat {
  padding: 0.75rem 0.55rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.exec-platform-bar--inset .exec-platform-stat strong {
  font-size: clamp(0.82rem, 2.2vw, 1.05rem);
}

.exec-platform-bar--inset .exec-platform-label {
  font-size: 0.58rem;
}

/* Performance page — dual live feeds */
.perf-dual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 0.5rem;
  align-items: stretch;
}

.perf-feed-card {
  display: flex;
  flex-direction: column;
  min-height: min(560px, 68vh);
  padding: 1.25rem 1.35rem 1.35rem;
  border: 1px solid rgba(88, 179, 143, 0.14);
}

.perf-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
  padding: 0 0.1rem;
}

.perf-feed-head h3 {
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0;
  text-align: left;
}

.perf-feed-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(88, 179, 143, 0.1);
  border: 1px solid rgba(88, 179, 143, 0.2);
  white-space: nowrap;
}

.perf-feed-card .exec-list {
  flex: 1;
  min-height: 0;
  max-height: none;
}

.perf-pulse-block {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.perf-pulse-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  padding: 0 0.15rem;
}

.exec-list--pulse {
  max-height: min(220px, 28vh);
}

.exec-list--pulse .pulse-row {
  animation: perfPulseIn 0.45s ease;
}

@keyframes perfPulseIn {
  from { opacity: 0.55; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.market-vol {
  background: rgba(88, 179, 143, 0.1) !important;
}

/* Performance page CTA */
.perf-cta-block {
  text-align: center;
  margin-top: var(--space-2xl);
  padding: var(--space-xl) var(--space-md);
}

.perf-cta-sub {
  margin-top: var(--space-md);
  color: #9fb8ad;
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.btn-perf-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 2rem !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  box-shadow:
    0 0 32px rgba(0, 255, 133, 0.35),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn-perf-cta:hover {
  text-decoration: none !important;
  transform: translateY(-1px);
  box-shadow:
    0 0 40px rgba(0, 255, 133, 0.45),
    0 12px 28px rgba(0, 0, 0, 0.4);
}

.cta-section {
  padding: 2.25rem 0;
  background: linear-gradient(180deg, transparent, rgba(88, 179, 143, 0.04));
}

.form-page .logo img { display: none; }

/* Bot panel — multi-session & friendly UI */
.bot-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bot-panel-head h3 {
  font-weight: 800;
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.bot-panel-desc {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  max-width: 520px;
  line-height: 1.55;
}

.tier-pill {
  flex-shrink: 0;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(88, 179, 143, 0.12);
  border: 1px solid rgba(88, 179, 143, 0.35);
  color: var(--accent-bright);
}

.bot-section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
  margin: 1rem 0 0.65rem;
}

.bot-sim-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.75rem;
  line-height: 1.5;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: rgba(88, 179, 143, 0.06);
  border: 1px solid rgba(88, 179, 143, 0.12);
}

.bot-sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.bot-session-card {
  background: rgba(8, 8, 8, 0.9);
  border: 1px solid rgba(0, 255, 133, 0.15);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
}

.bot-session-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
}

.bot-session-timer-sm {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: var(--green-bright);
}

.bot-session-live-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  color: rgba(180, 200, 190, 0.85);
}

.bot-session-clock {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: #e8fff4;
  letter-spacing: 0.03em;
}

.bot-session-started {
  color: rgba(140, 160, 150, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bot-session-profit .profit-green {
  color: #00FF85;
  font-weight: 900;
  font-size: 1.1rem;
}

.bot-session-profit .profit-muted {
  color: var(--muted);
  font-size: 0.82rem;
}

.bot-session-meta {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.45rem;
}

.dash-panel-card {
  border-radius: 18px;
  border: 1px solid rgba(88, 179, 143, 0.14);
  background: linear-gradient(165deg, rgba(12, 12, 12, 0.98), rgba(6, 6, 6, 0.99));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.dash-sidebar-btn.active {
  background: rgba(0, 255, 133, 0.1);
  border-color: rgba(0, 255, 133, 0.25);
}

.profit-pos { color: #00FF85 !important; font-weight: 800; }
.profit-neg { color: var(--red) !important; font-weight: 800; }

/* ─── Mobile system layout (phone-first polish) ─────────────────────────── */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.btn,
button,
.nav-links a,
.faq-q,
.dash-sidebar-btn,
.network-tab {
  touch-action: manipulation;
}

@media (max-width: 900px) {
  .section-title { font-size: clamp(1.35rem, 5.5vw, 1.75rem); }
  .section-sub { font-size: 0.88rem; padding: 0 0.25rem; }
  .landing-section { padding: 2.5rem 0; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: center;
  }
  .footer-brand { justify-content: center; }
  .footer-grid h4 { margin-top: 0.5rem; }

  .exec-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 0.85rem 0.75rem;
  }

  .faq-q {
    min-height: 48px;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    text-align: left;
  }

  .sentiment-bar { padding: 1.15rem !important; }
  .sentiment-score { font-size: clamp(2rem, 10vw, 2.75rem); }

  .market-table-card table { min-width: 520px; }

  .dash-top-inner {
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    padding: 0.55rem 0;
    font-size: 0.82rem;
  }
  .dash-top-inner .dash-user {
    flex: 1 1 100%;
    font-weight: 700;
    font-size: 0.88rem;
  }
  .dash-pro-header h1 { font-size: 1.55rem; }
  .dash-pro-sub { font-size: 0.88rem; }
  .dash-flow-strip { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .dash-stats-row { gap: 0.65rem; }
  .dash-stat-pro { padding: 0.85rem 0.75rem; }
  .dash-stat-pro-value { font-size: 1.15rem; }
  .dash-stat-pro-value--green { font-size: 1.35rem; }

  .bot-sessions-grid { grid-template-columns: 1fr; }
  .withdraw-form-grid { grid-template-columns: 1fr; }

  .admin-wrap .table-wrap,
  .admin-panel .table-wrap { margin: 0 -0.5rem; }
  .admin-wrap table { min-width: 640px; font-size: 0.82rem; }

  .perf-stats { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .perf-table-wrap table { min-width: 560px; }
  .perf-dual-grid { grid-template-columns: 1fr; }
  .perf-feed-card,
  .landing-feed-scroll { max-height: min(360px, 48vh); }
  .exec-platform-bar--inset { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .trust-band .trust-strip { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  .trust-item { padding: 0.75rem 0.5rem; }
  .trust-item .num { font-size: 1.15rem; }

  .flow-grid { grid-template-columns: 1fr; gap: 0.65rem; }
  .flow-step { padding: 1rem 0.85rem; }

  .hero-badge { font-size: 0.68rem; padding: 0.35rem 0.65rem; }
  .hero-trust-list { grid-template-columns: 1fr; gap: 0.35rem; }

  .ticker-bar { font-size: 0.72rem; }
  .ticker-item { padding: 0 0.75rem; }

  .dash-stats-row { grid-template-columns: 1fr; }
  .dash-sidebar-btn { min-width: 120px; min-height: 52px; }
  .dash-sidebar-text strong { font-size: 0.82rem; }
  .dash-sidebar-text small { font-size: 0.68rem; }

  .deposit-title { font-size: 1.15rem; }
  .deposit-sub { font-size: 0.82rem; line-height: 1.55; }
  .copy-row { flex-direction: column; align-items: stretch; }
  .copy-row input { font-size: 0.78rem; min-height: 44px; }
  .copy-row button { width: 100%; min-height: 44px; }

  .bot-duration-btn { min-height: 52px; padding: 0.75rem 0.5rem; }
  .bot-start-btn { min-height: 52px; width: 100%; }

  .perf-stats { grid-template-columns: 1fr; }
  .admin-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .logo { font-size: 0.88rem; }
  .logo-text em { display: none; }
  .nav-links a { font-size: 0.68rem; padding: 0.3rem 0.35rem; }
}

@media (max-width: 390px) {
  .container { width: 96vw; }
  .hero-copy--split h1 { font-size: 1.5rem; }
  .btn-hero-main { font-size: 0.88rem; padding: 0.85rem 1rem; }
  .auth-card h1 { font-size: 1.4rem; }
}
