/* ══════════════════════════════════════════════════
   FINANTIX CRMs — Main Stylesheet
   Theme: Dark Fintech / Enterprise
   ══════════════════════════════════════════════════ */

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

:root {
  --bg-primary:     #070d1a;
  --bg-secondary:   #0b1425;
  --bg-card:        #0f1c30;
  --bg-card-hover:  #132035;
  --bg-border:      rgba(255,255,255,0.07);

  --accent-green:   #00e676;
  --accent-blue:    #2979ff;
  --accent-cyan:    #00f5ff;
  --accent-purple:  #7c3aed;
  --accent-orange:  #ff6d00;
  --accent-pink:    #ec4899;
  --accent-yellow:  #f59e0b;

  --text-primary:   #f0f4ff;
  --text-secondary: #8899aa;
  --text-muted:     #4a5568;

  --gradient-main:  linear-gradient(135deg, #00e676 0%, #2979ff 50%, #7c3aed 100%);
  --gradient-card:  linear-gradient(135deg, rgba(41,121,255,0.1) 0%, rgba(124,58,237,0.05) 100%);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 4px 40px rgba(0,0,0,0.4);
  --shadow-glow-green:  0 0 30px rgba(0,230,118,0.2);
  --shadow-glow-blue:   0 0 30px rgba(41,121,255,0.25);
  --shadow-glow-purple: 0 0 30px rgba(124,58,237,0.25);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-main: 'Inter', system-ui, sans-serif;
  --font-hero: 'Outfit', 'Inter', sans-serif;
  --font-display: 'Outfit', 'DM Sans', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
em { font-style: normal; }

/* ─── Utility ───────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-green  { color: var(--accent-green); }
.text-blue   { color: var(--accent-blue); }
.text-cyan   { color: var(--accent-cyan); }
.text-purple { color: var(--accent-purple); }
.text-orange { color: var(--accent-orange); }
.text-red    { color: #ef4444; }
.text-muted  { color: var(--text-secondary); }

/* ─── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 100px;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #00e676, #2979ff);
  color: #000;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(41,121,255,0.4); }
.btn-purple { background: linear-gradient(135deg, #7c3aed, #a855f7) !important; color: #fff !important; }
.btn-blue   { background: linear-gradient(135deg, #2979ff, #00f5ff) !important; color: #000 !important; }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--bg-border);
  color: var(--text-primary);
}
.btn-outline:hover { border-color: var(--accent-blue); color: var(--accent-blue); transform: translateY(-2px); }
.btn-telegram {
  background: linear-gradient(135deg, #229ed9, #1a86bc);
  color: #fff;
}
.btn-telegram:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-lg  { padding: 14px 30px; font-size: 1rem; border-radius: 100px; }
.btn-xl  { padding: 16px 36px; font-size: 1.05rem; border-radius: 100px; }
.btn-full { width: 100%; justify-content: center; padding: 14px; border-radius: 100px; }

/* ─── Navbar ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(7,13,26,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--bg-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; margin-right: auto; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.logo-accent { color: var(--accent-green); }
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  transition: opacity 0.2s;
}
.nav-logo-img:hover { opacity: 0.82; }
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  margin-bottom: 14px;
}
.nav-links { display: flex; gap: 6px; }
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.nav-cta { font-size: 0.875rem; padding: 9px 20px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

/* ─── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #2979ff 0%, transparent 70%); top: -200px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #00e676 0%, transparent 70%); bottom: 0; left: -100px; animation-delay: -3s; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, #7c3aed 0%, transparent 70%); top: 40%; left: 30%; animation-delay: -5s; }
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.hero-title strong {
  font-weight: 600;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bg-border);
  border-radius: 14px;
  padding: 14px 20px;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 16px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.75rem; color: var(--text-secondary); text-align: center; }
.stat-divider { width: 1px; height: 40px; background: var(--bg-border); }
/* ─── Hero Platform Image ──────────────────────── */
@keyframes dashFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-platform-img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  border-radius: 20px;
  animation: dashFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.65));
  position: relative;
  z-index: 1;
}
/* Green glow — bottom centre */
.hero-img-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(48px);
}
.hero-img-glow--green {
  width: 70%;
  height: 120px;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0,230,118,0.28) 0%, transparent 70%);
}
/* Blue glow — top right */
.hero-img-glow--blue {
  width: 50%;
  height: 180px;
  top: -20px;
  right: 0;
  background: radial-gradient(ellipse at center, rgba(41,121,255,0.2) 0%, transparent 70%);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
}
@media (max-width: 1200px) {
  .hero-platform-img { max-width: 520px; }
}
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; padding: 60px 24px; }
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero-scroll span { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent-blue), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ─── Ticker ─────────────────────────────────────── */
.ticker-wrap {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0 40px;
  border-right: 1px solid var(--bg-border);
}
.ticker-item i { font-size: 0.75rem; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Sections ───────────────────────────────────── */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-secondary); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(41,121,255,0.12);
  border: 1px solid rgba(41,121,255,0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Platform Cards ─────────────────────────────── */
.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.platform-card:hover { border-color: rgba(41,121,255,0.3); box-shadow: var(--shadow-glow-blue); }
.platform-featured {
  background: linear-gradient(135deg, rgba(0,230,118,0.05) 0%, rgba(41,121,255,0.08) 50%, rgba(124,58,237,0.05) 100%);
  border-color: rgba(0,230,118,0.2);
}
.platform-featured:hover { border-color: rgba(0,230,118,0.4); box-shadow: var(--shadow-glow-green); }
.platform-badge {
  position: absolute;
  top: 24px; right: 24px;
  padding: 5px 14px;
  background: linear-gradient(135deg, #00e676, #2979ff);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.04em;
}
.platform-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.platform-content-reverse { direction: rtl; }
.platform-content-reverse > * { direction: ltr; }
.platform-logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.platform-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.platform-icon-green  { background: rgba(0,230,118,0.15); color: var(--accent-green); }
.platform-icon-purple { background: rgba(124,58,237,0.15); color: #a855f7; }
.platform-icon-blue   { background: rgba(41,121,255,0.15); color: var(--accent-blue); }
.platform-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.platform-url, .platform-tag {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
  display: block;
}
.platform-url { color: var(--accent-green); }
.platform-desc {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.75;
  font-size: 0.975rem;
}
.platform-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.platform-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.platform-features i { color: var(--accent-green); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.platform-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Platform Screen Mockups ────────────────────── */
.platform-visual { position: relative; }

/* Real screenshot wrapper */
.platform-screenshot-wrap {
  position: relative;
  border-radius: var(--radius-lg);
}
.platform-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  animation: platformFloat 5s ease-in-out infinite;
  /* screen blend: black pixels become invisible, bright UI pops through */
  mix-blend-mode: screen;
  filter: drop-shadow(0 12px 32px rgba(0,180,120,0.15));
}
/* Subtle teal glow at bottom edge matching NexTrade's color palette */
.screenshot-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(0,230,118,0.25) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}
.platform-screen {
  background: #0a1525;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.screen-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #061020;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }
.screen-title { font-size: 0.72rem; color: var(--text-muted); margin-left: 8px; font-family: monospace; }
.screen-body { padding: 0; min-height: 300px; display: flex; }

/* NexTrade Preview */
.nextrade-preview { gap: 0; }
.preview-sidebar {
  width: 120px;
  flex-shrink: 0;
  background: #060e1c;
  padding: 14px 10px;
  border-right: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-item {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  color: var(--text-muted);
  cursor: default;
  transition: var(--transition);
}
.sidebar-item.active { background: rgba(0,230,118,0.1); color: var(--accent-green); }
.sidebar-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 6px 0; }
.preview-main { flex: 1; padding: 14px; overflow: hidden; }
.preview-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.preview-title-bar { font-size: 0.75rem; font-weight: 600; color: var(--text-primary); }
.toolbar-actions { display: flex; gap: 6px; }
.toolbar-btn { font-size: 0.6rem; padding: 4px 8px; border-radius: 5px; background: rgba(255,255,255,0.07); color: var(--text-secondary); }
.toolbar-btn.primary { background: rgba(0,230,118,0.2); color: var(--accent-green); }
.preview-table { font-size: 0.6rem; }
.table-row { display: grid; grid-template-columns: 1.2fr 1.2fr 0.7fr 0.8fr 0.7fr; gap: 4px; padding: 6px 4px; border-bottom: 1px solid rgba(255,255,255,0.04); align-items: center; }
.table-head { font-weight: 600; color: var(--text-muted); padding-bottom: 8px; }
.table-row span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tag { display: inline-block; padding: 2px 6px; border-radius: 4px; font-size: 0.58rem; font-weight: 600; }
.tag-green  { background: rgba(0,230,118,0.15); color: var(--accent-green); }
.tag-blue   { background: rgba(41,121,255,0.15); color: #60a5fa; }
.tag-yellow { background: rgba(245,158,11,0.15); color: var(--accent-yellow); }
.tag-purple { background: rgba(168,85,247,0.15); color: #c084fc; }
.tag-red    { background: rgba(239,68,68,0.1); color: #f87171; }

/* BitGuard Preview */
.bitguard-preview { flex: 1; }
.bg-sidebar {
  width: 110px;
  flex-shrink: 0;
  background: #080f1e;
  padding: 14px 10px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.bg-logo { font-size: 0.65rem; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; display: flex; align-items: center; gap: 5px; }
.bg-logo i { color: #a855f7; }
.bg-nav { display: flex; flex-direction: column; gap: 2px; }
.bg-nav-item { display: flex; align-items: center; gap: 6px; padding: 6px 8px; border-radius: 6px; font-size: 0.62rem; color: var(--text-muted); }
.bg-nav-item i { font-size: 0.6rem; }
.bg-nav-item.active { background: rgba(168,85,247,0.15); color: #c084fc; }
.bg-main { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.bg-coins { display: flex; gap: 6px; }
.bg-coin { flex: 1; background: rgba(255,255,255,0.04); border-radius: 8px; padding: 8px; display: flex; flex-direction: column; gap: 2px; font-size: 0.6rem; color: var(--text-secondary); }
.coin-sym { font-size: 0.8rem; font-weight: 700; color: var(--text-primary); }
.bg-portfolio { background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(41,121,255,0.2)); border-radius: 10px; padding: 12px; }
.bg-pv-label { font-size: 0.6rem; color: var(--text-secondary); display: block; margin-bottom: 4px; }
.bg-pv-value { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); display: block; margin-bottom: 8px; }
.bg-chart-line svg { width: 100%; height: 50px; display: block; }
.bg-actions { display: flex; gap: 6px; }
.bg-action-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 4px; padding: 7px 4px; border-radius: 8px; font-size: 0.58rem; font-weight: 600; background: rgba(0,245,255,0.15); color: var(--accent-cyan); border: 1px solid rgba(0,245,255,0.2); }

/* CoinPort Preview */
.coinport-preview { padding: 12px; gap: 10px; }
.cp-balance-card {
  width: 120px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(41,121,255,0.15), rgba(124,58,237,0.1));
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cp-label { font-size: 0.6rem; color: var(--text-secondary); }
.cp-value { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.cp-pnl { font-size: 0.58rem; }
.cp-donut { margin-top: 6px; }
.cp-donut svg { width: 60px; height: 60px; display: block; margin: 0 auto; }
.cp-holdings { flex: 1; }
.cp-holding-title { font-size: 0.7rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.cp-asset { display: flex; align-items: center; gap: 6px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.6rem; }
.cp-asset-icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.btc-icon  { background: rgba(247,147,26,0.2); color: #f7931a; }
.eth-icon  { background: rgba(98,126,234,0.2); color: #627eea; }
.aapl-icon { background: rgba(255,255,255,0.1); color: #fff; font-size: 0.55rem; }
.dot-icon  { background: rgba(230,0,122,0.2); color: #e6007a; font-size: 0.5rem; }
.cp-asset-name { flex: 1; color: var(--text-secondary); }
.cp-asset-name em { display: block; color: var(--text-muted); font-size: 0.55rem; }
.cp-sparkline { width: 50px; flex-shrink: 0; }
.cp-sparkline svg { width: 50px; height: 18px; }
.cp-asset-val { font-weight: 600; white-space: nowrap; }

/* ─── Services Grid ───────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.service-card:hover { border-color: rgba(41,121,255,0.3); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.service-icon-green  { background: rgba(0,230,118,0.12); color: var(--accent-green); }
.service-icon-blue   { background: rgba(41,121,255,0.12); color: var(--accent-blue); }
.service-icon-purple { background: rgba(124,58,237,0.12); color: #a855f7; }
.service-icon-orange { background: rgba(255,109,0,0.12); color: var(--accent-orange); }
.service-icon-cyan   { background: rgba(0,245,255,0.12); color: var(--accent-cyan); }
.service-icon-pink   { background: rgba(236,72,153,0.12); color: var(--accent-pink); }
.service-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.service-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }

/* ─── Why Us Grid ────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { border-color: rgba(41,121,255,0.2); transform: translateY(-4px); }
.why-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.why-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }

/* ─── CTA Banner ─────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 100px 24px;
  overflow: hidden;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.orb-cta-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(41,121,255,0.25) 0%, transparent 70%); top: -100px; left: -100px; animation: orbFloat 10s ease-in-out infinite; }
.orb-cta-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,230,118,0.2) 0%, transparent 70%); bottom: -100px; right: -50px; animation: orbFloat 8s ease-in-out infinite reverse; }
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-content p { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 36px; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── Contact ────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-channels { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.contact-card:hover { border-color: rgba(41,121,255,0.3); transform: translateX(4px); }
.contact-card-highlight {
  border-color: rgba(34,158,217,0.3);
  background: linear-gradient(135deg, rgba(34,158,217,0.08), rgba(34,158,217,0.03));
}
.contact-icon { font-size: 1.5rem; margin-top: 2px; flex-shrink: 0; color: #229ed9; }
.contact-icon-green  { color: var(--accent-green); }
.contact-icon-blue   { color: var(--accent-blue); }
.contact-icon-purple { color: #a855f7; }
.contact-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.contact-card p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 10px; }
.contact-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.875rem; font-weight: 600; color: var(--accent-blue); }
.contact-link:hover { color: var(--accent-cyan); }
.contact-link i { font-size: 0.75rem; transition: var(--transition); }
.contact-link:hover i { transform: translateX(3px); }

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-note { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bg-border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue);
  background: rgba(41,121,255,0.06);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); color: var(--text-primary); }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.25);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.875rem;
  color: var(--accent-green);
  margin-top: 12px;
}
.form-success i { font-size: 1.1rem; }
.form-success.visible { display: flex; }

/* ─── Footer ─────────────────────────────────────── */
.footer { padding: 64px 0 0; background: #040810; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding-bottom: 48px; }
.footer-brand { max-width: 300px; }
.footer-logo { font-size: 1.25rem; display: block; margin-bottom: 14px; }
/* footer logo img already styled above */
.footer-brand p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-social a:hover { background: rgba(41,121,255,0.2); color: var(--text-primary); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 4px; }
.footer-col a { font-size: 0.875rem; color: var(--text-secondary); transition: var(--transition); }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--bg-border);
  padding: 20px 24px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── Particles ──────────────────────────────────── */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100px) translateX(30px); opacity: 0; }
}

/* ─── Scroll Animations ──────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .platform-content { grid-template-columns: 1fr; gap: 40px; }
  .platform-content-reverse { direction: ltr; }
  .platform-visual { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(7,13,26,0.98); flex-direction: column; padding: 20px 24px 28px; gap: 4px; border-bottom: 1px solid var(--bg-border); }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 16px; padding: 18px 20px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0 12px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .platform-card { padding: 28px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .screen-body { min-height: 240px; }
  .nextrade-preview { overflow: hidden; }
  .preview-sidebar { width: 90px; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero-stats { justify-content: center; }
  .platform-badge { position: static; display: inline-block; margin-bottom: 12px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }
}
