:root {
  --bg: #060D1A;
  --bg-card: #0B1526;
  --bg-card-hover: #0F1E36;
  --fg: #FFFFFF;
  --fg-muted: #8B9BB4;
  --fg-dim: #4A5A72;
  --accent: #00E5C8;
  --accent-dim: rgba(0, 229, 200, 0.12);
  --accent-glow: rgba(0, 229, 200, 0.25);
  --border: rgba(139, 155, 180, 0.12);
  --border-accent: rgba(0, 229, 200, 0.3);
  --tag-fund: #00E5C8;
  --tag-reg: #6C8CF5;
  --tag-part: #F5A623;
  --tag-comp: #9B59B6;
  --tag-policy: #E74C3C;
  --radius: 8px;
  --radius-lg: 16px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 13, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #060D1A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
}
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.3px;
}
.nav-tagline {
  color: var(--fg-muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
  padding: 140px 48px 80px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,200,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,200,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-pulse-ring {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 200, 0.08);
  background: radial-gradient(circle, rgba(0, 229, 200, 0.03) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 12px;
  font-family: 'Space Grotesk', monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-headline {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-sub {
  color: var(--fg-muted);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat-item { padding: 0 32px; }
.stat-item:first-child { padding-left: 0; }
.stat-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* HERO FEED */
.hero-feed {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow: hidden;
}
.hero-feed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.feed-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.feed-dot.live {
  background: #00E5C8;
  box-shadow: 0 0 6px #00E5C8;
  animation: blink 2s ease-in-out infinite;
}
.feed-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.feed-items { display: flex; flex-direction: column; gap: 16px; }
.feed-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 10px;
  font-size: 13px;
}
.feed-tag {
  font-size: 9px;
  font-family: 'Space Grotesk', monospace;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 6px;
  border-radius: 4px;
  white-space: nowrap;
  margin-top: 1px;
}
.feed-tag.fund { background: rgba(0, 229, 200, 0.15); color: #00E5C8; }
.feed-tag.reg { background: rgba(108, 140, 245, 0.15); color: #6C8CF5; }
.feed-tag.part { background: rgba(245, 166, 35, 0.15); color: #F5A623; }
.feed-tag.comp { background: rgba(155, 89, 182, 0.15); color: #9B59B6; }
.feed-tag.policy { background: rgba(231, 76, 60, 0.15); color: #E74C3C; }
.feed-text { color: var(--fg-muted); line-height: 1.4; }
.feed-time { color: var(--fg-dim); font-size: 11px; white-space: nowrap; }

/* INDUSTRY */
.industry-section {
  padding: 120px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, #070E1D 100%);
}
.industry-inner { max-width: 1280px; margin: 0 auto; }
.industry-text {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--fg-muted);
  max-width: 800px;
  margin: 0 auto 72px;
  text-align: center;
  line-height: 1.8;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.industry-card {
  background: var(--bg-card);
  padding: 40px 36px;
  transition: background 0.2s;
}
.industry-card:hover { background: var(--bg-card-hover); }
.ind-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.industry-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
}
.industry-card p { color: var(--fg-muted); font-size: 14px; line-height: 1.7; }

/* MONITOR */
.monitor-section {
  padding: 120px 48px;
  background: #070E1D;
}
.monitor-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -1px;
  max-width: 600px;
  margin-bottom: 64px;
}
.monitor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.monitor-card {
  background: var(--bg-card);
  padding: 32px 28px;
  transition: background 0.2s;
}
.monitor-card:hover { background: var(--bg-card-hover); }
.mon-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.monitor-card h4 {
  font-size: 15px;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
}
.monitor-card p { color: var(--fg-muted); font-size: 13px; line-height: 1.6; }

/* DELIVER */
.deliver-section {
  padding: 120px 48px;
  background: var(--bg);
}
.deliver-inner { max-width: 1280px; margin: 0 auto; }
.deliver-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 64px;
}
.step {
  flex: 1;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.step-arrow {
  flex-shrink: 0;
  padding: 0 20px;
  color: var(--accent);
}
.step-number {
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.step-body h4 {
  font-size: 16px;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
}
.step-body p { color: var(--fg-muted); font-size: 13px; line-height: 1.6; }

/* Digest card visual */
.deliver-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.deliver-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.digest-card { max-width: 640px; }
.digest-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.digest-avatar {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #060D1A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
}
.digest-meta { display: flex; flex-direction: column; }
.digest-from {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.digest-date { font-size: 12px; color: var(--fg-muted); }
.digest-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.digest-items { display: flex; flex-direction: column; gap: 16px; }
.dig-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.dig-score {
  font-family: 'Space Grotesk', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(0, 229, 200, 0.1);
  color: var(--accent);
  white-space: nowrap;
  margin-top: 1px;
  flex-shrink: 0;
}
.digest-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--fg-dim);
  font-style: italic;
}

/* MANIFESTO */
.manifesto-section {
  padding: 140px 48px;
  background: #070E1D;
  text-align: center;
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-badge {
  display: inline-block;
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  background: var(--accent-dim);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 40px;
}
.manifesto-heading {
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 28px;
}
.manifesto-sub {
  color: var(--fg-muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 48px;
}
.manifesto-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--fg-muted);
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  margin-bottom: 64px;
  text-align: left;
}
.quote-mark { color: var(--accent); font-size: 48px; line-height: 0; vertical-align: -20px; margin-right: 4px; }
.manifesto-end {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}
.end-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* FOOTER */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
}
.logo-mark-sm {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #060D1A;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.footer-tagline { color: var(--fg-muted); font-size: 14px; }
.footer-copy { color: var(--fg-dim); font-size: 12px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 120px; }
  .hero-feed { max-width: 520px; }
  .industry-grid { grid-template-columns: 1fr; }
  .monitor-grid { grid-template-columns: repeat(2, 1fr); }
  .deliver-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
}
@media (max-width: 640px) {
  .hero { padding: 100px 24px 60px; }
  .navbar { padding: 0 24px; }
  .industry-section, .monitor-section, .deliver-section, .manifesto-section { padding: 80px 24px; }
  .monitor-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: start; gap: 20px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }
  .section-heading { font-size: 28px; }
}