/* ============================================================
   PAGE: Landing (index.html)
   Sections: hero, trust-bar, features, how-it-works,
             plans, testimonials, cta-banner
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
@keyframes hero-bg-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes hero-glow-drift {
  0%   { transform: translate(0, 0)   scale(1);    opacity: 0.6; }
  33%  { transform: translate(8%, 4%) scale(1.12); opacity: 1;   }
  66%  { transform: translate(-6%, 8%) scale(0.95); opacity: 0.7; }
  100% { transform: translate(0, 0)   scale(1);    opacity: 0.6; }
}

.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #03071a 0%,
    #0b1437 20%,
    #060e2a 40%,
    #111b4a 60%,
    #070d22 80%,
    #03071a 100%
  );
  background-size: 400% 400%;
  animation: hero-bg-shift 22s ease infinite;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Ambient gold glow that drifts slowly */
.hero::after {
  content: '';
  position: absolute;
  width: 180%;
  height: 180%;
  top: -40%;
  left: -40%;
  background: radial-gradient(ellipse 50% 45% at 55% 45%, rgba(201,168,76,0.06) 0%, transparent 65%);
  animation: hero-glow-drift 14s ease-in-out infinite;
  pointer-events: none;
}

/* Subtle grid lines */
.hero::before {
  content: '';
  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;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ============================================================
   HERO BRAND (centered logo above headline)
   ============================================================ */
@keyframes hero-brand-drop {
  0%   { transform: translateY(-70px); opacity: 0; filter: drop-shadow(0 0 0px rgba(201,168,76,0)); }
  55%  { transform: translateY(5px);   opacity: 1; filter: drop-shadow(0 0 16px rgba(201,168,76,0.55)); }
  75%  { transform: translateY(-2px); }
  100% { transform: translateY(0);    filter: drop-shadow(0 0 6px rgba(201,168,76,0.2)); }
}

@keyframes hero-item-fadein {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  animation: hero-brand-drop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.hero-brand-logo {
  width: 310px;
  height: 310px;
  object-fit: contain;
  animation: logo-glow-idle 4s ease-in-out 1.3s infinite;
}

.hero-brand-text {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero-brand-text span { color: var(--gold); }

/* Sequential content reveals after brand lands */
.hero-reveal {
  opacity: 0;
  animation: hero-item-fadein 0.7s ease forwards;
  animation-delay: var(--hd, 1s);
}

/* ============================================================
   HERO COPY
   ============================================================ */
/* --- Left copy --- */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: rgba(201,168,76,0.05);
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 720px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  justify-content: center;
}

.hero-stat-value {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* --- Right visual card --- */
.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03);
  position: relative;
  z-index: 1;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.hero-card-header .card-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

.hero-balance-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}

.hero-balance {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-change {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success);
  margin-bottom: 28px;
}

/* Mini bar chart */
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
  margin-bottom: 28px;
}

.mini-chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(201,168,76,0.2);
  transition: background 0.3s;
}

.mini-chart-bar.active { background: var(--gold); }

/* Bottom stats grid */
.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-card-stat {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 13px;
}

.hero-card-stat .cs-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 5px;
}

.hero-card-stat .cs-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

/* Floating badges */
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  z-index: 2;
}

.hero-float .fi {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.hero-float.float-top  { top: -18px; right: -18px; animation: float-up   4s ease-in-out infinite; }
.hero-float.float-btm  { bottom: -18px; left: -18px; animation: float-down 4s ease-in-out infinite 1s; }

@keyframes float-up   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float-down { 0%,100% { transform: translateY(0); } 50% { transform: translateY( 8px); } }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}

.trust-bar-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   FEATURES
   ============================================================ */
.features-section { background: var(--body-bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid transparent;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.2);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201,168,76,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--white); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

/* Connecting line between steps */
.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.how-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 24px;
  box-shadow: 0 0 0 6px rgba(201,168,76,0.08);
}

.how-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(201,168,76,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--gold);
}

.how-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.how-step p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   INVESTMENT PLANS
   ============================================================ */
.plans-section { background: var(--body-bg); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  position: relative;
  transition: var(--transition);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Popular/featured plan */
.plan-card.plan-featured {
  border-color: var(--gold);
  background: var(--navy);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: 0 24px 64px rgba(11,20,55,0.3);
}

.plan-card.plan-featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.plan-popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.plan-card.plan-featured .plan-tier { color: rgba(255,255,255,0.45); }

.plan-roi {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2px;
}

.plan-roi-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.plan-card.plan-featured .plan-roi-label { color: rgba(255,255,255,0.4); }

.plan-range {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(11,20,55,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  margin-bottom: 28px;
}

.plan-range .range-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.plan-range .range-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.plan-card.plan-featured .plan-range {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.plan-card.plan-featured .plan-range .range-label {
  color: rgba(255,255,255,0.45);
}

.plan-card.plan-featured .plan-range .range-value {
  color: var(--gold);
}

.plan-features { margin-bottom: 32px; }

.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.plan-card.plan-featured .plan-feature { color: rgba(255,255,255,0.8); }

.plan-feature .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--success);
  font-size: 0.7rem;
}

.plan-card .btn { width: 100%; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--body-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.2);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-name     { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.testimonial-location { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-inner h2 span { color: var(--gold); }

.cta-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   MARKET CHARTS SECTION
   ============================================================ */
.market-charts-section {
  background: #04091d;
  padding: 80px 0 72px;
  border-top: 1px solid rgba(201,168,76,0.08);
}

.market-charts-intro {
  text-align: center;
  margin-bottom: 52px;
}

.market-charts-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-top: 10px;
}

.market-charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Chart card */
.mcc {
  background: #080f2a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 28px 20px;
  transition: border-color 0.3s;
}

.mcc:hover { border-color: rgba(201,168,76,0.2); }

.mcc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.mcc-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mcc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
}

.mcc-icon-btc  { background: rgba(201,168,76,0.1); color: var(--gold); }
.mcc-icon-gold { background: rgba(201,168,76,0.1); color: var(--gold); font-size: 0.7rem; font-weight: 800; letter-spacing: -0.5px; }

/* Interval tab row */
.chart-intervals {
  display: flex;
  gap: 4px;
  padding: 0 0 12px;
}

.interval-btn {
  padding: 3px 11px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  background: transparent;
  color: rgba(255,255,255,0.35);
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.interval-btn:hover {
  border-color: rgba(201,168,76,0.35);
  color: rgba(255,255,255,0.65);
}

.interval-btn.active {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.mcc-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.mcc-pair {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 2px;
}

.mcc-price-group { text-align: right; }

.mcc-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.mcc-change {
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 3px;
  font-variant-numeric: tabular-nums;
}

.mcc-change.up   { color: #22c55e; }
.mcc-change.down { color: #ef4444; }
.mcc-change.neutral { color: rgba(255,255,255,0.35); }

.mcc-chart-wrap {
  height: 190px;
  position: relative;
}

.mcc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.22);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.mcc-src {
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
}

/* ============================================================
   LOGO ANIMATIONS (landing page only)
   ============================================================ */
@keyframes logo-entrance {
  0%   { transform: translateY(-50px); opacity: 0; filter: drop-shadow(0 0 0px rgba(201,168,76,0)); }
  55%  { transform: translateY(4px);  opacity: 1; filter: drop-shadow(0 0 8px rgba(201,168,76,0.5)); }
  75%  { transform: translateY(-2px); }
  100% { transform: translateY(0);   filter: drop-shadow(0 0 4px rgba(201,168,76,0.2)); }
}

@keyframes logo-glow-idle {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(201,168,76,0.15)); }
  50%       { filter: drop-shadow(0 0 10px rgba(201,168,76,0.45)); }
}

#logoMark {
  animation:
    logo-entrance 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    logo-glow-idle 4s ease-in-out 1.2s infinite;
}

/* ============================================================
   MARKET TICKER
   ============================================================ */
.ticker-bar {
  background: #04091e;
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  height: 44px;
}

.ticker-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 20px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  border-right: 1px solid rgba(201,168,76,0.18);
  background: rgba(201,168,76,0.04);
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 1.5s ease infinite;
  flex-shrink: 0;
}

.ticker-scroll-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
}

.ticker-track:hover { animation-play-state: paused; }

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
  white-space: nowrap;
}

.ticker-item-icon {
  font-size: 1rem;
  line-height: 1;
}

.ticker-item-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}

.ticker-item-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.ticker-item-change {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  font-variant-numeric: tabular-nums;
}

.ticker-item-change.up {
  color: #22c55e;
  background: rgba(34,197,94,0.1);
}

.ticker-item-change.down {
  color: #ef4444;
  background: rgba(239,68,68,0.1);
}

.ticker-loading {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  padding: 0 24px;
  font-style: italic;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid    { gap: 16px; }
  .plan-card.plan-featured { transform: scale(1); }
  .plan-card.plan-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 900px) {
  .hero { padding: 100px 0 64px; min-height: auto; }
  .hero-inner { max-width: 100%; }
  .market-charts-grid { grid-template-columns: 1fr; gap: 16px; }
  .mcc-chart-wrap { height: 160px; }
  .how-steps  { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  .features-grid     { grid-template-columns: 1fr; }
  .how-steps         { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats        { gap: 24px; flex-wrap: wrap; }
  .trust-bar-items   { justify-content: flex-start; gap: 16px; }
}
