:root {
  --bg: #06060f;
  --surface: #0d0d1a;
  --surface-2: #13132a;
  --border: #1e1e40;
  --text: #f0f0f8;
  --text-muted: #6b6b9a;
  --text-subtle: #3a3a6e;
  --accent: #5b6ef5;
  --accent-glow: rgba(91, 110, 245, 0.2);
  --green: #34d399;
  --orange: #fb923c;
  --red: #f87171;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(6, 6, 15, 0.8);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: color 0.15s, border-color 0.15s;
}

.nav-link:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

/* Hero */
.hero {
  min-height: 100vh;
  padding: 140px 80px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 48px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 120px;
  line-height: 1.4;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Dashboard Mockup */
.hero-visual { position: relative; z-index: 1; }

.dashboard-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(91,110,245,0.1);
}

.mockup-topbar {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  gap: 12px;
}

.mockup-dots { display: flex; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'DM Mono', monospace;
}

.mockup-actions { display: flex; }
.mockup-action {
  font-size: 11px;
  color: var(--accent);
  background: rgba(91,110,245,0.15);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(91,110,245,0.3);
}

.mockup-body { display: flex; height: 340px; }

.mockup-sidebar {
  width: 160px;
  border-right: 1px solid var(--border);
  padding: 20px 0;
}

.sidebar-item {
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
}

.sidebar-item.active {
  background: rgba(91,110,245,0.1);
  color: var(--accent);
  border-left: 2px solid var(--accent);
}

.sidebar-icon { font-size: 10px; }

.mockup-projects {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.project-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}

.project-card.muted { opacity: 0.5; }

.project-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.badge-building { background: rgba(91,110,245,0.2); color: #818cf8; }
.badge-shipped { background: rgba(52,211,153,0.15); color: var(--green); }
.badge-idea { background: rgba(251,146,60,0.15); color: var(--orange); }
.badge-hold { background: rgba(107,107,154,0.15); color: var(--text-muted); }

.project-date { font-size: 11px; color: var(--text-subtle); }

.project-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.project-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* Features */
.features {
  padding: 100px 80px;
}

.features-header {
  margin-bottom: 64px;
}

.features-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  padding: 40px 36px;
  background: var(--surface);
  border-right: 1px solid var(--border);
}

.feature-card:last-child { border-right: none; }

.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* The Feed */
.the-feed {
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feed-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
}

.feed-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.feed-example {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.feed-item:last-child { border-bottom: none; }
.feed-item.muted { opacity: 0.5; }

.feed-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.feed-item.muted .feed-dot { background: var(--text-muted); }

.feed-item strong { color: var(--text); font-weight: 500; }

.feed-time {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-subtle);
  white-space: nowrap;
}

/* Feed card */
.feed-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feed-card-label {
  padding: 16px 20px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.feed-card-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.feed-entries { padding: 0; }

.feed-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.feed-entry:last-child { border-bottom: none; }

.entry-update {
  font-size: 13px;
  color: var(--text-muted);
}

.entry-time {
  font-size: 11px;
  color: var(--text-subtle);
}

.feed-count {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  background: var(--surface-2);
}

.count-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
  margin-right: 4px;
}

/* Pricing */
.pricing {
  padding: 100px 80px;
}

.pricing-header { margin-bottom: 56px; }

.pricing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(91,110,245,0.15);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.plan-period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}

.plan-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-subtle);
}

.plan-features li.feature-included::before {
  background: var(--accent);
}

.plan-note {
  font-size: 12px;
  color: var(--text-subtle);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* Closing */
.closing {
  padding: 100px 80px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.closing-cta-note {
  font-size: 13px;
  color: var(--text-subtle);
  letter-spacing: 0.04em;
}

/* Footer */
.footer {
  padding: 32px 80px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
}

.footer-by {
  font-size: 12px;
  color: var(--text-subtle);
}

.footer-links {
  font-size: 12px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    padding: 120px 40px 60px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card { border-right: none; border-bottom: 1px solid var(--border); }
  .the-feed {
    padding: 60px 40px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing, .closing, .features {
    padding: 60px 40px;
  }
  .footer {
    padding: 24px 40px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .hero-stat-row {
    flex-wrap: wrap;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .hero { padding: 100px 24px 48px; }
  .features, .pricing, .closing, .the-feed { padding: 60px 24px; }
  .footer { padding: 20px 24px; }
  .hero-headline { font-size: 40px; }
}