/* ===================================================
   FuturesLegend — Main Stylesheet
   =================================================== */

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

:root {
  --bg:        #080b12;
  --bg-card:   #0d1120;
  --bg-card2:  #111827;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.12);
  --text:      #e8eaf0;
  --text-muted:#8892a4;
  --green:     #00e676;
  --green-dim: #00c853;
  --red:       #ff4757;
  --cyan:      #00d4ff;
  --blue:      #4a9eff;
  --purple:    #a855f7;
  --orange:    #ff9800;
  --gold:      #ffd700;
  --radius:    16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a3245; border-radius: 3px; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===================================================
   TICKER BAR
   =================================================== */
.ticker-wrap {
  background: rgba(0,212,255,0.06);
  border-bottom: 1px solid rgba(0,212,255,0.1);
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1000;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  animation: tickerScroll 40s linear infinite;
  padding-right: 60px;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
.tick {
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
}
.tick.win  { color: var(--green); }
.tick.loss { color: var(--red); }
.tick-sep  { color: rgba(255,255,255,0.15); font-size: 10px; }

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

/* ===================================================
   NAVBAR
   =================================================== */
#navbar {
  position: sticky; top: 0; left: 0; right: 0; z-index: 999;
  padding: 0 24px;
  background: rgba(8,11,18,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 18px; font-weight: 700;
  text-decoration: none; color: var(--text);
  margin-right: auto;
}
.logo-icon { color: var(--cyan); font-size: 20px; }
.logo-text strong { color: var(--cyan); }

.nav-links {
  list-style: none; display: flex; gap: 28px;
}
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 9px 22px; border-radius: 8px;
  background: var(--cyan); color: #080b12;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* Hamburger */
.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);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none; flex-direction: column;
  background: rgba(8,11,18,0.98);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0; color: var(--text);
  text-decoration: none; font-size: 16px; font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav-cta {
  margin-top: 12px;
  padding: 14px !important; border-radius: 10px;
  background: var(--cyan) !important; color: #080b12 !important;
  text-align: center; font-weight: 700 !important;
  border-bottom: none !important;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 80px 24px 80px;
  overflow: hidden;
  max-width: 1160px; margin: 0 auto;
}

.hero-bg {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}
#chartCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.15;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 25% 50%, rgba(0,212,255,0.07) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 30%, rgba(74,158,255,0.05) 0%, transparent 60%),
              linear-gradient(to bottom, transparent 50%, var(--bg) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 580px;
  animation: fadeUp 0.9s ease both;
}
.hero-phone {
  position: relative; z-index: 2;
  margin-left: auto;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.07);
  color: var(--cyan); font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.6s infinite;
}

.hero-title {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900; line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 36px;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 48px; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #080b12; font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 32px rgba(0,212,255,0.3);
}
.btn-primary:hover {
  opacity: 0.9; transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(0,212,255,0.45);
}
.btn-xl { padding: 18px 44px; font-size: 17px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 10px;
  border: 1px solid var(--border2);
  color: var(--text); font-size: 15px; font-weight: 500;
  text-decoration: none; background: transparent;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--cyan); background: rgba(0,212,255,0.05);
}
.play-icon { font-size: 12px; color: var(--cyan); }

.hero-stats {
  display: flex; align-items: center; gap: 32px;
}
.stat-divider { width: 1px; height: 40px; background: var(--border2); }
.stat-num {
  font-size: 32px; font-weight: 800; color: var(--text);
}
.stat-unit { font-size: 20px; font-weight: 700; color: var(--cyan); }
.stat-label { display: block; font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── Phone mockup ── */
.phone-glow {
  position: absolute;
  width: 280px; height: 520px;
  border-radius: 44px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.15) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.phone-frame {
  width: 280px; height: 520px;
  background: #0d1120;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 44px;
  padding: 16px 12px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6),
              0 0 0 1px rgba(255,255,255,0.04),
              inset 0 0 40px rgba(0,212,255,0.03);
}
.phone-notch {
  width: 80px; height: 10px;
  background: #1a2035; border-radius: 10px;
  margin: 0 auto 12px;
}
.phone-screen {
  height: calc(100% - 22px);
  background: #0a0e1a;
  border-radius: 30px;
  overflow: hidden;
  display: flex; flex-direction: column;
}

.tg-header {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: #0d1525;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tg-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: #080b12;
  flex-shrink: 0;
}
.tg-name { font-size: 12px; font-weight: 700; }
.tg-status { font-size: 10px; color: var(--green); margin-top: 1px; }
.tg-members { margin-left: auto; font-size: 10px; color: var(--text-muted); }

.tg-messages {
  flex: 1; overflow-y: auto; padding: 10px 8px;
  display: flex; flex-direction: column; gap: 8px;
  scrollbar-width: none;
}
.tg-messages::-webkit-scrollbar { display: none; }

.tg-msg {
  background: #131d2e;
  border-radius: 12px 12px 12px 3px;
  padding: 9px 11px;
  font-size: 11px; line-height: 1.5;
  border-left: 2px solid var(--cyan);
  animation: msgIn 0.4s ease both;
  max-width: 96%;
}
.tg-msg.short { border-left-color: var(--red); }
.tg-msg-symbol { font-weight: 700; color: var(--cyan); }
.tg-msg.short .tg-msg-symbol { color: var(--red); }
.tg-msg-dir { font-weight: 800; font-size: 10px; }
.tg-msg-dir.lng { color: var(--green); }
.tg-msg-dir.sht { color: var(--red); }
.tg-msg-line { color: var(--text-muted); margin-top: 3px; }
.tg-msg-line span { color: var(--text); font-weight: 600; }
.tg-msg-time { text-align: right; font-size: 9px; color: #3a4560; margin-top: 4px; }

/* ===================================================
   SECTION COMMONS
   =================================================== */
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cyan);
  border: 1px solid rgba(0,212,255,0.25);
  background: rgba(0,212,255,0.07);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900; letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 15px; color: var(--text-muted);
  max-width: 540px;
}

/* ===================================================
   EXCHANGES
   =================================================== */
.exchanges {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.exchanges-label {
  text-align: center;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 20px;
}
.exchanges-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.exchange-item {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 32px;
  opacity: 0.45;
  transition: opacity 0.2s;
  position: relative;
}
.exchange-item:hover { opacity: 0.75; }
.ex-coming { opacity: 0.2; }
.ex-logo { height: 22px; width: auto; color: var(--text); fill: var(--text); }
.ex-badge {
  font-size: 9px; font-weight: 700; padding: 2px 7px;
  border-radius: 100px; background: rgba(255,152,0,0.15);
  color: var(--orange); border: 1px solid rgba(255,152,0,0.3);
}
.exchange-divider { width: 1px; height: 24px; background: var(--border); }

/* ===================================================
   FEATURES
   =================================================== */
.features {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg), #0a0f1c, var(--bg));
}
.features > .container { text-align: center; }
.features .section-sub { margin: 0 auto 56px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; text-align: left;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: rgba(0,212,255,0.25);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }
.icon-blue   { background: rgba(74,158,255,0.12);  color: var(--blue); }
.icon-green  { background: rgba(0,230,118,0.12);   color: var(--green); }
.icon-purple { background: rgba(168,85,247,0.12);  color: var(--purple); }
.icon-orange { background: rgba(255,152,0,0.12);   color: var(--orange); }
.icon-cyan   { background: rgba(0,212,255,0.12);   color: var(--cyan); }
.icon-red    { background: rgba(255,71,87,0.12);   color: var(--red); }

.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.feature-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===================================================
   HOW IT WORKS
   =================================================== */
.how { padding: 100px 0; }
.how .container { text-align: center; }

.steps { margin-top: 56px; display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid; grid-template-columns: 80px 1fr auto;
  align-items: center; gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  text-align: left;
}
.step-num {
  font-size: 48px; font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,212,255,0.25);
  line-height: 1;
}
.step-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-body p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 400px; }

.step-arrow {
  text-align: center; color: rgba(0,212,255,0.25);
  font-size: 20px; padding: 8px 0;
}

/* Scan animation */
.scan-anim {
  width: 120px; height: 80px;
  position: relative; overflow: hidden;
  background: rgba(0,212,255,0.04);
  border-radius: 8px; border: 1px solid rgba(0,212,255,0.1);
}
.scan-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 3px; padding: 8px; height: 100%;
}
.scan-grid div { background: rgba(0,212,255,0.07); border-radius: 2px; }
.scan-bar {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scanMove 2s linear infinite; top: 0;
}
@keyframes scanMove {
  0%   { top: 0; }
  100% { top: 100%; }
}

/* Signal bars */
.signal-bars {
  display: flex; align-items: flex-end; gap: 6px;
  height: 80px; padding: 0 8px;
}
.sig-bar {
  flex: 1; background: rgba(0,212,255,0.12);
  border-radius: 3px 3px 0 0; transition: background 0.3s;
}
.sig-bar.active {
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: barPulse 1s ease-in-out infinite alternate;
}
@keyframes barPulse { from { opacity: 0.7; } to { opacity: 1; } }

/* Mini TG card */
.tg-mini {
  background: rgba(13,21,37,0.8);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 14px; min-width: 160px;
}
.tg-mini-tag {
  font-size: 11px; font-weight: 700; margin-bottom: 8px;
}
.long { color: var(--green); }
.tg-mini-row {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--text-muted); margin-bottom: 3px;
}
.val { font-weight: 700; }
.val.green { color: var(--green); }
.val.cyan  { color: var(--cyan); }
.val.red   { color: var(--red); }

/* ===================================================
   RESULTS
   =================================================== */
.results {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg), #0a0f1c);
}
.results .container { text-align: center; }

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px; margin-top: 56px;
}
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
}
.result-card.big { grid-column: span 2; }
.result-card.highlight {
  background: linear-gradient(135deg, rgba(0,212,255,0.07), rgba(74,158,255,0.07));
  border-color: rgba(0,212,255,0.2);
}
.result-num {
  font-size: 52px; font-weight: 900; color: var(--cyan);
  line-height: 1; margin-bottom: 8px;
}
.result-num span { font-size: 28px; color: var(--text-muted); }
.result-label { font-size: 14px; color: var(--text-muted); }
.result-bar-wrap {
  height: 5px; background: rgba(255,255,255,0.05);
  border-radius: 3px; margin-top: 20px; overflow: hidden;
}
.result-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: 3px; width: 0;
  transition: width 1.6s cubic-bezier(0.16,1,0.3,1);
}
.result-bar.animated { width: var(--w); }
.results-disclaimer {
  margin-top: 32px; font-size: 12px; color: #3a4060;
}

/* ===================================================
   LIVE FEED
   =================================================== */
.live-feed { padding: 100px 0; }
.live-feed .container { text-align: center; }
.live-feed .section-sub { margin: 0 auto 48px; }

.feed-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feed-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.feed-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--green);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.6s infinite;
}
.live-dot.sm { width: 6px; height: 6px; }
.feed-date { font-size: 12px; color: var(--text-muted); }

.feed-list { display: flex; flex-direction: column; }
.feed-row {
  display: grid;
  grid-template-columns: 110px 90px 110px 80px 100px 1fr;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  transition: background 0.2s;
}
.feed-row:last-child { border-bottom: none; }
.feed-row:hover { background: rgba(255,255,255,0.02); }
.feed-row.win  { border-left: 3px solid var(--green); }
.feed-row.loss { border-left: 3px solid var(--red); }
.feed-row.active { border-left: 3px solid var(--cyan); }

.feed-symbol { font-weight: 700; color: var(--text); }
.feed-dir { font-size: 12px; font-weight: 700; }
.long-dir-sm  { color: var(--green); }
.short-dir-sm { color: var(--red); }
.feed-entry { color: var(--text-muted); font-size: 13px; }
.feed-result { font-weight: 800; font-size: 14px; }
.feed-row.win  .feed-result { color: var(--green); }
.feed-row.loss .feed-result { color: var(--red); }
.running { color: var(--cyan); }
.feed-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
}
.win-badge   { background: rgba(0,230,118,0.1); color: var(--green); }
.win-badge.tp2 { background: rgba(0,230,118,0.18); }
.loss-badge  { background: rgba(255,71,87,0.1); color: var(--red); }
.active-badge { background: rgba(0,212,255,0.1); color: var(--cyan); }
.feed-time { text-align: right; color: var(--text-muted); font-size: 12px; }

/* ===================================================
   SIGNAL SAMPLE
   =================================================== */
.sample { padding: 80px 0; background: linear-gradient(to bottom, #0a0f1c, var(--bg)); }
.sample .container { text-align: center; }

.sample-grid {
  display: flex; justify-content: center; gap: 24px;
  margin-top: 56px; flex-wrap: wrap;
}
.sample-msg {
  background: var(--bg-card2);
  border-radius: var(--radius); padding: 24px;
  min-width: 300px; max-width: 360px; text-align: left;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.sample-msg:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.long-msg  { border-top: 3px solid var(--green); }
.short-msg { border-top: 3px solid var(--red); }

.msg-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.msg-symbol { font-size: 14px; font-weight: 700; }
.msg-direction { font-size: 12px; font-weight: 800; padding: 3px 10px; border-radius: 6px; }
.long-dir  { color: var(--green); background: rgba(0,230,118,0.1); }
.short-dir { color: var(--red);   background: rgba(255,71,87,0.1); }

.msg-row {
  display: flex; justify-content: space-between;
  font-size: 13px; margin-bottom: 8px;
}
.lbl   { color: var(--text-muted); }
.val-g { color: var(--green); font-weight: 700; }
.val-r { color: var(--red);   font-weight: 700; }
.val-w { color: var(--text);  font-weight: 700; }
.dots  { font-size: 13px; letter-spacing: 2px; }
.long-dots  { color: var(--green); }
.short-dots { color: var(--red); }

.msg-divider { height: 1px; background: var(--border); margin: 12px 0; }
.msg-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 11px; padding: 3px 10px; border-radius: 100px;
  background: rgba(255,255,255,0.04); color: var(--text-muted);
  border: 1px solid var(--border);
}
.msg-time {
  text-align: right; font-size: 11px; color: var(--text-muted); margin-top: 12px;
}
.msg-outcome { margin-top: 10px; text-align: right; }
.outcome-badge {
  display: inline-flex; padding: 4px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
}
.win-outcome { background: rgba(0,230,118,0.12); color: var(--green); }

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials { padding: 100px 0; }
.testimonials .container { text-align: center; }
.testimonials .section-sub { margin: 0 auto 56px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; text-align: left;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.25s, border-color 0.25s;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
}
.testi-featured {
  border-color: rgba(0,212,255,0.25);
  background: linear-gradient(to bottom, rgba(0,212,255,0.05), var(--bg-card));
}
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.testi-text {
  font-size: 13px; color: var(--text-muted); line-height: 1.75;
  flex: 1;
}
.testi-footer {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto;
}
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 700; }
.testi-meta { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.testi-profit {
  margin-left: auto;
  font-size: 16px; font-weight: 800; color: var(--green);
  white-space: nowrap;
}

/* ===================================================
   PRICING
   =================================================== */
.pricing {
  padding: 100px 0;
  background: linear-gradient(to bottom, #0a0f1c, var(--bg));
}
.pricing .container { text-align: center; }

/* Billing toggle */
.billing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 24px 0 48px;
}
.billing-opt {
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  transition: color 0.2s;
}
.billing-opt.active { color: var(--text); }
.toggle-btn {
  width: 48px; height: 26px; border-radius: 13px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border2);
  cursor: pointer; position: relative;
  transition: background 0.2s;
}
.toggle-btn.on { background: var(--cyan); border-color: var(--cyan); }
.toggle-knob {
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.toggle-btn.on .toggle-knob { transform: translateX(22px); }
.annual-save {
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  background: rgba(0,230,118,0.12); color: var(--green);
  border: 1px solid rgba(0,230,118,0.25);
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: start;
}
.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.plan:hover { transform: translateY(-4px); }
.plan-popular {
  border-color: var(--cyan);
  background: linear-gradient(to bottom, rgba(0,212,255,0.06), var(--bg-card));
  box-shadow: 0 0 50px rgba(0,212,255,0.08);
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: #080b12;
  font-size: 11px; font-weight: 800; padding: 4px 16px; border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.plan-price {
  font-size: 38px; font-weight: 900; color: var(--text); margin-bottom: 28px;
}
.price-period { font-size: 14px; color: var(--text-muted); font-weight: 400; }

.plan-features { list-style: none; text-align: left; margin-bottom: 32px; }
.plan-features li {
  font-size: 14px; padding: 8px 0;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.plan-features li.off { color: var(--text-muted); opacity: 0.35; }

.plan-btn {
  display: block; text-align: center;
  padding: 13px; border-radius: 10px;
  border: 1px solid var(--border2);
  color: var(--text); font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.plan-btn:hover { border-color: var(--cyan); background: rgba(0,212,255,0.06); }
.plan-btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-color: transparent; color: #080b12;
  box-shadow: 0 0 24px rgba(0,212,255,0.25);
}
.plan-btn-primary:hover {
  opacity: 0.9;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

/* Guarantees */
.guarantees {
  display: flex; justify-content: center; gap: 40px;
  flex-wrap: wrap; margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.guarantee-item {
  display: flex; align-items: center; gap: 12px;
  text-align: left;
}
.guarantee-icon { font-size: 28px; }
.guarantee-title { font-size: 14px; font-weight: 700; }
.guarantee-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ===================================================
   FAQ
   =================================================== */
.faq { padding: 100px 0; }
.faq .container { text-align: center; }

.faq-list {
  margin-top: 56px; text-align: left;
  max-width: 740px; margin-left: auto; margin-right: auto;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer;
  font-size: 15px; font-weight: 600;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--cyan); }
.faq-arrow {
  font-size: 22px; color: var(--text-muted);
  transition: transform 0.3s; line-height: 1; font-weight: 300;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); color: var(--cyan); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--text-muted); line-height: 1.8;
  transition: max-height 0.35s ease, padding 0.35s;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  padding: 80px 24px;
  background: linear-gradient(135deg,
    rgba(0,212,255,0.07) 0%, rgba(74,158,255,0.04) 100%);
  border-top: 1px solid rgba(0,212,255,0.1);
  border-bottom: 1px solid rgba(0,212,255,0.1);
}
.cta-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(26px,3.5vw,40px); font-weight: 900; margin-bottom: 12px; }
.cta-text p  { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.cta-actions { text-align: center; }
.cta-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* ===================================================
   FOOTER
   =================================================== */
.footer { padding: 64px 0 32px; }
.footer-inner {
  display: flex; gap: 60px; flex-wrap: wrap;
  padding-bottom: 40px; margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.footer-logo { flex: 0 0 220px; }
.footer-logo .logo { display: flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 700; }
.footer-tagline { font-size: 13px; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }
.footer-cols {
  flex: 1; display: flex; gap: 40px; flex-wrap: wrap;
}
.footer-col {
  display: flex; flex-direction: column; gap: 10px;
  min-width: 120px;
}
.footer-col-title {
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom p { font-size: 12px; color: #3a4060; margin-top: 6px; }

/* ===================================================
   STICKY MOBILE CTA
   =================================================== */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  padding: 12px 20px;
  background: rgba(8,11,18,0.96);
  border-top: 1px solid rgba(0,212,255,0.15);
  backdrop-filter: blur(16px);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.sticky-cta-text {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
}
.sticky-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: pulse 1.6s infinite;
}
.sticky-cta-btn {
  padding: 10px 22px; border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #080b12; font-size: 14px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
}

/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,230,118,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(0,230,118,0); }
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1100px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid  { grid-template-columns: 1fr 1fr; }
  .result-card.big { grid-column: span 2; }
  .hero-phone { display: none; }
  .feed-row { grid-template-columns: 100px 80px 100px 70px 90px 1fr; font-size: 12px; }
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .results-grid  { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 60px 1fr; }
  .step-visual { display: none; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 26px; }
  .feed-row { grid-template-columns: 90px 70px 90px 65px; }
  .feed-result, .feed-time { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  .guarantees { flex-direction: column; align-items: flex-start; max-width: 300px; margin-left: auto; margin-right: auto; }
  .footer-inner { flex-direction: column; gap: 32px; }
}
@media (max-width: 480px) {
  .hero { padding: 80px 16px 60px; }
  .results-grid { grid-template-columns: 1fr; }
  .result-card.big { grid-column: span 1; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .exchanges-row { gap: 0; }
  .exchange-item { padding: 10px 16px; }
  .billing-toggle { flex-wrap: wrap; justify-content: center; }
}
