/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0B1D3A;
  --navy-mid: #12264D;
  --green: #00E5A0;
  --green-dim: rgba(0,229,160,0.12);
  --green-glow: rgba(0,229,160,0.06);
  --cream: #F5F4F0;
  --cream-dark: #ECEAE3;
  --text-primary: #0B1D3A;
  --text-muted: #5A6A88;
  --text-light: #8A9BBF;
  --risk: #FF4B6E;
  --gain: #00E5A0;
  --up: #00E5A0;
  --down: #FF4B6E;
  --border: rgba(11,29,58,0.08);
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; }

/* === TICKER === */
.ticker-wrap {
  background: var(--navy);
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,229,160,0.15);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-size: 0.8rem;
  font-family: 'DM Sans', sans-serif;
}
.ticker-item .pair {
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.ticker-item .up { color: var(--up); font-weight: 600; }
.ticker-item .down { color: var(--down); font-weight: 600; }
.ticker-sep { color: rgba(255,255,255,0.15); }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,229,160,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left {
  padding: 80px 64px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 1px solid rgba(0,229,160,0.2);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 440px;
}
.hero-right {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 80px 80px 48px;
  gap: 24px;
}

/* Signal Card */
.signal-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(11,29,58,0.12), 0 1px 0 rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 360px;
}
.signal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.signal-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 600;
}
.signal-time {
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 600;
}
.signal-pair {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.signal-direction {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.signal-direction.long {
  background: rgba(0,229,160,0.1);
  color: #00A874;
}
.signal-direction .dir-icon { font-size: 1em; }
.signal-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.meta-key {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.meta-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.meta-val.risk { color: var(--risk); }
.meta-val.gain { color: #00A874; }
.meta-val.conf { color: var(--green); }
.signal-reason {
  background: var(--green-glow);
  border-left: 3px solid var(--green);
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--text-primary);
  line-height: 1.5;
  border-radius: 0 8px 8px 0;
}
.market-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.chip {
  padding: 5px 14px;
  background: var(--cream-dark);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
}

/* === FEATURES === */
.features {
  background: var(--cream);
  padding: 120px 80px;
}
.features-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 16px;
}
.features-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.15;
}
.features-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.feature-card {
  background: var(--cream);
  padding: 40px 36px;
  transition: background 0.2s ease;
}
.feature-card:hover { background: #fff; }
.feature-icon {
  margin-bottom: 20px;
  display: inline-flex;
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === PROCESS === */
.process {
  background: var(--navy);
  padding: 80px;
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 48px;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.step {
  flex: 1;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,229,160,0.15);
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}
.step-arrow {
  padding-top: 32px;
  display: flex;
  align-items: flex-start;
}

/* === STATS === */
.stats {
  background: #fff;
  padding: 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.stat { text-align: center; padding: 0 48px; }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 180px;
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}

/* === CLOSING === */
.closing {
  background: var(--cream);
  padding: 120px 80px;
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 40px;
  font-style: italic;
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  padding: 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-light);
}
.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 60px 32px; }
  .hero-right { padding: 48px 32px; }
  .features { padding: 80px 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .process { padding: 64px 32px; }
  .process-steps { flex-direction: column; gap: 40px; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .stats { padding: 64px 32px; }
  .stats-inner { flex-direction: column; gap: 40px; }
  .stat-divider { width: 80px; height: 1px; }
  .closing { padding: 80px 32px; }
  .footer { padding: 40px 32px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 1.8rem; }
  .stat-value { font-size: 2.5rem; }
  .signal-card { padding: 20px; }
}