/* Brand tokens mirror dashboard/src/index.css exactly, so the jump from
   this landing page into any product subdomain doesn't feel like a
   different site. */
:root {
  --bg:            #0b0c0e;
  --surface:       #17181c;
  --surface-2:     #1e2024;
  --border:        #2a2c32;
  --border-strong: #383a42;
  --text:          #e7e7ea;
  --muted:         #92939c;
  --muted-2:       #616269;

  --accent:       #2f9d8f;
  --accent-hover: #3db3a4;
  --accent-text:  #5cc9ba;
  --accent-soft:  rgba(47, 157, 143, 0.14);

  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; }
html { text-wrap: pretty; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

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

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ── Topbar ─────────────────────────────────────────────────────────────── */
.topbar {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(11, 12, 14, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10;
}
.topbar-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.topbar-nav { display: flex; gap: 24px; align-items: center; font-size: 14px; }
.topbar-nav a { text-decoration: none; color: var(--muted); transition: color 0.15s; }
.topbar-nav a:hover { color: var(--text); }
.topbar-nav a:last-child {
  color: var(--accent-text);
  font-weight: 600;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero { padding: 96px 24px 72px; }
.hero-inner { max-width: 720px; margin: 0 auto; text-align: left; }
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-text);
  margin: 0 0 16px;
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  font-weight: 800;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 58ch;
  margin: 0 0 32px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.15s, border-color 0.15s;
  cursor: pointer;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: var(--accent); color: #06110f; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { background: transparent; border-color: var(--border-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-text); }
.btn-block { width: 100%; margin-top: 20px; }

/* ── Products ───────────────────────────────────────────────────────────── */
.products { padding: 24px 24px 96px; border-top: 1px solid var(--border); }
.products-inner { max-width: 1080px; margin: 0 auto; }
.products-kicker {
  margin: 40px 0 6px;
  color: var(--muted);
  font-size: 14px;
}
.products h2 {
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
  font-weight: 700;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 64px; }
}

.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card-live { border-color: var(--accent-soft); }
.product-card-live:hover { border-color: var(--accent); transform: translateY(-2px); }
.product-card-soon { opacity: 0.82; }

.product-icon { font-size: 28px; margin-bottom: 14px; }
.product-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.product-card p { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.6; }

.status-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  padding: 4px 10px;
}
.status-soon {
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
}
.status-live {
  color: #06110f;
  background: var(--accent-text);
  border: 1px solid var(--accent-text);
}

/* Topic lists are long (8-10 items) — pills wrap and stay scannable instead
   of reading as a bulleted spec-sheet dump. */
.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  flex: 1;
  align-content: flex-start;
}
.topic-pills span {
  font-size: 12px;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
.product-card-soon .topic-pills span { color: var(--muted-2); }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--border); padding: 24px; }
.site-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--muted-2);
}
.footer-sep { opacity: 0.6; }
