/* ─── POLICY PAGES (privacy, T&C) ───────────────────── */
.policy-wrap {
  padding-bottom: 5rem;
}
.policy-last-updated {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  margin-bottom: 2.5rem;
}
.policy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.policy-section:last-of-type { border-bottom: none; }
.policy-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1rem;
}
.policy-section p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul {
  margin: 0.5rem 0 0.85rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.policy-section ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.policy-contact-box {
  margin-top: 1rem;
  background: rgba(13,181,160,0.05);
  border: 1px solid rgba(13,181,160,0.12);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}
.policy-contact-box p {
  margin-bottom: 0.4rem !important;
}
.policy-contact-box a {
  color: var(--teal);
  text-decoration: none;
}
.policy-contact-box a:hover { text-decoration: underline; }

/* ─── DOCS NAV (topbar) ──────────────────────────────
   Existing classes: .topbar, .topbar-logo, .topbar-logo-icon,
   .topbar-brand, .topbar-brand-name, .topbar-brand-sub,
   .topbar-nav, .btn-appsource
   ─────────────────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 2rem;
  background: rgba(7,12,24,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(13,181,160,0.08);
}
.topbar-logo {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none;
}
.topbar-logo-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: linear-gradient(135deg, rgba(13,181,160,0.22), rgba(13,181,160,0.06));
  border: 1px solid rgba(13,181,160,0.28);
  display: flex; align-items: center; justify-content: center;
}
.topbar-logo-icon::after {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 7px var(--teal), 0 0 14px rgba(13,181,160,0.4);
}
.topbar-brand { display: flex; flex-direction: column; gap: 1px; }
.topbar-brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 0.95rem; color: #fff; line-height: 1;
}
.topbar-brand-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; font-weight: 600;
  color: rgba(13,181,160,0.65);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.topbar-nav {
  display: flex; align-items: center; gap: 1.75rem;
}
.topbar-nav a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; transition: color 0.2s;
}
.topbar-nav a:hover { color: #fff; }

/* ─── THREE-COLUMN LAYOUT ────────────────────────────── */
.docs-layout {
  display: flex;
  padding-top: 64px;
  min-height: 100vh;
  background: var(--bg-docs);
}

/* ─── SIDEBAR ────────────────────────────────────────── */
.docs-sidebar {
  width: 268px; flex-shrink: 0;
  background: var(--bg-sidebar);
  border-right: 1px solid rgba(13,181,160,0.07);
  position: sticky; top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 1.75rem 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(13,181,160,0.15) transparent;
}
.docs-sidebar::-webkit-scrollbar { width: 4px; }
.docs-sidebar::-webkit-scrollbar-track { background: transparent; }
.docs-sidebar::-webkit-scrollbar-thumb { background: rgba(13,181,160,0.15); border-radius: 2px; }

.sidebar-section { margin-bottom: 1.75rem; }
.sidebar-section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; font-weight: 600;
  color: rgba(13,181,160,0.5);
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0 1.25rem; margin-bottom: 0.5rem;
  display: block;
}
.sidebar-link {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.45rem 1.25rem;
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none; transition: all 0.15s;
  border-left: 2px solid transparent;
}
.sidebar-link::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: currentColor; opacity: 0.5; flex-shrink: 0;
}
.sidebar-link:hover { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.025); }
.sidebar-link.active {
  color: var(--teal);
  background: rgba(13,181,160,0.06);
  border-left-color: var(--teal);
  font-weight: 600;
}
.sidebar-link.active::before { opacity: 1; box-shadow: 0 0 5px var(--teal); }
.coming-soon-link { opacity: 0.45; pointer-events: none; }

/* ─── CONTENT AREA ───────────────────────────────────── */
.docs-content {
  flex: 1; min-width: 0;
  padding: 3rem 4rem 6rem;
  max-width: 860px;
  background: var(--bg-docs);
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
}
.breadcrumb a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb-sep { font-size: 0.7rem; opacity: 0.5; }

/* Page title + subtitle */
.page-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem; font-weight: 800;
  color: #fff; letter-spacing: -0.025em;
  line-height: 1.15; margin-bottom: 0.75rem;
}
.page-subtitle {
  font-size: 1rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; max-width: 580px;
  margin-bottom: 2.5rem;
}

/* Section divider */
.docs-content hr {
  border: none; height: 1px;
  background: linear-gradient(90deg, rgba(13,181,160,0.2), rgba(13,181,160,0.2) 60%, transparent);
  margin: 2.5rem 0;
}

/* Section headings */
.section-h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: #fff; margin: 2rem 0 0.85rem;
  display: flex; align-items: center; gap: 0.65rem;
}
.section-h2::before {
  content: '';
  width: 3px; height: 1.1em;
  background: var(--teal);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(13,181,160,0.4);
  flex-shrink: 0;
}
.section-h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin: 1.25rem 0 0.6rem;
}

/* Body prose */
.prose {
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  line-height: 1.8; margin-bottom: 1.25rem;
}
.prose a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: rgba(255,255,255,0.75); }

/* ─── STEP CARDS ─────────────────────────────────────── */
.step-cards { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.step-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(13,181,160,0.08);
  border-radius: 12px; overflow: hidden;
  transition: all 0.2s;
}
.step-card:hover {
  border-color: rgba(13,181,160,0.2);
  background: rgba(255,255,255,0.04);
}
.step-card-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem 0;
}
.step-num {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(13,181,160,0.1);
  border: 1px solid rgba(13,181,160,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600; color: var(--teal);
}
.step-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem; font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.step-card-body { padding: 0.6rem 1.25rem 1rem 1.25rem; }
.step-card-body p {
  font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.65;
  margin-bottom: 0.75rem;
}
.step-card-body p:last-child { margin-bottom: 0; }

/* ─── CALLOUTS ───────────────────────────────────────── */
.callout {
  display: flex; gap: 0.85rem; align-items: flex-start;
  border-radius: 10px; padding: 1rem 1.15rem;
  margin: 1.25rem 0;
}
.callout-info {
  background: rgba(13,181,160,0.06);
  border: 1px solid rgba(13,181,160,0.18);
  border-left: 3px solid var(--teal);
}
.callout-warn {
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.15);
  border-left: 3px solid rgba(245,158,11,0.6);
}
.callout-icon { flex-shrink: 0; margin-top: 1px; font-size: 0.9rem; }
.callout-body {
  font-size: 0.82rem; line-height: 1.7;
}
.callout-info .callout-body { color: rgba(95,222,208,0.8); }
.callout-warn .callout-body { color: rgba(245,158,11,0.75); }
.callout-body strong { font-weight: 700; }
.callout-info .callout-body strong { color: var(--teal-light); }
.callout-warn .callout-body strong { color: rgba(245,158,11,0.9); }

/* ─── SCREENSHOTS (docs) ─────────────────────────────── */
.screenshot {
  display: block; width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(13,181,160,0.12);
  box-shadow:
    0 0 0 1px rgba(13,181,160,0.05),
    0 4px 16px rgba(0,0,0,0.3),
    0 16px 48px rgba(0,0,0,0.4);
  margin-top: 0.75rem;
}

/* ─── CODE BLOCKS ────────────────────────────────────── */
pre, code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
}
pre {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(13,181,160,0.1);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  margin: 1rem 0;
  overflow-x: auto;
  position: relative;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
pre::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13,181,160,0.3), transparent);
}
code {
  background: rgba(13,181,160,0.08);
  border: 1px solid rgba(13,181,160,0.15);
  border-radius: 4px;
  padding: 0.15em 0.4em;
  font-size: 0.82rem;
  color: var(--teal-light);
}
pre code {
  background: transparent; border: none;
  padding: 0; color: inherit; font-size: inherit;
}

/* ─── PREV / NEXT NAV ────────────────────────────────── */
.doc-nav-links {
  display: flex; gap: 1rem; margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(13,181,160,0.08);
}
.doc-nav-prev, .doc-nav-next {
  flex: 1;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(13,181,160,0.1);
  border-radius: 12px; padding: 1.1rem 1.25rem;
  text-decoration: none; transition: all 0.2s;
  display: flex; align-items: center; gap: 0.75rem;
}
.doc-nav-prev:hover, .doc-nav-next:hover {
  border-color: rgba(13,181,160,0.25);
  background: rgba(255,255,255,0.035);
  transform: translateY(-2px);
}
.doc-nav-next { justify-content: flex-end; text-align: right; }
.nav-dir {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.2rem; display: block;
}
.nav-page {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem; font-weight: 600;
  color: rgba(255,255,255,0.75); display: block;
}
.nav-arrow { color: var(--teal); font-size: 1.1rem; flex-shrink: 0; }

/* ─── DOCS HUB CARD GRID ─────────────────────────────── */
.docs-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.docs-hub-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(13,181,160,0.1);
  border-radius: 14px; padding: 1.5rem;
  text-decoration: none;
  transition: all 0.25s; display: block;
}
.docs-hub-card:hover {
  border-color: rgba(13,181,160,0.28);
  background: rgba(255,255,255,0.04);
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(13,181,160,0.07);
}
.docs-hub-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: #fff; margin-bottom: 0.4rem;
}
.docs-hub-card p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .docs-content { padding: 2rem 2rem 4rem; }
}
@media (max-width: 768px) {
  .docs-sidebar { display: none; }
  .docs-layout { display: block; }
  .docs-content { padding: 1.5rem 1.25rem 3rem; max-width: 100%; }
}

/* ─── DOCS HUB (docs/index.html) ─────────────────────── */
.hero {
  padding: 7rem 2.5rem 4.5rem;
  background: radial-gradient(ellipse 110% 90% at 50% -5%, rgba(13,181,160,0.22) 0%, rgba(13,181,160,0.07) 50%, transparent 72%),
              var(--bg-hero);
  text-align: center;
  border-bottom: 1px solid rgba(13,181,160,0.12);
  position: relative;
}
.hero-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(13,181,160,0.1);
  border: 1px solid rgba(13,181,160,0.3);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  color: rgba(13,181,160,0.95);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 16px rgba(13,181,160,0.1);
}
.hero-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff; letter-spacing: -0.025em;
  line-height: 1.2; margin-bottom: 1rem;
  text-shadow: 0 0 60px rgba(13,181,160,0.15);
}
.hero p {
  font-size: 1rem; color: rgba(255,255,255,0.6);
  line-height: 1.7; margin-bottom: 1.75rem;
}
.hero-links {
  display: flex; align-items: center; justify-content: center;
  gap: 0.85rem; flex-wrap: wrap;
}
.hero-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1.2rem; border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
}
.hero-link.primary {
  background: linear-gradient(135deg, rgba(13,181,160,0.15), rgba(13,181,160,0.05));
  border: 1px solid rgba(13,181,160,0.4);
  color: var(--teal);
}
.hero-link.primary:hover {
  background: linear-gradient(135deg, rgba(13,181,160,0.22), rgba(13,181,160,0.1));
  border-color: rgba(13,181,160,0.6);
}
.hero-link.secondary {
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-link.secondary:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.25); }

/* Main content container */
.main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 2.5rem 6rem;
  background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(13,181,160,0.06) 0%, transparent 60%);
}

/* Section labels */
.section-label {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.25rem; margin-top: 3rem;
}
.section-label:first-child { margin-top: 0; }
.section-label h2 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  white-space: nowrap; margin: 0;
  color: var(--sl-color, rgba(13,181,160,0.85));
}
.section-label-line {
  flex: 1; height: 1px;
  background: var(--sl-color-faint, rgba(13,181,160,0.28));
}
.section-label-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  color: var(--sl-color, rgba(13,181,160,0.75));
  background: var(--sl-bg, rgba(13,181,160,0.1));
  border: 1px solid var(--sl-border, rgba(13,181,160,0.18));
  border-radius: 100px; padding: 0.15rem 0.65rem;
  letter-spacing: 0.06em;
}

/* Section colour themes */
.section-teal  { --sl-color: rgba(13,181,160,0.85);  --sl-color-faint: rgba(13,181,160,0.28);  --sl-bg: rgba(13,181,160,0.1);   --sl-border: rgba(13,181,160,0.2); }
.section-blue  { --sl-color: rgba(96,165,250,0.85);  --sl-color-faint: rgba(96,165,250,0.25);  --sl-bg: rgba(96,165,250,0.08);  --sl-border: rgba(96,165,250,0.2); }
.section-amber { --sl-color: rgba(251,191,36,0.85);  --sl-color-faint: rgba(251,191,36,0.25);  --sl-bg: rgba(251,191,36,0.08);  --sl-border: rgba(251,191,36,0.2); }
.section-violet{ --sl-color: rgba(167,139,250,0.85); --sl-color-faint: rgba(167,139,250,0.25); --sl-bg: rgba(167,139,250,0.08); --sl-border: rgba(167,139,250,0.2); }
.section-rose  { --sl-color: rgba(251,113,133,0.85); --sl-color-faint: rgba(251,113,133,0.25); --sl-bg: rgba(251,113,133,0.08); --sl-border: rgba(251,113,133,0.2); }

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.85rem; margin-bottom: 0.5rem;
}
.doc-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--sl-border, rgba(13,181,160,0.28));
  border-radius: 14px; padding: 1.4rem;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 0.4rem;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.25s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 2px 8px rgba(0,0,0,0.2);
}
.doc-card:hover {
  border-color: var(--sl-color, rgba(13,181,160,0.6));
  background: var(--sl-bg, rgba(13,181,160,0.08));
  box-shadow: 0 0 32px var(--sl-bg, rgba(13,181,160,0.12)), 0 8px 28px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateY(-3px);
}
.coming-soon { opacity: 0.5; }
.card-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--sl-bg, rgba(13,181,160,0.1));
  border: 1px solid var(--sl-border, rgba(13,181,160,0.22));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.35rem; flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.card-icon svg { width: 16px; height: 16px; fill: none; stroke-width: 1.8;
  stroke: var(--sl-color, var(--teal)); }
.doc-card:hover .card-icon {
  background: var(--sl-border, rgba(13,181,160,0.2));
  border-color: var(--sl-color, rgba(13,181,160,0.5));
  box-shadow: 0 0 12px var(--sl-bg, rgba(13,181,160,0.15));
}

/* Section-specific icon colours — explicit selectors */
.section-group.section-teal   .card-icon { background: rgba(13,181,160,0.12);  border-color: rgba(13,181,160,0.3); }
.section-group.section-teal   .card-icon svg { stroke: #0db5a0; }
.section-group.section-teal   .doc-card { border-color: rgba(13,181,160,0.25); }
.section-group.section-teal   .doc-card:hover { border-color: rgba(13,181,160,0.6); background: rgba(13,181,160,0.08); box-shadow: 0 0 28px rgba(13,181,160,0.18), 0 8px 24px rgba(0,0,0,0.3); }

.section-group.section-blue   .card-icon { background: rgba(96,165,250,0.12);  border-color: rgba(96,165,250,0.3); }
.section-group.section-blue   .card-icon svg { stroke: #60a5fa; }
.section-group.section-blue   .doc-card { border-color: rgba(96,165,250,0.25); }
.section-group.section-blue   .doc-card:hover { border-color: rgba(96,165,250,0.6); background: rgba(96,165,250,0.08); box-shadow: 0 0 28px rgba(96,165,250,0.18), 0 8px 24px rgba(0,0,0,0.3); }

.section-group.section-amber  .card-icon { background: rgba(251,191,36,0.12);  border-color: rgba(251,191,36,0.3); }
.section-group.section-amber  .card-icon svg { stroke: #fbbf24; }
.section-group.section-amber  .doc-card { border-color: rgba(251,191,36,0.25); }
.section-group.section-amber  .doc-card:hover { border-color: rgba(251,191,36,0.6); background: rgba(251,191,36,0.07); box-shadow: 0 0 28px rgba(251,191,36,0.15), 0 8px 24px rgba(0,0,0,0.3); }

.section-group.section-violet .card-icon { background: rgba(167,139,250,0.12); border-color: rgba(167,139,250,0.3); }
.section-group.section-violet .card-icon svg { stroke: #a78bfa; }
.section-group.section-violet .doc-card { border-color: rgba(167,139,250,0.25); }
.section-group.section-violet .doc-card:hover { border-color: rgba(167,139,250,0.6); background: rgba(167,139,250,0.08); box-shadow: 0 0 28px rgba(167,139,250,0.18), 0 8px 24px rgba(0,0,0,0.3); }

.section-group.section-rose   .card-icon { background: rgba(251,113,133,0.12); border-color: rgba(251,113,133,0.3); }
.section-group.section-rose   .card-icon svg { stroke: #fb7185; }
.section-group.section-rose   .doc-card { border-color: rgba(251,113,133,0.25); }
.section-group.section-rose   .doc-card:hover { border-color: rgba(251,113,133,0.6); background: rgba(251,113,133,0.08); box-shadow: 0 0 28px rgba(251,113,133,0.18), 0 8px 24px rgba(0,0,0,0.3); }
.card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem; font-weight: 700;
  color: rgba(255,255,255,0.92); line-height: 1.35;
}
.badge-soon {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(245,158,11,0.85);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 4px; padding: 0.1rem 0.35rem;
  vertical-align: middle; margin-left: 0.35rem;
}
.card-desc { font-size: 0.78rem; color: rgba(255,255,255,0.52); line-height: 1.65; }

/* Roadmap section in hub */
.roadmap-section {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(13,181,160,0.08);
  border-radius: 16px; padding: 2rem; margin-top: 3rem;
}
.roadmap-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: rgba(255,255,255,0.8); margin-bottom: 0.25rem;
}
.roadmap-section .subtitle { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 0.4rem; }
.roadmap-note { font-size: 0.72rem; color: rgba(255,255,255,0.22); margin-bottom: 1.25rem; }
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.6rem;
}
.roadmap-item { display: flex; align-items: flex-start; gap: 0.6rem; }
.roadmap-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 5px rgba(13,181,160,0.5);
  flex-shrink: 0; margin-top: 0.45rem;
}
.roadmap-item-text {
  font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.55;
}
.roadmap-item-text strong { color: rgba(255,255,255,0.65); display: block; font-size: 0.8rem; }

/* Hub footer */
footer {
  text-align: center; padding: 2rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.22);
  border-top: 1px solid rgba(13,181,160,0.06);
}
footer a { color: rgba(13,181,160,0.55); text-decoration: none; }
footer a:hover { color: var(--teal); }
