/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0a0a0f;
  --bg-card:     #111118;
  --bg-elevated: #1a1a24;
  --border:      #2a2a38;
  --primary:     #6366f1;
  --primary-dim: rgba(99,102,241,0.15);
  --bull:        #4ade80;
  --bear:        #f87171;
  --hold:        #fbbf24;
  --text-1:      #f1f5f9;
  --text-2:      #94a3b8;
  --text-muted:  #475569;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-full: 999px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* ── Ticker tape ─────────────────────────────────────────────────── */
.ticker-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 32px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
  white-space: nowrap;
  animation: tickerMove 30s linear infinite;
  width: max-content;
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tick {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--text-muted);
}
.tick b { font-weight: 700; }
.tick.bull b { color: var(--bull); }
.tick.bear b { color: var(--bear); }

/* ── Utility ─────────────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #818cf8, #6366f1, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bull-text  { color: var(--bull); font-weight: 700; }
.bear-text  { color: var(--bear); font-weight: 700; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}
.btn:hover  { opacity: .85; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-sm      { padding: 9px 18px;  font-size: 13px; background: var(--primary); color: #fff; }
.btn-lg      { padding: 14px 28px; font-size: 15px; background: var(--primary); color: #fff; }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-2);
}
.btn-outline:hover { border-color: var(--primary); color: var(--text-1); }

/* ── Nav ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10,10,15,.85);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 17px;
}
.logo-icon  { font-size: 20px; }
.logo-text  { color: var(--text-1); }
.logo-by    { font-size: 11px; font-weight: 400; color: var(--text-muted); margin-top: 1px; }
.nav-links  { display: flex; align-items: center; gap: 28px; }
.nav-link   { font-size: 14px; color: var(--text-2); font-weight: 500; transition: color .15s; }
.nav-link:hover { color: var(--text-1); }

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.hero-glow {
  position: absolute;
  top: -200px; left: -100px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(99,102,241,.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dim);
  border: 1px solid rgba(99,102,241,.3);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #818cf8;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6366f1;
  box-shadow: 0 0 8px #6366f1;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

.hero-title {
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-cta  { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-note { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }

/* Social proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sp-avatars { display: flex; }
.sp-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
  margin-left: -8px;
}
.sp-av:first-child { margin-left: 0; }
.sp-text { font-size: 13px; color: var(--text-2); }
.sp-text b { color: var(--text-1); }

/* ── Phone mockup ────────────────────────────────────────────────── */
.phone-wrap {
  position: absolute;
  right: max(40px, calc((100vw - 1120px) / 2 + 24px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 1080px) { .phone-wrap { display: none; } }

.phone {
  width: 290px; height: 600px;
  background: #0d0d15;
  border-radius: 44px;
  border: 1.5px solid #2a2a3a;
  box-shadow:
    0 48px 100px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.04),
    inset 0 0 0 1px rgba(255,255,255,.03);
  overflow: hidden;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 28px;
  background: #0d0d15;
  border-radius: 20px;
  z-index: 10;
  border: 1.5px solid #2a2a3a;
}
.phone-screen {
  width: 100%; height: 100%;
  background: #000;
  position: relative;
  overflow: hidden;
}
.phone-glow {
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 100px;
  background: radial-gradient(ellipse, rgba(99,102,241,.4) 0%, transparent 70%);
  pointer-events: none;
}

/* Camera UI */
.camera-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(180deg,rgba(0,0,0,.5) 0%,transparent 25%,transparent 75%,rgba(0,0,0,.5) 100%);
}
.camera-hint {
  font-size: 10.5px; font-weight: 600;
  color: rgba(255,255,255,.9);
  text-align: center; padding: 0 24px;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
}
.camera-sub { font-size: 9.5px; color: rgba(255,255,255,.4); }

.viewfinder {
  width: 210px; height: 130px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: #fff; border-style: solid; border-width: 0;
}
.corner.tl { top:0;    left:0;  border-top-width:2.5px;    border-left-width:2.5px;  border-top-left-radius:3px; }
.corner.tr { top:0;    right:0; border-top-width:2.5px;    border-right-width:2.5px; border-top-right-radius:3px; }
.corner.bl { bottom:0; left:0;  border-bottom-width:2.5px; border-left-width:2.5px;  border-bottom-left-radius:3px; }
.corner.br { bottom:0; right:0; border-bottom-width:2.5px; border-right-width:2.5px; border-bottom-right-radius:3px; }

.vf-logo { width: 56px; height: 56px; border-radius: 14px; background: #111; display: flex; align-items: center; justify-content: center; }
.vf-logo-inner { font-size: 26px; font-weight: 900; color: #fff; transition: opacity .2s; }

.snap-controls {
  position: absolute; bottom: 28px; left:0; right:0;
  display: flex; justify-content: center;
}
.snap-btn {
  width: 66px; height: 66px; border-radius: 50%;
  background: #fff; border: 4px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
}
.snap-inner { width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 2px solid #000; }

/* Result sheet */
.result-sheet {
  position: absolute; left:0; right:0; bottom:0;
  background: #111118;
  border-top-left-radius: 26px; border-top-right-radius: 26px;
  padding: 12px 16px 20px;
  transform: translateY(100%);
  animation: slideUp .55s cubic-bezier(.34,1.56,.64,1) 1.4s forwards;
}
@keyframes slideUp { to { transform: translateY(0); } }

.sheet-handle { width: 32px; height: 3px; background: #2a2a38; border-radius: 2px; margin: 0 auto 14px; }
.sheet-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.sheet-logo { width: 40px; height: 40px; border-radius: 10px; background: #1a1a24; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; color: #fff; }
.sheet-company { font-size: 14px; font-weight: 700; color: var(--text-1); }
.sheet-ticker  { font-size: 11px; color: var(--text-2); }

.verdict-card { border-radius: 12px; padding: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 10px; background: #1a1a24; }
.verdict-card.bullish { border: 1px solid rgba(74,222,128,.25); }
.verdict-card.bearish { border: 1px solid rgba(248,113,113,.25); }
.verdict-emoji { font-size: 22px; }
.verdict-label { font-size: 22px; font-weight: 800; }
.verdict-card.bullish .verdict-label { color: var(--bull); }
.verdict-card.bearish .verdict-label { color: var(--bear); }

.price-row     { display: flex; background: #1a1a24; border-radius: 10px; padding: 10px; margin-bottom: 10px; }
.price-item    { flex: 1; text-align: center; }
.price-label   { display: block; font-size: 9px; color: var(--text-muted); margin-bottom: 2px; }
.price-value   { font-size: 12px; font-weight: 600; color: var(--text-1); }
.price-value.bull { color: var(--bull); }
.price-value.bear { color: var(--bear); }
.price-divider { width: 1px; background: var(--border); }

.reasoning-card  { background: #1a1a24; border-radius: 10px; padding: 10px; margin-bottom: 10px; }
.reasoning-label { display: block; font-size: 9px; color: var(--text-muted); font-weight: 600; letter-spacing: .5px; margin-bottom: 4px; }
.reasoning-text  { font-size: 10px; color: var(--text-2); line-height: 1.5; }

.share-btn-mock {
  width: 100%;
  background: transparent; border: 1px solid rgba(99,102,241,.4);
  border-radius: 999px; padding: 8px;
  font-size: 11px; font-weight: 600; color: #818cf8;
  cursor: pointer; font-family: inherit;
}

/* ── Sections ────────────────────────────────────────────────────── */
.section     { padding: 100px 0; }
.section-alt { background: var(--bg-card); }

.section-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800; letter-spacing: -1px;
  line-height: 1.1; margin-bottom: 56px;
}

/* ── Steps ───────────────────────────────────────────────────────── */
.steps { display: flex; align-items: flex-start; gap: 16px; }
.step {
  flex: 1;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: border-color .2s;
}
.step:hover { border-color: rgba(99,102,241,.4); }
.section-alt .step { background: var(--bg-elevated); }
.step-num   { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: 1px; margin-bottom: 12px; }
.step-icon  { font-size: 32px; margin-bottom: 16px; }
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-desc  { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.step-arrow { font-size: 24px; color: var(--text-muted); padding-top: 72px; flex-shrink: 0; }

/* ── Use cases ───────────────────────────────────────────────────── */
.usecases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.uc {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px;
  transition: border-color .2s;
}
.uc:hover { border-color: rgba(99,102,241,.35); }
.uc-scene { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.uc-text h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.uc-text p  { font-size: 13px; color: var(--text-2); line-height: 1.55; }

/* ── Features ────────────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px 24px;
  transition: border-color .2s;
}
.feature:hover { border-color: rgba(99,102,241,.4); }
.feature-icon  { font-size: 28px; margin-bottom: 16px; }
.feature-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-desc  { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ── Pricing ─────────────────────────────────────────────────────── */
.pricing {
  display: flex;
  gap: 20px;
  max-width: 740px;
}
.plan {
  flex: 1;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  position: relative;
}
.plan-featured {
  background: linear-gradient(160deg, #1a1a2e, #16162a);
  border-color: rgba(99,102,241,.5);
  box-shadow: 0 0 40px rgba(99,102,241,.12);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: var(--radius-full);
  white-space: nowrap;
}
.plan-name   { font-size: 14px; font-weight: 700; color: var(--text-2); margin-bottom: 10px; }
.plan-price  { font-size: 42px; font-weight: 900; letter-spacing: -1px; margin-bottom: 6px; }
.plan-period { font-size: 16px; font-weight: 500; color: var(--text-muted); }
.plan-desc   { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.plan-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.plan-features li { font-size: 14px; color: var(--text-2); display: flex; align-items: center; gap: 10px; }
.plan-features li b { color: var(--text-1); }
.check { color: var(--bull); font-weight: 700; flex-shrink: 0; }
.muted { color: var(--text-muted); flex-shrink: 0; }
.plan-btn { width: 100%; justify-content: center; }

/* ── TC Banner ───────────────────────────────────────────────────── */
.tc-banner { display: flex; gap: 80px; align-items: center; }
.tc-left   { flex: 1; }
.tc-logo   { display: flex; align-items: baseline; gap: 8px; font-size: 18px; font-weight: 800; margin-bottom: 20px; }
.tc-by     { font-size: 12px; font-weight: 400; color: var(--text-muted); }
.tc-title  { font-size: 36px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 16px; }
.tc-desc   { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 28px; max-width: 420px; }
.tc-right  { flex-shrink: 0; }
.tc-feature-list { display: flex; flex-direction: column; gap: 12px; }
.tc-feat   { font-size: 14px; color: var(--text-2); display: flex; align-items: center; gap: 10px; }
.tc-check  { color: var(--bull); font-weight: 700; }

/* ── Download CTA ────────────────────────────────────────────────── */
.section-download {
  position: relative; text-align: center;
  overflow: hidden; background: var(--bg);
}
.glow-bottom {
  bottom: -200px; right: -100px;
  top: auto; left: auto;
}
.download-container { position: relative; z-index: 2; }
.download-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900; letter-spacing: -2px; margin-bottom: 16px;
}
.download-sub {
  font-size: 18px; color: var(--text-2); margin-bottom: 40px;
}
.waitlist-form {
  display: flex; gap: 12px;
  max-width: 460px; margin: 0 auto 16px;
}
.waitlist-input {
  flex: 1;
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius-full); padding: 14px 22px;
  font-size: 15px; color: var(--text-1); font-family: inherit;
  outline: none; transition: border-color .15s;
}
.waitlist-input::placeholder { color: var(--text-muted); }
.waitlist-input:focus { border-color: var(--primary); }
.waitlist-thanks {
  font-size: 16px; color: var(--bull);
  font-weight: 600; margin-bottom: 16px;
}
.download-fine { font-size: 13px; color: var(--text-muted); }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.footer-left { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.footer-by   { font-size: 13px; color: var(--text-muted); }
.footer-by a { color: var(--primary); }
.footer-disc { font-size: 11px; color: var(--text-muted); width: 100%; margin-top: 4px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-2); transition: color .15s; }
.footer-links a:hover { color: var(--text-1); }

/* ── Scroll animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero .container { max-width: 100%; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .usecases { grid-template-columns: repeat(2, 1fr); }
  .tc-banner { flex-direction: column; gap: 40px; }
  .pricing { flex-direction: column; max-width: 400px; }
  .waitlist-form { flex-direction: column; }
}

@media (max-width: 600px) {
  .features  { grid-template-columns: 1fr; }
  .usecases  { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn-lg { padding: 13px 22px; font-size: 14px; }
  .ticker-bar { display: none; }
  .nav { top: 0; }
}
