/* ============================================================
   PRIMEONLINETRADE — BINANCE-THEMED DARK PLATFORM
   ============================================================ */

:root {
  /* ── Backgrounds (Binance palette) ── */
  --bg-0: #0b0e11;        /* TradeBg — darkest */
  --bg-1: #191a1f;        /* SecondaryBg */
  --bg-2: #202630;        /* BasicBg / CardBg */
  --bg-3: #29313d;        /* Input / Vessel */

  /* ── Glass ── */
  --glass:       rgba(32,38,48,0.55);
  --glass-hover: rgba(41,49,61,0.75);

  /* ── Primary accent — Binance Yellow ── */
  --cyan:     #f0b90b;
  --cyan-dim: rgba(240,185,11,0.12);

  /* ── Secondary accent — purple (kept for plan variety) ── */
  --purple:     #8b5cf6;
  --purple-dim: rgba(139,92,246,0.12);

  /* ── Buy / Success — Binance Green ── */
  --green:     #2ebd85;
  --green-dim: rgba(46,189,133,0.12);

  /* ── Sell / Error — Binance Red ── */
  --red:     #f6465d;
  --red-dim: rgba(246,70,93,0.12);

  /* ── CTA — Binance bright yellow ── */
  --gold:     #fcd535;
  --gold-dim: rgba(252,213,53,0.12);

  /* ── Text ── */
  --t1: #eaecef;  /* PrimaryText */
  --t2: #929aa5;  /* SecondaryText */
  --t3: #707a8a;  /* TertiaryText */
  --t4: #4f5867;  /* DisableText */

  /* ── Borders ── */
  --border:        #333b47;
  --border-active: rgba(240,185,11,0.45);

  /* ── Gradients ── */
  --grad:       linear-gradient(135deg, #fcd535, #f0b90b);
  --grad-green: linear-gradient(135deg, #2ebd85, #1da06e);
  --grad-gold:  linear-gradient(135deg, #fcd535, #f0b90b);

  /* ── Border radius ── */
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-0);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: rgba(240,185,11,0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ── CONTAINER ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--cyan-dim);
  border: 1px solid rgba(240,185,11,0.2);
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.section-title { font-size: clamp(1.9rem,3.5vw,3rem); font-weight: 700; margin-bottom: 1rem; }
.section-sub { font-size: 1rem; color: var(--t2); max-width: 560px; line-height: 1.75; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #202630;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(252,213,53,0.2);
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(252,213,53,0.35); color: #202630; opacity: 0.92; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  color: var(--t1);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}
.btn-secondary:hover { background: var(--glass-hover); border-color: rgba(255,255,255,0.15); color: #fff; transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: #202630;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(252,213,53,0.2);
  font-family: 'Inter', sans-serif;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(252,213,53,0.4); color: #202630; opacity: 0.92; }

/* ── GLASS CARD ── */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.glass-card:hover { border-color: var(--border-active); box-shadow: 0 8px 40px rgba(240,185,11,0.05); }

/* ── NAVBAR ── */
.prime-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.35s;
}
.prime-nav.scrolled {
  background: rgba(11,14,17,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #202630;
}
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}
.nav-logo-text span { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-link {
  color: var(--t2);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--cyan); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--grad);
  transition: width 0.25s;
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-auth { display: flex; align-items: center; gap: 0.75rem; }
.btn-nav-login {
  color: var(--t2);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.btn-nav-login:hover { color: #fff; background: rgba(255,255,255,0.06); }
.btn-nav-cta {
  background: var(--gold);
  color: #202630;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(252,213,53,0.2);
}
.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(252,213,53,0.35); color: #202630; opacity: 0.92; }

.nav-mobile-btn {
  display: none;
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--t1);
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center; justify-content: center;
  font-size: 1rem;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-0);
  z-index: 1050;
  padding: 1.5rem;
  flex-direction: column;
  overflow-y: auto;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-nav-links { list-style: none; margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav-link {
  color: var(--t1);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--cyan); }
.mobile-nav-footer { margin-top: auto; padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

/* ── TICKER BAR ── */
.ticker-bar {
  background: rgba(240,185,11,0.03);
  border-top: 1px solid rgba(240,185,11,0.08);
  border-bottom: 1px solid rgba(240,185,11,0.08);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.ticker-wrap {
  display: flex;
  gap: 3rem;
  animation: ticker 50s linear infinite;
  width: max-content;
}
.ticker-bar:hover .ticker-wrap { animation-play-state: paused; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}
.t-sym { color: var(--t1); }
.t-price { color: var(--t2); }
.t-up   { color: var(--green); }
.t-down { color: var(--red); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 50%, rgba(240,185,11,0.06) 0%, transparent 100%),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(46,189,133,0.04) 0%, transparent 100%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(240,185,11,0.03) 0%, transparent 70%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--t2);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-mini-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-mini-stat {}
.hero-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.hero-stat-label { font-size: 0.75rem; color: var(--t3); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }

/* Hero mini chart */
.hero-chart-widget {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.hcw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border);
}
.hcw-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.hcw-change {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}
.hcw-change.up { background: var(--green-dim); color: var(--green); }
.hcw-change.dn { background: var(--red-dim);   color: var(--red); }

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-cell {
  background: var(--bg-1);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.3s;
}
.stat-cell:hover { background: var(--bg-2); }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--t1);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-lbl { font-size: 0.8rem; color: var(--t3); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── CHART SECTION ── */
.chart-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.chart-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}
.chart-sym-btns { display: flex; gap: 6px; }
.sym-btn {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 7px;
  border: 1px solid var(--border);
  background: none;
  color: var(--t2);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.sym-btn:hover { border-color: var(--border-active); color: var(--cyan); }
.sym-btn.active { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }

.chart-tf-btns { display: flex; gap: 4px; background: rgba(255,255,255,0.03); border-radius: 8px; padding: 4px; }
.tf-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  border: none;
  background: none;
  color: var(--t3);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.tf-btn.active { background: var(--gold); color: #202630; }

.chart-price-display {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.chart-cur-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.chart-chg {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 7px;
}
.chart-chg.pos { background: var(--green-dim); color: var(--green); }
.chart-chg.neg { background: var(--red-dim);   color: var(--red); }

.chart-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* ── TRADE FEED ── */
.feed-table { width: 100%; border-collapse: collapse; }
.feed-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--t3);
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}
.feed-table td {
  font-size: 0.84rem;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  color: var(--t2);
}
.feed-table tr:hover td { background: rgba(255,255,255,0.015); }
.trade-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  text-transform: uppercase;
}
.trade-badge.buy  { background: var(--green-dim); color: var(--green); }
.trade-badge.sell { background: var(--red-dim);   color: var(--red); }
.profit-pos { color: var(--green); font-weight: 600; }
.profit-neg { color: var(--red);   font-weight: 600; }

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-16px); background: rgba(240,185,11,0.04); }
  to   { opacity: 1; transform: translateY(0);     background: transparent; }
}
.trade-new { animation: slideIn 0.5s ease forwards; }

/* ── PLAN CARDS ── */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.plan-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.plan-card:hover { border-color: var(--border-active); transform: translateY(-4px); box-shadow: 0 16px 50px rgba(240,185,11,0.06); }
.plan-card.featured { border-color: var(--cyan); }
.plan-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
}
.plan-popular {
  position: absolute;
  top: 1.3rem; right: 1.3rem;
  background: var(--gold);
  color: #202630;
  font-size: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 11px;
  border-radius: 50px;
}
.plan-name { font-size: 0.8rem; color: var(--t3); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 0.75rem; }
.plan-rate {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.plan-rate-sub { font-size: 0.82rem; color: var(--t3); margin-bottom: 1.75rem; }
.plan-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.65rem; }
.plan-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  color: var(--t2);
}
.plan-feature i { color: var(--green); font-size: 0.75rem; flex-shrink: 0; }
.plan-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }
.plan-range { font-size: 0.82rem; color: var(--t3); }
.plan-range strong { color: var(--t1); }

/* ── HOW IT WORKS ── */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
}
.step-card:hover { border-color: var(--border-active); transform: translateY(-4px); }
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--cyan-dim);
  border: 1px solid rgba(240,185,11,0.18);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.4rem;
  color: var(--cyan);
}
.step-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.step-desc { font-size: 0.9rem; color: var(--t2); line-height: 1.7; }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s;
}
.feature-card:hover { border-color: var(--border-active); background: var(--glass-hover); }
.feature-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}
.fi-cyan   { background: var(--cyan-dim);   border: 1px solid rgba(240,185,11,0.18);  color: var(--cyan);   }
.fi-purple { background: var(--purple-dim); border: 1px solid rgba(139,92,246,0.18);  color: var(--purple); }
.fi-green  { background: var(--green-dim);  border: 1px solid rgba(46,189,133,0.18);  color: var(--green);  }
.fi-gold   { background: var(--gold-dim);   border: 1px solid rgba(252,213,53,0.18);  color: var(--gold);   }
.fi-red    { background: var(--red-dim);    border: 1px solid rgba(246,70,93,0.18);   color: var(--red);    }
.feature-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.feature-desc  { font-size: 0.86rem; color: var(--t2); line-height: 1.65; }

/* ── SECURITY TRUST ── */
.trust-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--t2);
}
.trust-badge i { color: var(--green); font-size: 0.85rem; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.3s;
}
.testi-card:hover { border-color: var(--border-active); }
.testi-stars { color: var(--gold); font-size: 0.82rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-quote { font-size: 0.92rem; color: var(--t2); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.testi-name { font-size: 0.9rem; font-weight: 700; color: var(--t1); }
.testi-role { font-size: 0.75rem; color: var(--t3); }
.testi-profit-badge {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover { border-color: var(--border-active); transform: translateY(-4px); }
.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  margin: 0 auto 1.25rem;
  display: block;
  transition: border-color 0.3s;
  filter: grayscale(20%);
}
.team-card:hover .team-avatar { border-color: var(--cyan); filter: grayscale(0%); }
.team-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.team-role { font-size: 0.78rem; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 0.75rem; }
.team-social { display: flex; justify-content: center; gap: 8px; }
.team-social-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: none;
  color: var(--t3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s;
}
.team-social-btn:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }

/* ── PARTNERS ── */
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.partner-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--t3);
  opacity: 0.45;
  transition: all 0.2s;
  letter-spacing: -0.02em;
  cursor: default;
}
.partner-logo:hover { opacity: 0.85; color: var(--t2); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--t1);
  transition: color 0.2s;
  gap: 1rem;
}
.faq-q:hover { color: var(--cyan); }
.faq-q .faq-ico { color: var(--t3); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-ico { transform: rotate(180deg); color: var(--cyan); }
.faq-a {
  font-size: 0.92rem;
  color: var(--t2);
  line-height: 1.75;
  padding-bottom: 1.4rem;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(240,185,11,0.06) 0%, rgba(252,213,53,0.04) 100%);
  border: 1px solid rgba(240,185,11,0.14);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 50%, rgba(240,185,11,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(46,189,133,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}
.cta-sub { font-size: 1rem; color: var(--t2); max-width: 500px; margin: 0 auto 2.5rem; position: relative; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; }

/* ── FOOTER ── */
.prime-footer { background: var(--bg-1); border-top: 1px solid var(--border); }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand-desc { font-size: 0.88rem; color: var(--t3); line-height: 1.7; margin: 1.2rem 0 1.5rem; max-width: 280px; }
.footer-social { display: flex; gap: 8px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--t3);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.social-icon:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }
.footer-col-h {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 1.4rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { color: var(--t3); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--t3);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--t3); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--cyan); }

/* ── NEWSLETTER ── */
.newsletter-form { display: flex; gap: 8px; margin-top: 1rem; }
.newsletter-input {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--t1);
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input:focus { border-color: var(--border-active); }
.newsletter-btn {
  background: var(--gold);
  color: #202630;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
  white-space: nowrap;
}
.newsletter-btn:hover { opacity: 0.9; }

/* ── FORM ELEMENTS ── */
.input-field {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--t1);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.2s;
}
.input-field:focus { border-color: var(--border-active); box-shadow: 0 0 0 3px rgba(240,185,11,0.07); }
.input-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--t2);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.input-group { margin-bottom: 1.4rem; }
.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: #202630;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(252,213,53,0.2);
  font-family: 'Inter', sans-serif;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(252,213,53,0.35); opacity: 0.92; }

select.input-field option { background: #202630; color: var(--t1); }
textarea.input-field { resize: vertical; min-height: 130px; }

/* ── CONTACT INFO ── */
.contact-icon-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  transition: all 0.3s;
}
.contact-icon-card:hover { border-color: var(--border-active); }
.ci-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--cyan-dim);
  border: 1px solid rgba(240,185,11,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.ci-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--t3); font-weight: 600; }
.ci-val { font-size: 0.92rem; color: var(--t1); font-weight: 500; margin-top: 2px; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(240,185,11,0.04) 0%, transparent 70%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 60px 60px;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--t3); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--t3); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--cyan); }
.page-title { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800; }

/* ── RULES PAGE ── */
.rules-content { font-size: 0.95rem; color: var(--t2); line-height: 1.85; }
.rules-content h3 { color: var(--t1); font-size: 1.15rem; margin: 2rem 0 0.75rem; }
.rules-content p { margin-bottom: 1.1rem; }
.rules-content ul { margin: 0.75rem 0 1rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.rules-toc {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.rules-toc li { list-style: none; }
.rules-toc a { color: var(--cyan); text-decoration: none; font-size: 0.9rem; }

/* ── ABOUT PAGE ── */
.milestone-line { position: relative; padding-left: 2rem; }
.milestone-line::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cyan), var(--green));
}
.milestone {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}
.milestone::before {
  content: '';
  position: absolute;
  left: -6px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--grad);
  border: 2px solid var(--bg-0);
}

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-layout     { grid-template-columns: 1fr; }
  .hero-chart-widget { display: none; }
  .features-grid   { grid-template-columns: repeat(2,1fr); }
  .team-grid       { grid-template-columns: repeat(2,1fr); }
  .testi-grid      { grid-template-columns: repeat(2,1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .stats-row       { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-auth { display: none; }
  .nav-mobile-btn { display: flex; }
  .steps-row       { grid-template-columns: 1fr; }
  .testi-grid      { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: repeat(2,1fr); }
  .features-grid   { grid-template-columns: 1fr; }
  .plan-grid       { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .section-pad     { padding: 65px 0; }
  .cta-banner      { padding: 3.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .stats-row       { grid-template-columns: 1fr 1fr; }
  .team-grid       { grid-template-columns: 1fr 1fr; }
}
