/* VoxeNova Shared Styles — extracted from index.html */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:#07070F; --surface:#0E0E1C; --surface2:#13132A;
  --border:#1E1E38; --border2:#2A2A4A;
  --accent:#5EF6C8; --accent2:#3DD4A8;
  --accent-glow:rgba(94,246,200,0.15); --accent-dim:rgba(94,246,200,0.06);
  --text:#EEF0F8; --muted:#7878A0; --dim:#4A4A70; --white:#FFFFFF;
  --r:12px; --rl:20px;
  --df:'Syne',sans-serif; --db:'DM Sans',sans-serif;
}
html { scroll-behavior:smooth; }
body {
  background:var(--bg); color:var(--text); font-family:var(--db);
  font-size:15px; line-height:1.6; overflow-x:hidden;
}
body::before {
  content:''; position:fixed; inset:0; pointer-events:none; z-index:9999; opacity:0.025;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* NAV */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100; height:64px;
  padding:0 40px; display:flex; align-items:center; justify-content:space-between;
  background:rgba(7,7,15,.78); backdrop-filter:blur(20px); border-bottom:1px solid var(--border);
}
.logo { text-decoration:none; display:flex; align-items:center; gap:10px; }
.logo .logo-icon { height:32px; }
.logo .logo-wordmark { height:24px; }
.nav-links { display:flex; align-items:center; gap:24px; }
.nav-links a { font-size:13px; font-weight:400; color:var(--muted); text-decoration:none; transition:color .2s; }
.nav-links a:hover { color:var(--accent); }
.ncta {
  font-size:13px; font-weight:500; color:var(--bg); background:var(--accent);
  border:none; border-radius:8px; padding:8px 18px; cursor:pointer;
  text-decoration:none; transition:all .2s;
}
.ncta:hover { background:var(--white); transform:translateY(-1px); box-shadow:0 4px 20px rgba(94,246,200,.3); }

/* FOOTER */
footer {
  border-top:1px solid var(--border); padding:32px 40px;
  display:flex; align-items:center; justify-content:space-between;
}
@media(max-width:500px){ footer { flex-direction:column; gap:12px; text-align:center; } }
.flogo { display:flex; align-items:center; gap:8px; }
footer p { font-size:12px; color:var(--dim); }

/* SHARED TYPOGRAPHY */
.lbl {
  font-size:11px; font-weight:600; letter-spacing:.14em;
  text-transform:uppercase; color:var(--accent); margin-bottom:16px;
}
.ttl {
  font-family:var(--df); font-size:clamp(28px,3.5vw,42px); font-weight:700;
  letter-spacing:-.025em; color:var(--white); line-height:1.15; margin-bottom:16px;
}
.sub { font-size:16px; font-weight:300; color:var(--muted); line-height:1.7; max-width:520px; }

/* FEATURE CARDS — reused on guides hub */
.fg { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid var(--border); border-radius:var(--rl); overflow:hidden; }
@media(max-width:680px){ .fg { grid-template-columns:1fr; } }
.fc {
  background:var(--surface); padding:40px 36px; transition:background .25s;
  border-right:1px solid var(--border); text-decoration:none; display:block;
}
.fc:last-child { border-right:none; }
@media(max-width:680px){ .fc { border-right:none; border-bottom:1px solid var(--border); } .fc:last-child{ border-bottom:none; } }
.fc:hover { background:var(--surface2); }
.fi {
  width:64px; height:64px; border-radius:16px; border:1px solid rgba(94,246,200,.18);
  display:flex; align-items:center; justify-content:center; margin-bottom:28px;
  background:rgba(94,246,200,.04); transition:background .25s,box-shadow .25s;
}
.fc:hover .fi { background:rgba(94,246,200,.09); box-shadow:0 0 18px rgba(94,246,200,.07); }
.fc h3 { font-family:var(--df); font-size:17px; font-weight:600; color:var(--white); margin-bottom:10px; letter-spacing:-.01em; }
.fc p  { font-size:14px; font-weight:300; color:var(--muted); line-height:1.65; }

/* ===== GUIDE-SPECIFIC STYLES ===== */

/* Guide layout: sidebar + content */
.guide-layout {
  display:grid; grid-template-columns:240px 1fr;
  max-width:1080px; margin:0 auto; padding:96px 24px 64px;
  gap:48px; min-height:calc(100vh - 64px);
}
@media(max-width:760px){
  .guide-layout { grid-template-columns:1fr; padding:80px 20px 48px; gap:24px; }
}

/* Sidebar nav */
.guide-sidebar {
  position:sticky; top:88px; align-self:start;
  display:flex; flex-direction:column; gap:4px;
}
@media(max-width:760px){ .guide-sidebar { position:static; flex-direction:row; flex-wrap:wrap; gap:8px; } }
.guide-sidebar a {
  font-size:13px; color:var(--muted); text-decoration:none; padding:6px 12px;
  border-radius:8px; transition:all .2s; white-space:nowrap;
}
.guide-sidebar a:hover { color:var(--text); background:var(--surface); }
.guide-sidebar a.active { color:var(--accent); background:var(--accent-dim); font-weight:500; }

/* Content column */
.guide-content { max-width:720px; }
.guide-content h1 {
  font-family:var(--df); font-size:clamp(28px,4vw,40px); font-weight:700;
  letter-spacing:-.025em; color:var(--white); line-height:1.15; margin-bottom:12px;
}
.guide-content h2 {
  font-family:var(--df); font-size:22px; font-weight:600;
  color:var(--white); margin-top:48px; margin-bottom:16px;
  padding-bottom:8px; border-bottom:1px solid var(--border);
}
.guide-content h3 {
  font-family:var(--df); font-size:17px; font-weight:600;
  color:var(--white); margin-top:32px; margin-bottom:12px;
}
.guide-content p {
  font-size:15px; color:var(--muted); line-height:1.75; margin-bottom:16px;
}
.guide-content ul, .guide-content ol {
  margin-bottom:16px; padding-left:24px;
}
.guide-content li {
  font-size:14px; color:var(--muted); line-height:1.7; margin-bottom:6px;
}
.guide-content li::marker { color:var(--dim); }
.guide-content a { color:var(--accent); text-decoration:none; }
.guide-content a:hover { text-decoration:underline; }
.guide-content strong, .guide-content b { color:var(--text); font-weight:500; }
.guide-content code {
  background:var(--surface2); color:var(--accent); padding:2px 6px;
  border-radius:4px; font-size:13px;
}

/* Breadcrumb */
.guide-breadcrumb {
  font-size:12px; color:var(--dim); margin-bottom:24px;
  display:flex; align-items:center; gap:6px;
}
.guide-breadcrumb a { color:var(--muted); text-decoration:none; }
.guide-breadcrumb a:hover { color:var(--accent); }
.guide-breadcrumb span { color:var(--dim); }

/* Code blocks */
.code-block {
  background:var(--surface); border:1px solid var(--border); border-radius:var(--r);
  padding:20px 24px; overflow-x:auto; margin-bottom:20px; position:relative;
}
.code-block code {
  font-family:'JetBrains Mono','Fira Code',monospace; font-size:13px;
  color:var(--accent); background:none; padding:0; line-height:1.7;
  white-space:pre; display:block;
}
.code-block .cb-label {
  position:absolute; top:8px; right:12px;
  font-size:10px; color:var(--dim); text-transform:uppercase; letter-spacing:.08em;
}

/* Numbered step blocks */
.guide-step {
  display:flex; gap:20px; margin-bottom:28px; padding:24px;
  background:var(--surface); border:1px solid var(--border); border-radius:var(--r);
}
.guide-step-num {
  width:36px; height:36px; border-radius:50%; flex-shrink:0;
  border:1px solid var(--border2); background:var(--surface2);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--df); font-size:14px; font-weight:700; color:var(--accent);
}
.guide-step-body h4 {
  font-family:var(--df); font-size:15px; font-weight:600; color:var(--white); margin-bottom:6px;
}
.guide-step-body p { font-size:14px; color:var(--muted); line-height:1.65; margin:0; }
.guide-step-body code {
  background:var(--surface2); color:var(--accent); padding:2px 6px;
  border-radius:4px; font-size:12px;
}

/* Hub hero */
.guide-hub-hero {
  padding:120px 24px 48px; text-align:center;
}
.guide-hub-hero h1 {
  font-family:var(--df); font-size:clamp(36px,5vw,56px); font-weight:800;
  letter-spacing:-.03em; color:var(--white); margin-bottom:16px;
}
.guide-hub-hero .grad {
  background:linear-gradient(135deg,var(--accent) 0%,#A78BFA 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.guide-hub-hero p {
  font-size:16px; color:var(--muted); max-width:480px; margin:0 auto;
}

/* Hub grid */
.guide-hub-grid {
  max-width:1080px; margin:0 auto; padding:0 24px 96px;
}

/* Info table */
.guide-table {
  width:100%; border-collapse:collapse; margin-bottom:24px;
  border:1px solid var(--border); border-radius:var(--r); overflow:hidden;
}
.guide-table th {
  background:var(--surface2); font-family:var(--df); font-size:12px; font-weight:600;
  color:var(--accent); text-transform:uppercase; letter-spacing:.06em;
  padding:12px 16px; text-align:left;
}
.guide-table td {
  background:var(--surface); padding:12px 16px; font-size:13px; color:var(--muted);
  border-top:1px solid var(--border);
}
.guide-table tr:hover td { background:var(--surface2); }

/* Callout box */
.guide-callout {
  border-left:3px solid var(--accent); background:var(--surface);
  padding:16px 20px; border-radius:0 var(--r) var(--r) 0; margin-bottom:20px;
}
.guide-callout p { margin:0; font-size:14px; }
