:root {
  --bg: #06080c;
  --bg2: #0c1018;
  --surface: #111827;
  --surface2: #1a2236;
  --border: #1e293b;
  --accent: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.15);
  --text: #e2e8f0;
  --text-muted: #64748b;
  --text-bright: #f8fafc;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(6, 8, 12, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--mono);
  font-size: 20px; font-weight: 700;
  color: var(--text-bright);
  text-decoration: none; letter-spacing: -0.5px;
}
.logo-dot { color: var(--accent); }
nav { display: flex; gap: 28px; }
nav a {
  color: var(--text-muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
nav a:hover { color: var(--text-bright); }

/* Hero */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  font-family: var(--mono);
  font-size: 13px; font-weight: 400;
  color: var(--accent);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900; letter-spacing: -2px;
  color: var(--text-bright);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  font-size: 20px; color: var(--text-muted);
  max-width: 600px; margin: 0 auto 48px;
  line-height: 1.6;
}
.hero-cta {
  display: inline-flex; gap: 16px;
  flex-wrap: wrap; justify-content: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  border: none; cursor: pointer;
}
.btn-primary {
  background: var(--accent); color: #fff;
}
.btn-primary:hover { background: #2563eb; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--text-muted); }

/* Capabilities */
.capabilities {
  padding: 100px 0;
}
.section-label {
  font-family: var(--mono);
  font-size: 12px; color: var(--accent);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: 36px; font-weight: 800;
  color: var(--text-bright); letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--text-muted);
  max-width: 600px; margin-bottom: 56px;
  line-height: 1.6;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.cap-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}
.cap-card:hover { border-color: var(--accent); }
.cap-icon {
  font-size: 28px; margin-bottom: 16px;
  display: block;
}
.cap-card h3 {
  font-size: 17px; font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.cap-card p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.6;
}

/* Products */
.products {
  padding: 100px 0;
  background: var(--bg2);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: transform 0.2s, border-color 0.2s;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.product-card h3 {
  font-size: 22px; font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.product-card .product-tag {
  font-family: var(--mono);
  font-size: 12px; color: var(--accent);
  margin-bottom: 16px; display: block;
}
.product-card p {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 20px;
}
.product-card .btn {
  font-size: 14px; padding: 10px 24px;
}

/* Blog listing */
.blog-section { padding: 100px 0; }
.blog-list { list-style: none; }
.blog-list li {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.blog-list li:first-child { border-top: 1px solid var(--border); }
.blog-list a {
  text-decoration: none; color: var(--text-bright);
  font-size: 20px; font-weight: 600;
  display: block; margin-bottom: 4px;
  transition: color 0.2s;
}
.blog-list a:hover { color: var(--accent); }
.blog-list time {
  font-size: 13px; color: var(--text-muted);
  font-family: var(--mono);
}

/* Article */
.article-content {
  padding: 140px 0 80px;
}
.article-meta {
  margin-bottom: 12px;
}
.article-meta time {
  font-family: var(--mono);
  font-size: 13px; color: var(--accent);
}
.article-content h1 {
  font-size: 40px; font-weight: 800;
  color: var(--text-bright); letter-spacing: -1px;
  margin-bottom: 40px; line-height: 1.2;
}
.article-content h2 {
  font-size: 26px; font-weight: 700;
  color: var(--text-bright);
  margin: 48px 0 16px; letter-spacing: -0.5px;
}
.article-content h3 {
  font-size: 20px; font-weight: 600;
  color: var(--text-bright);
  margin: 36px 0 12px;
}
.article-content p {
  margin-bottom: 20px;
  font-size: 17px;
  color: var(--text);
}
.article-content ul, .article-content ol {
  margin: 0 0 20px 24px;
  font-size: 17px;
}
.article-content li { margin-bottom: 8px; }
.article-content code {
  font-family: var(--mono);
  background: var(--surface);
  padding: 2px 6px; border-radius: 4px;
  font-size: 14px;
}
.article-content pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px; margin: 24px 0;
  overflow-x: auto;
}
.article-content pre code {
  background: none; padding: 0;
}
.article-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 20px; margin: 24px 0;
  color: var(--text-muted); font-style: italic;
}

/* Creator */
.creator {
  padding: 80px 0;
  text-align: center;
}
.creator p {
  font-size: 17px; color: var(--text-muted);
}
.creator a {
  color: var(--accent); text-decoration: none;
}
.creator a:hover { text-decoration: underline; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: var(--mono);
  font-size: 18px; font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 8px;
}
.footer-credit {
  font-size: 13px; color: var(--text-muted);
}
.footer-credit a { color: var(--accent); text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; }
.site-footer h4 {
  font-size: 13px; font-weight: 600;
  color: var(--text-bright);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer li a {
  color: var(--text-muted); text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.site-footer li a:hover { color: var(--text-bright); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 13px; color: var(--text-muted);
}

/* More coming */
.more-coming {
  padding: 80px 0;
  text-align: center;
}
.more-coming p {
  font-size: 17px; color: var(--text-muted);
  margin-bottom: 8px;
}
.more-coming .coming-list {
  font-family: var(--mono);
  font-size: 14px; color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 120px 0 60px; }
  .cap-grid, .product-grid { grid-template-columns: 1fr; }
  nav { gap: 16px; }
  nav a { font-size: 13px; }
}
