:root {
  --bg: #0B1120;
  --bg-secondary: #111827;
  --surface: #161D2E;
  --border: #1E2A3A;
  --text-primary: #E2EAF4;
  --text-secondary: #8899AA;
  --text-muted: #5A6A7A;
  --accent: #00D4AA;
  --accent-dim: rgba(0, 212, 170, 0.12);
  --accent-border: rgba(0, 212, 170, 0.3);
  --green: #10B981;
  --green-dim: rgba(16, 185, 129, 0.12);
  --red: #EF4444;
  --red-dim: rgba(239, 68, 68, 0.12);
  --yellow: #F59E0B;
  --yellow-dim: rgba(245, 158, 11, 0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

/* Hero */
.hero {
  padding: 130px 32px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.hero-meta { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text-muted); }
.dot { color: var(--text-muted); }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0B1120;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary:hover { background: #00F0C0; transform: translateY(-1px); }
.btn-primary.large { font-size: 17px; padding: 16px 32px; border-radius: 10px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--accent-border); color: var(--accent); }

/* Browser Frame */
.browser-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,170,0.05);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #3D1F1F; }
.dot-yellow { background: #3D3014; }
.dot-green { background: #1F3D27; }
.browser-url {
  flex: 1;
  background: var(--bg);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-display);
  text-align: center;
}
.browser-status-pill {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.06em;
}
.browser-status-pill.running {
  background: var(--green-dim);
  color: var(--green);
}
.browser-body { display: flex; height: 260px; }
.dash-sidebar {
  width: 160px;
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
}
.dash-nav-item.active { background: var(--accent-dim); color: var(--accent); }
.dash-content { flex: 1; padding: 16px; overflow: hidden; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dash-title { font-family: var(--font-display); font-size: 14px; font-weight: 600; }
.dash-count { font-size: 11px; color: var(--text-muted); }
.suite-list { display: flex; flex-direction: column; gap: 8px; }
.suite-item { display: flex; align-items: center; gap: 10px; }
.suite-icon {
  width: 26px; height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.suite-icon.green { background: var(--green-dim); color: var(--green); }
.suite-icon.red { background: var(--red-dim); color: var(--red); }
.suite-icon.yellow { background: var(--yellow-dim); color: var(--yellow); }
.suite-info { flex: 1; min-width: 0; }
.suite-name { font-size: 12px; font-weight: 500; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.suite-meta { font-size: 10px; color: var(--text-muted); }
.suite-badge { font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 10px; letter-spacing: 0.04em; }
.suite-badge.green { background: var(--green-dim); color: var(--green); }
.suite-badge.red { background: var(--red-dim); color: var(--red); }
.suite-badge.yellow { background: var(--yellow-dim); color: var(--yellow); }

/* FloE Visual */
.hero-visual { position: relative; }
.floe-visual {
  position: absolute;
  bottom: -20px;
  right: -10px;
  opacity: 0.6;
}

/* Sections */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 48px;
}

/* Features */
.features { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.2s;
}
.feature-card:hover { border-color: var(--accent-border); transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* How */
.how { padding: 80px 0; background: var(--bg-secondary); }
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: 48px 1fr 160px; gap: 24px; align-items: center; }
.step-num { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--accent); opacity: 0.5; }
.step-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.step-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.step-connector { margin: 0 0 0 23px; padding: 8px 0; }
.step-visual { display: flex; justify-content: center; }

/* Manifesto */
.manifesto { padding: 100px 0; background: var(--bg); }
.manifesto-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.manifesto-quote { margin-bottom: 48px; }
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}
.manifesto-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stat-value { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--accent); letter-spacing: -0.04em; margin-bottom: 6px; }
.stat-label { font-size: 14px; color: var(--text-muted); }

/* Pricing */
.pricing { padding: 100px 0; background: var(--bg-secondary); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.pricing-card.featured { border-color: var(--accent-border); background: linear-gradient(180deg, rgba(0,212,170,0.06) 0%, var(--surface) 100%); }
.pricing-tier { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.pricing-price { font-family: var(--font-display); font-size: 40px; font-weight: 700; letter-spacing: -0.04em; margin-bottom: 6px; }
.pricing-price span { font-size: 18px; font-weight: 400; color: var(--text-muted); }
.pricing-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { font-size: 14px; color: var(--text-secondary); display: flex; gap: 8px; }
.pricing-features li::before { content: '→'; color: var(--accent); font-size: 12px; }
.pricing-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.pricing-cta.teal { background: var(--accent); color: #0B1120; border-color: var(--accent); }
.pricing-cta:hover { border-color: var(--accent-border); color: var(--accent); }
.pricing-cta.teal:hover { background: #00F0C0; }

/* Closing */
.closing { padding: 100px 32px; text-align: center; }
.closing-inner { max-width: 600px; margin: 0 auto; }
.closing-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
.closing-sub { font-size: 18px; color: var(--text-secondary); margin-bottom: 36px; }
.closing-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.closing-note { font-size: 13px; color: var(--text-muted); }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 40px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 16px; margin-bottom: 10px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); margin-bottom: 6px; }
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .manifesto-stats { grid-template-columns: 1fr; gap: 20px; }
  .step { grid-template-columns: 40px 1fr; }
  .step-visual { display: none; }
  .nav-links { display: none; }
  .hero { padding-top: 100px; }
}