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

:root {
  --bg: #080b0f;
  --bg-alt: #0d1117;
  --bg-card: #0f1419;
  --bg-card-hover: #141c24;
  --border: rgba(255,255,255,0.07);
  --fg: #e8eaf0;
  --fg-muted: #7a8494;
  --fg-subtle: #4a5568;
  --accent: #f5a623;
  --accent-dim: rgba(245,166,35,0.12);
  --amber: #f5a623;
  --green: #22c55e;
  --green-dim: rgba(34,197,94,0.12);
  --red: #ef4444;
  --font-display: 'Sora', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,11,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px;
  letter-spacing: -0.02em;
}
.logo-accent { color: var(--accent); }
.nav-tag {
  font-size: 12px; color: var(--fg-muted);
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* HERO */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 32px 96px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}
.hero-content {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.headline-accent { color: var(--accent); }
.hero-sub {
  font-size: 17px; color: var(--fg-muted);
  max-width: 480px; line-height: 1.65;
}

/* Hero Card */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(245,166,35,0.08), 0 24px 64px rgba(0,0,0,0.4);
}
.upload-zone {
  padding: 28px 24px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  background: rgba(255,255,255,0.02);
}
.upload-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  color: var(--accent);
}
.upload-text {
  font-size: 14px; font-weight: 500; color: var(--fg);
  margin-bottom: 4px;
}
.upload-sub {
  font-size: 11px; color: var(--fg-muted);
}
.clarity-panel {
  padding: 20px 24px;
}
.clarity-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.clarity-label {
  font-size: 11px; font-weight: 600;
  color: var(--fg-muted); letter-spacing: 0.06em; text-transform: uppercase;
}
.clarity-score {
  font-size: 11px; font-weight: 600; padding: 3px 8px;
  border-radius: 20px;
}
.score-green {
  background: var(--green-dim); color: var(--green);
}
.score-amber {
  background: rgba(245,166,35,0.12); color: var(--amber);
}
.score-red {
  background: rgba(239,68,68,0.12); color: var(--red);
}
.clarity-lines { margin-bottom: 16px; }
.cl-line {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--fg-muted);
  padding: 6px 0; border-bottom: 1px solid var(--border);
}
.cl-dot {
  width: 7px; height: 7px; border-radius: 50%;
  margin-top: 5px; flex-shrink: 0;
}
.cl-dot.green { background: var(--green); }
.cl-dot.amber { background: var(--amber); }
.cl-dot.red { background: var(--red); }
.clarity-actions {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 14px;
}
.action-item {
  font-size: 12px; color: var(--fg-muted);
  padding: 8px 10px;
  background: rgba(245,166,35,0.05);
  border-left: 2px solid var(--accent);
  border-radius: 0 6px 6px 0;
}
.disclaimer-mini {
  font-size: 10px; color: var(--fg-subtle);
  text-align: center; font-style: italic;
}

/* DEMO SECTION */
.demo-section {
  padding: 80px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.demo-label, .features-label, .how-label, .usecases-label {
  text-align: center;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.demo-headline, .features-headline, .how-headline, .usecases-headline, .closing-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; letter-spacing: -0.02em;
  text-align: center; margin-bottom: 48px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.demo-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 32px; align-items: center;
}
.demo-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.demo-before { background: #0d1117; }
.demo-after { background: var(--bg-card); }
.demo-panel-label {
  padding: 10px 16px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.label-before { background: rgba(239,68,68,0.15); color: #ef4444; }
.label-after { background: rgba(245,166,35,0.12); color: var(--accent); }

/* BEFORE screen mock */
.demo-screen { padding: 16px; }
.screen-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.screen-dots { display: flex; gap: 5px; }
.screen-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--fg-subtle);
}
.screen-title { font-size: 11px; color: var(--fg-muted); }
.chart-area { background: #0a0e13; border-radius: 8px; padding: 12px; }
.price-row {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 8px;
}
.price-main {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
}
.price-change { font-size: 13px; font-weight: 600; }
.price-change.neg { color: #ef4444; }
.price-change.pos { color: var(--green); }
.sparkline { height: 40px; margin-bottom: 10px; }
.sparkline svg { width: 100%; height: 100%; }
.positions-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.pos-row {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--fg-muted);
  padding: 3px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pos-row span:first-child { color: var(--fg); }
.neg { color: #ef4444; }
.pos { color: var(--green); }
.indicators-row { display: flex; gap: 6px; margin-bottom: 8px; flex-wrap: wrap; }
.ind-tag {
  font-size: 10px; padding: 2px 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px; color: var(--fg-muted);
}
.news-row { display: flex; flex-direction: column; gap: 2px; }
.news-item {
  font-size: 10px; color: var(--fg-subtle);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.screen-confused {
  margin-top: 12px; padding: 10px 12px;
  background: rgba(239,68,68,0.08);
  border-radius: 6px; text-align: center;
  font-size: 12px; color: #ef4444; font-style: italic;
}

/* AFTER report */
.cd-report { padding: 16px; }
.report-header-row {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 14px;
  flex-wrap: wrap; gap: 8px;
}
.report-type {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
}
.report-scores { display: flex; gap: 6px; }
.score-chip {
  font-size: 10px; font-weight: 600;
  padding: 3px 8px; border-radius: 20px;
}
.report-section { margin-bottom: 14px; }
.rs-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-muted); margin-bottom: 6px;
}
.risk-label { color: #f59e0b; }
.positive-label { color: var(--green); }
.action-label { color: #818cf8; }
.rs-text { font-size: 12px; color: var(--fg-muted); line-height: 1.5; }
.risk-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: var(--fg-muted);
  margin-bottom: 5px;
}
.risk-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #f59e0b; flex-shrink: 0; margin-top: 4px;
}
.pos-signal-item {
  font-size: 12px; color: var(--green);
  padding: 4px 0; border-bottom: 1px solid rgba(34,197,94,0.1);
}
.action-check {
  font-size: 11px; color: #818cf8;
  padding: 5px 8px; margin-bottom: 4px;
  background: rgba(129,140,248,0.06);
  border-radius: 4px; border-left: 2px solid #818cf8;
}
.report-footer {
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 10px; color: var(--fg-subtle);
  font-style: italic; text-align: center;
}
.demo-arrow {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: var(--accent); font-size: 12px; font-weight: 600;
}

/* FEATURES */
.features-section { padding: 80px 32px; }
.features-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, background 0.2s;
}
.feature-card:hover {
  border-color: rgba(245,166,35,0.25);
  background: var(--bg-card-hover);
}
.feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 16px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.feature-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

/* HOW IT WORKS */
.how-section {
  padding: 80px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-steps {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
}
.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800;
  color: var(--accent); margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.step-title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  margin-bottom: 8px;
}
.step-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }
.step-connector {
  flex-shrink: 0; color: var(--fg-subtle);
}

/* USE CASES */
.usecases-section { padding: 80px 32px; }
.usecases-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.usecase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s;
}
.usecase-card:hover { border-color: rgba(245,166,35,0.2); }
.usecase-icon {
  color: var(--accent); margin-bottom: 12px;
}
.usecase-title {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  margin-bottom: 6px;
}
.usecase-desc { font-size: 12px; color: var(--fg-muted); line-height: 1.5; }

/* COMPLIANCE */
.compliance-section {
  padding: 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.compliance-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(245,166,35,0.05);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.compliance-icon { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.compliance-text {
  font-size: 13px; color: var(--fg-muted);
  line-height: 1.6;
}
.compliance-text strong { color: var(--fg); }

/* CLOSING */
.closing-section { padding: 96px 32px; }
.closing-content { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.1; margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px; color: var(--fg-muted);
  max-width: 560px; margin: 0 auto 56px;
  line-height: 1.7;
}
.closing-stats {
  display: flex; justify-content: center; align-items: center;
  gap: 48px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800;
  color: var(--accent); letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.stat-desc {
  font-size: 12px; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
}
.footer-tagline {
  font-size: 13px; color: var(--fg-muted);
}
.footer-note {
  font-size: 11px; color: var(--fg-subtle);
  max-width: 400px;
}
.footer-copy { font-size: 11px; color: var(--fg-subtle); }

/* CTA BUTTON */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #09090b;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #e09010; transform: translateY(-1px); }

.hero-cta-area { margin-top: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.cta-note { font-size: 0.8rem; color: var(--fg-muted); }

/* EMAIL CAPTURE SECTION */
.email-section {
  padding: 80px 40px;
  background: linear-gradient(to bottom, var(--bg), var(--bg-alt));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.email-section-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.email-headline {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.email-sub { font-size: 0.95rem; color: var(--fg-muted); margin-bottom: 28px; }
.email-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto 10px; }
.email-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}
.email-input:focus { border-color: var(--accent); }
.email-disclaimer { font-size: 0.75rem; color: var(--fg-subtle); }
.signup-success {
  padding: 16px 20px;
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 8px;
  color: var(--green);
  font-size: 0.9rem;
  max-width: 420px;
  margin: 0 auto;
}

/* FEATURES GRID 3-COL */
.features-grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
.feature-platform .platform-icons { display: flex; gap: 12px; margin-bottom: 16px; }
.platform-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .demo-grid { grid-template-columns: 1fr; }
  .demo-arrow { flex-direction: row; transform: rotate(90deg); }
  .features-grid, .features-grid-3, .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { flex-direction: column; }
  .step-connector { transform: rotate(90deg); }
}
@media (max-width: 600px) {
  .hero { padding: 60px 20px 72px; }
  .features-grid, .usecases-grid { grid-template-columns: 1fr; }
  .closing-stats { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .report-scores { flex-wrap: wrap; }
}