/* ===================================================
   LANDING PAGE STYLES
   =================================================== */

/* ─── Navbar ─────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.875rem 0;
  transition: all var(--transition-base);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 1.0);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.logo-icon { border-radius: 10px; overflow: hidden; }
.logo-text { color: var(--text-primary); letter-spacing: -0.02em; }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem var(--space-xl) 1.5rem;
  border-top: 1px solid var(--border-subtle);
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(15,122,77,0.05);
  font-weight: 500;
  transition: color var(--transition-fast);
}
.mobile-nav-link:hover { color: var(--accent-cyan); }
.mobile-menu-btn { color: var(--text-secondary); padding: 0.25rem; }
.hide-desktop { display: none; }
@media (max-width:768px) {
  .hide-desktop { display: flex !important; }
  .hide-mobile  { display: none !important; }
}

/* ─── Ticker Tape ─────────────────────────────────── */
.ticker-wrap {
  margin-top: 66px;
  background: rgba(15,122,77,0.04);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  padding: 0.5rem 0;
  white-space: nowrap;
}
.ticker-tape { display: inline-flex; gap: 0; animation: ticker 40s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 2rem;
  font-size: 0.78rem; font-weight: 600;
  border-right: 1px solid var(--border-subtle);
}
.ticker-item .ticker-symbol { color: var(--text-primary); }
.ticker-item .ticker-price  { color: var(--text-secondary); }
.ticker-item .ticker-up   { color: var(--accent-green); }
.ticker-item .ticker-down { color: var(--accent-red); }

/* ─── Hero ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 7rem !important;
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(15,122,77,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,122,77,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(15,122,77,0.12), transparent 70%);
  top: -200px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(10,82,51,0.1), transparent 70%);
  bottom: -100px; left: 100px;
  animation: float 10s ease-in-out infinite reverse;
}
.hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-badge { margin-bottom: var(--space-xl); }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-green);
  animation: blink 1.5s ease-in-out infinite;
  display: inline-block;
}
.hero-title {
  font-size: 3.5rem; font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: var(--space-xl);
}
.hero-subtitle {
  font-size: 1.125rem; line-height: 1.7; max-width: 500px;
  margin-bottom: var(--space-2xl);
}
.hero-actions { flex-wrap: wrap; }
.hero-stats {
  margin-top: var(--space-2xl); padding-top: var(--space-2xl);
  border-top: 1px solid var(--border-subtle);
  align-items: center; flex-wrap: wrap;
}
.hero-stat-value { font-size: 1.5rem; font-weight: 700; color: var(--text-primary); }
.hero-stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border-subtle); }

.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border-subtle);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(30px);
  box-shadow: var(--shadow-deep), 0 0 60px rgba(15,122,77,0.08);
  animation: float 6s ease-in-out infinite;
}
.hero-card-header { margin-bottom: var(--space-lg); }
.hero-card-stocks { margin-top: var(--space-lg); padding-top: var(--space-lg); border-top: 1px solid var(--border-subtle); }
.mini-stock {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--bg-glass); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); padding: 0.4rem 0.75rem;
  text-align: center;
}

/* ─── Features ───────────────────────────────────── */
.section-header { margin-bottom: var(--space-3xl); }
.section-header .badge { margin-bottom: var(--space-md); }

.feature-card { position: relative; overflow: hidden; }
.feature-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(15,122,77,0.05), transparent 70%);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-subtle);
}

/* ─── Payment Logos ──────────────────────────────── */
.payment-logo-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  padding: 1.5rem 2rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-glass);
  transition: all var(--transition-base);
  cursor: pointer; min-width: 100px;
}
.payment-logo-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-glass-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.payment-logo-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800; color: #fff;
}
.payment-logo-card span { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); }

/* ─── CTA Section ─────────────────────────────────── */
.cta-card {
  background: linear-gradient(145deg, rgba(15,122,77,0.08) 0%, rgba(10,82,51,0.06) 50%, rgba(123,79,255,0.06) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-glow), var(--shadow-deep);
}
.cta-orb {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(15,122,77,0.12), transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }

/* ─── Footer ─────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
}
.footer-heading { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: var(--space-lg); }
.footer-links { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-links a { color: var(--text-secondary); font-size: 0.9rem; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--accent-cyan); }
.footer-grid { margin-bottom: var(--space-2xl); }
.footer-bottom { flex-wrap: wrap; gap: var(--space-md); }

.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-glass); border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.social-btn:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); background: rgba(15,122,77,0.08); }

/* ─── Utility mt helpers ─────────────────────────── */
.mt-xs  { margin-top: var(--space-xs); }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }
.mb-xl  { margin-bottom: var(--space-xl); }
.mb-lg  { margin-bottom: var(--space-lg); }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-title { font-size: 2.75rem; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-subtitle { margin: 0 auto var(--space-2xl); }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .cta-card { padding: 3rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
