﻿:root {
  --bg: #0b0d10;
  --bg-alt: #11141a;
  --surface: #161a22;
  --border: #232936;
  --text: #e8ebf0;
  --muted: #97a0b0;
  --accent: #5eead4;
  --accent-2: #818cf8;
  --max: 1080px;
  --radius: 14px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: #04201b; padding: 10px 16px; border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 13, 16, 0.72);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; }
.brand-mark {
  width: 20px; height: 20px; border-radius: 6px;
  display: block; object-fit: cover;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--muted); font-size: 0.93rem; font-weight: 500; transition: color 0.18s; }
.nav-links a:hover { color: var(--text); }

/* HERO */
.hero { position: relative; padding: 32px 0 72px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 20% 0%, rgba(129, 140, 248, 0.16), transparent 70%),
    radial-gradient(50% 50% at 90% 10%, rgba(94, 234, 212, 0.12), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 820px; }
.eyebrow { color: var(--accent); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 3.3rem); line-height: 1.08; letter-spacing: -0.03em;
}
.accent {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lede { color: var(--muted); font-size: 1.15rem; max-width: 620px; margin: 28px 0 36px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px; border-radius: 10px; font-weight: 600; font-size: 0.96rem;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn-primary { background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: #061d1a; box-shadow: 0 8px 24px rgba(94, 234, 212, 0.18); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(94, 234, 212, 0.28); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* SECTIONS */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 3.5vw, 2.5rem); letter-spacing: -0.02em; line-height: 1.15; }
.section-title.center { text-align: center; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin-top: 14px; }
.section-sub.center { text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.prose p { color: var(--muted); margin-bottom: 18px; font-size: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; transition: transform 0.18s, border-color 0.18s;
}
.card:hover { transform: translateY(-4px); border-color: #2f3a4d; }
.card-empty { background: transparent; border-style: dashed; }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.card-top h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.card-desc { color: var(--muted); flex: 1; margin-bottom: 22px; }
.card-link { color: var(--accent); font-weight: 600; font-size: 0.95rem; }
.card-link-muted { color: var(--muted); }
.tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.tag-live { background: rgba(94, 234, 212, 0.14); color: var(--accent); }
.tag-soon { background: rgba(129, 140, 248, 0.16); color: var(--accent-2); }

/* PILLARS */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.pillar { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.pillar h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-bottom: 10px; }
.pillar p { color: var(--muted); }

/* CONTACT */
.contact-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.contact-inner .section-title { margin-bottom: 0; }
.contact-inner .btn { margin-top: 30px; }

/* FOOTER */
.site-footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; }
.footer-meta { color: var(--muted); font-size: 0.9rem; }

/* RESPONSIVE */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .cards { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .gw-row { grid-template-columns: 1fr; gap: 0; }
  .hero { padding: 32px 0 56px; }
  .section { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* CONTACT GATEWAY */
.gateway,
.gw-form { max-width: 520px; margin: 36px auto 0; text-align: left; }
.gw-field { margin-bottom: 18px; }
.gw-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gw-field label {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: 0.92rem; color: var(--text); margin-bottom: 8px;
}
.gw-field input,
.gw-field select,
.gw-field textarea {
  width: 100%; padding: 12px 14px;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.98rem; line-height: 1.5;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.gw-field textarea { resize: vertical; min-height: 120px; }
.gw-field select { appearance: none; cursor: pointer; }
.gw-field input:focus,
.gw-field select:focus,
.gw-field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.18);
}
.gw-field input::placeholder,
.gw-field textarea::placeholder { color: var(--muted); }

/* Honeypot — visually and from-flow hidden, still reachable to bots. */
.gw-hp {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  overflow: hidden; opacity: 0;
}

.gw-real .gw-submit { width: 100%; margin-top: 6px; }

.gw-error {
  margin: 0 0 16px; padding: 12px 14px;
  border: 1px solid var(--accent-2); border-radius: var(--radius);
  background: rgba(129, 140, 248, 0.12); color: var(--text); font-size: 0.92rem;
}

.gw-deadend {
  margin-top: 22px; padding: 22px 24px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
}
.gw-deadend p { color: var(--muted); margin: 0; }

.gw-success {
  max-width: 520px; margin: 36px auto 0; padding: 28px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
}
.gw-success h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-bottom: 10px;
}
.gw-success p { color: var(--muted); margin: 0; }

/* CREDIBILITY BAND */
.cred { padding: 28px 0; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.cred-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cred-lead { color: var(--muted); font-size: 1rem; max-width: 280px; }
.cred-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.cred-stat { display: flex; flex-direction: column; }
.cred-num { font-family: var(--font-display); font-weight: 700; font-size: 2rem; line-height: 1; background: linear-gradient(120deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cred-label { color: var(--muted); font-size: 0.85rem; margin-top: 6px; max-width: 140px; }
@media (max-width: 820px) { .cred-stats { gap: 28px; } .cred-num { font-size: 1.6rem; } }

/* VENTURES — full-width "more" button */
.ventures-more{display:block;width:100%;margin-top:24px;padding:22px 32px;border-radius:14px;
  background:var(--bg);border:1px solid var(--border);color:var(--text);text-decoration:none;
  font-weight:600;font-size:1rem;text-align:center;transition:border-color .2s,background .2s;}
.ventures-more:hover{border-color:var(--accent);background:var(--surface);}

