:root {
  --bg: #0a0a0f;
  --surface: #13131a;
  --surface-2: #1c1c27;
  --border: #2a2a36;
  --text: #f4f4f7;
  --muted: #a0a0b0;
  --dim: #6a6a7a;
  --accent: #7c5cfc;
  --accent-soft: rgba(124, 92, 252, 0.18);
  --max-w: 1080px;
  --radius: 14px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  padding: 0 24px;
  margin: 0 auto;
}

/* Header ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7c5cfc 0%, #a685ff 100%);
  color: white;
  font-weight: 700;
}
.brand-name { font-size: 16px; letter-spacing: -0.01em; }
.site-nav { display: flex; gap: 22px; font-size: 14px; }
.site-nav a { color: var(--muted); transition: color 0.15s; }
.site-nav a:hover { color: var(--text); }

/* Hero ============================================================== */
.hero { padding: 80px 0 60px; }
.hero-inner { max-width: 760px; }
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-weight: 700;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 28px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  transition: transform 0.15s, background 0.15s;
}
.hero-cta:hover { background: #8c70ff; transform: translateY(-1px); }

/* Sections ========================================================== */
.section { padding: 64px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.section-lede { color: var(--muted); margin: 0 0 32px; max-width: 640px; }

/* Venture cards ===================================================== */
.venture-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .venture-grid { grid-template-columns: repeat(2, 1fr); }
}
.venture-card {
  display: block;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s, transform 0.15s, background 0.15s;
}
.venture-card:hover {
  border-color: var(--accent);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.venture-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.venture-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
.venture-arrow { color: var(--dim); font-size: 18px; transition: color 0.15s; }
.venture-card:hover .venture-arrow { color: var(--accent); }
.venture-desc {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
}
.venture-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--dim);
}
.venture-domain { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: var(--accent); }

/* About ============================================================= */
.about-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .about-grid { grid-template-columns: 1.4fr 1fr; }
}
.about-grid p { color: var(--muted); margin: 0 0 14px; }
.about-stats { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
@media (min-width: 720px) {
  .about-stats { grid-template-columns: 1fr; }
}
.stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.stat-num { font-size: 28px; font-weight: 700; color: var(--text); }
.stat-label { font-size: 12px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.08em; }

/* Footer ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 40px;
}
.footer-row { display: flex; flex-direction: column; gap: 12px; }
.footer-brand { font-weight: 700; margin: 0; }
.footer-meta { color: var(--muted); margin: 0; font-size: 14px; }
.footer-meta a { color: var(--accent); }
.footer-copy { color: var(--dim); font-size: 13px; margin: 12px 0 0; }

/* Prose (privacy) =================================================== */
.prose { max-width: 720px; }
.prose h1 { font-size: 32px; letter-spacing: -0.01em; margin: 0 0 4px; }
.prose .updated { color: var(--dim); font-size: 13px; margin: 0 0 28px; }
.prose h2 { font-size: 18px; margin: 28px 0 8px; }
.prose p { color: var(--muted); margin: 0 0 12px; }
.prose a { color: var(--accent); }
