/* VNIO marketing guides — static SEO pages */
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --accent: #3b82f6;
  --border: #2a2a2a;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.guide-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.guide-header {
  padding: 2.5rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #111 0%, var(--bg) 100%);
}

.guide-header-inner,
.guide-main {
  max-width: 42rem;
  margin: 0 auto;
  width: 100%;
}

.guide-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}

.guide-title {
  font-size: clamp(2rem, 6vw, 2.75rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  font-weight: 700;
}

.guide-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d4d4d4;
  margin: 0;
}

.guide-main {
  flex: 1;
  padding: 2rem 1.5rem 3rem;
}

.guide-content h2,
.guide-section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2rem 0 1rem;
}

.guide-content h2:first-child {
  margin-top: 0;
}

.guide-content h3,
.guide-faq-item h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
}

.guide-content p,
.guide-content li,
.guide-faq-item p,
.guide-entity-block {
  line-height: 1.7;
  color: #e5e5e5;
}

.guide-content ul,
.guide-content ol,
.guide-venue-list {
  padding-left: 1.25rem;
}

.guide-content pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  overflow-x: auto;
  font-size: 0.9rem;
}

.guide-content code {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

.guide-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.guide-content th,
.guide-content td {
  border: 1px solid var(--border);
  padding: 0.6rem 0.75rem;
  text-align: left;
}

.guide-content blockquote {
  border-left: 3px solid var(--accent);
  margin: 1rem 0;
  padding: 0.25rem 0 0.25rem 1rem;
  color: #d4d4d4;
}

.guide-venue-list li {
  margin-bottom: 0.85rem;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}

.guide-cta-btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.guide-cta-btn--primary {
  background: var(--accent);
  color: #fff;
}

.guide-cta-btn--secondary {
  border: 1px solid #fff;
  color: #fff;
}

.guide-entity-block {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

.guide-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.guide-footer p {
  margin: 0.35rem 0;
}
