* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Onest', sans-serif;
  background: #060810;
  color: #c8cdd8;
  overflow-x: clip;
  font-size: 17px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  body { font-size: 18px; }
}

/* ── Dot grid background ── */
.dot-grid {
  background-image: radial-gradient(rgba(0, 200, 255, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ── Glow effects ── */
.glow-cyan { box-shadow: 0 0 40px rgba(0, 200, 255, 0.15), 0 0 80px rgba(0, 200, 255, 0.05); }
.glow-cyan-strong { box-shadow: 0 0 30px rgba(0, 200, 255, 0.3), 0 0 60px rgba(0, 200, 255, 0.1), inset 0 1px 0 rgba(255,255,255,0.1); }
.glow-text { text-shadow: 0 0 40px rgba(0, 200, 255, 0.4), 0 0 80px rgba(0, 200, 255, 0.15); }

/* ── Glass cards ── */
.glass {
  background: rgba(13, 17, 32, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 200, 255, 0.08);
}
.glass-strong {
  background: rgba(13, 17, 32, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 200, 255, 0.12);
}

/* ── Animated gradient headline ── */
.gradient-text {
  background: linear-gradient(135deg, #00c8ff 0%, #00ffcc 25%, #00c8ff 50%, #8b5cf6 75%, #00c8ff 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── CTA button ── */
.cta-btn {
  background: linear-gradient(135deg, #00c8ff, #0088dd);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.cta-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #00c8ff, #00ffcc, #0088dd);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s ease;
}
.cta-btn:hover::before { opacity: 1; }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0, 200, 255, 0.3); }

/* ── Telegram CTA button ── */
.tg-btn {
  background: linear-gradient(135deg, #2AABEE, #1E96D1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.tg-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #2AABEE, #54C7FC, #1E96D1);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s ease;
}
.tg-btn:hover::before { opacity: 1; }
.tg-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(42, 171, 238, 0.3); }

/* ── Discord CTA button ── */
.discord-btn {
  background: linear-gradient(135deg, #5865F2, #4752C4);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.discord-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #5865F2, #7983F5, #4752C4);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s ease;
}
.discord-btn:hover::before { opacity: 1; }
.discord-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(88, 101, 242, 0.3); }

/* ── Secondary link ── */
.secondary-link {
  color: #8892a8;
  transition: color 0.2s ease;
  cursor: pointer;
}
.secondary-link:hover { color: #00c8ff; }

/* ── Email form slide ── */
.email-form-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.email-form-container.open {
  max-height: 120px;
  opacity: 1;
}

/* ── Terminal animation ── */
.terminal {
  background: #0a0e18;
  border: 1px solid rgba(0, 200, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  line-height: 1.7;
}
.terminal-bar {
  background: rgba(0, 200, 255, 0.04);
  border-bottom: 1px solid rgba(0, 200, 255, 0.08);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-body { padding: 20px; height: 280px; overflow-y: auto; }
.terminal-line { opacity: 0; animation: typeLine 0.3s ease forwards; }
.t-cyan { color: #00c8ff; }
.t-green { color: #22d68a; }
.t-yellow { color: #ffa502; }
.t-dim { color: #4a5068; }
.t-white { color: #e2e6f0; }
.t-red { color: #ff4757; }

@keyframes typeLine {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── Progress bar in terminal ── */
.progress-track {
  background: rgba(0, 200, 255, 0.08);
  border-radius: 4px;
  height: 6px;
  overflow: hidden;
  flex: 1;
}
.progress-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #00c8ff, #22d68a);
  animation: progressGrow 2s ease-out forwards;
}
@keyframes progressGrow { from { width: 0; } }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Navbar ── */
.navbar {
  background: rgba(6, 8, 16, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 200, 255, 0);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  border-bottom-color: rgba(0, 200, 255, 0.08);
  background: rgba(6, 8, 16, 0.92);
}

/* ── Comparison table ── */
.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 200, 255, 0.06);
}
.comparison-table thead th {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.comparison-table .col-ours {
  background: rgba(0, 200, 255, 0.04);
  border-left: 2px solid rgba(0, 200, 255, 0.2);
  border-right: 2px solid rgba(0, 200, 255, 0.2);
}
.comparison-table .col-ours-head {
  background: rgba(0, 200, 255, 0.08);
  border-left: 2px solid rgba(0, 200, 255, 0.3);
  border-right: 2px solid rgba(0, 200, 255, 0.3);
  color: #00c8ff;
}

/* ── Pricing card highlight ── */
.pricing-highlight {
  border: 2px solid rgba(0, 200, 255, 0.3);
  background: rgba(0, 200, 255, 0.04);
  position: relative;
}
.pricing-highlight::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(0, 200, 255, 0.1), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

/* ── Build version hero ── */
.build-version-block {
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.08), rgba(0, 200, 255, 0.02));
  border: 1px solid rgba(0, 200, 255, 0.15);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.build-version-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #00c8ff, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.build-date-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #22d68a;
  background: rgba(34, 214, 138, 0.08);
  border-radius: 6px;
  padding: 4px 10px;
  margin-top: 8px;
}
.build-date-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22d68a;
  animation: buildPulse 2s ease-in-out infinite;
}
@keyframes buildPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── FAQ accordion ── */
.faq-item { border-bottom: 1px solid rgba(0, 200, 255, 0.06); }
.faq-question {
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}
.faq-question:hover { color: #00c8ff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-chevron { transition: transform 0.3s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* ── Video card hover ── */
.video-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.video-card:hover { transform: translateY(-4px); border-color: rgba(0, 200, 255, 0.2); }
.video-card .play-icon { transition: all 0.3s ease; }
.video-card:hover .play-icon { transform: scale(1.15); box-shadow: 0 0 40px rgba(0, 200, 255, 0.3); }

/* ── Step cards ── */
.step-connector {
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -24px;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 200, 255, 0.3), transparent);
}
@media (max-width: 768px) {
  .step-connector::after { display: none; }
}

/* ── Stat counter ── */
.stat-number {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, #00c8ff, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Floating orbs ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
}

/* ── Marquee badge ── */
.badge-pulse {
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ── Section divider ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.15), transparent);
}

/* ── PAS cards ── */
.pas-line {
  position: absolute;
  left: 28px;
  top: 60px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 200, 255, 0.3), rgba(0, 200, 255, 0.05));
}

/* ── Legal prose ── */
.legal-prose { color: #c8cdd8; }
.legal-prose h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.legal-prose .subtitle {
  font-weight: 600;
  color: #c8cdd8;
  margin-bottom: 0.25rem;
}
.legal-prose .last-updated {
  color: #6b7280;
  font-style: italic;
  margin-bottom: 2rem;
}
.legal-prose h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #e2e6f0;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 200, 255, 0.08);
}
.legal-prose h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e2e6f0;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.legal-prose p {
  margin-bottom: 1rem;
  line-height: 1.7;
}
.legal-prose ul, .legal-prose ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.legal-prose ul { list-style-type: disc; }
.legal-prose ol { list-style-type: decimal; }
.legal-prose li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}
.legal-prose strong { color: #e2e6f0; }
.legal-prose em { color: #8892a8; }
.legal-prose a {
  color: #00c8ff;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.legal-prose a:hover { color: #54d4ff; }
.legal-prose hr {
  border: none;
  height: 1px;
  background: rgba(0, 200, 255, 0.08);
  margin: 2rem 0;
}
.legal-prose .table-wrapper {
  overflow-x: auto;
  margin-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}
.legal-prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.legal-prose th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: rgba(0, 200, 255, 0.06);
  color: #e2e6f0;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 200, 255, 0.12);
  white-space: nowrap;
}
.legal-prose td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 200, 255, 0.06);
}
.legal-prose .all-caps { text-transform: uppercase; }
.legal-prose .closing-note {
  margin-top: 2rem;
  font-style: italic;
  color: #6b7280;
}

/* ── Guide page ── */
.guide-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #00c8ff, #22d68a);
  z-index: 100;
  transition: width 0.15s ease-out;
}

.guide-sidebar {
  position: sticky;
  top: 5.5rem;
  max-height: calc(100vh - 6rem);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 200, 255, 0.15) transparent;
}
.guide-sidebar::-webkit-scrollbar { width: 3px; }
.guide-sidebar::-webkit-scrollbar-track { background: transparent; }
.guide-sidebar::-webkit-scrollbar-thumb { background: rgba(0, 200, 255, 0.15); border-radius: 3px; }

.guide-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.4;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
}
.guide-nav-item:hover { color: #c8cdd8; }
.guide-nav-item.active {
  color: #00c8ff;
  border-left-color: #00c8ff;
  background: rgba(0, 200, 255, 0.04);
}
.guide-nav-item.stage {
  font-weight: 600;
  color: #8892a8;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.guide-nav-item.stage.active { color: #00c8ff; }
.guide-nav-item.sub { padding-left: 1.5rem; font-size: 0.8125rem; }

.guide-stage-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  background: rgba(0, 200, 255, 0.1);
  color: #00c8ff;
  border: 1px solid rgba(0, 200, 255, 0.2);
}

.guide-callout {
  border-left: 3px solid rgba(0, 200, 255, 0.4);
  background: rgba(0, 200, 255, 0.04);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1rem 0;
  font-size: 0.9375rem;
  line-height: 1.65;
}
.guide-callout p { margin: 0; }
.guide-callout::before {
  content: 'Note';
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8125rem;
  color: #00c8ff;
}
.guide-callout-warning {
  border-left-color: rgba(255, 165, 2, 0.5);
  background: rgba(255, 165, 2, 0.04);
}
.guide-callout-warning::before {
  content: 'Warning';
  color: #ffa502;
}
.guide-callout-tip {
  border-left-color: rgba(34, 214, 138, 0.5);
  background: rgba(34, 214, 138, 0.04);
}
.guide-callout-tip::before {
  content: 'Tip';
  color: #22d68a;
}

/* ── Method cards ── */
.guide-method-card {
  border-radius: 12px;
  overflow: hidden;
  margin: 1.5rem 0;
}
.guide-method-primary {
  border: 1px solid rgba(0, 200, 255, 0.25);
  background: rgba(0, 200, 255, 0.02);
  box-shadow: 0 0 24px rgba(0, 200, 255, 0.06);
}
.guide-method-secondary {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.guide-method-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.guide-method-primary .guide-method-header {
  background: rgba(0, 200, 255, 0.04);
  border-bottom-color: rgba(0, 200, 255, 0.12);
}
.guide-method-secondary .guide-method-header {
  background: rgba(255, 255, 255, 0.02);
}
.guide-method-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.guide-method-badge-primary {
  background: rgba(0, 200, 255, 0.1);
  color: #00c8ff;
  border: 1px solid rgba(0, 200, 255, 0.25);
}
.guide-method-badge-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #8892a8;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.guide-method-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}
.guide-method-tag-recommended {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2em 0.6em;
  border-radius: 999px;
  background: rgba(0, 200, 255, 0.1);
  color: #00c8ff;
  border: 1px solid rgba(0, 200, 255, 0.2);
}
.guide-method-tag-alt {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2em 0.6em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #6b7280;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.guide-method-req {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.5;
}
.guide-method-req a { color: #00c8ff; text-decoration: underline; text-underline-offset: 2px; }
.guide-method-body {
  padding: 1.25rem 1.5rem;
}
.guide-method-body > *:first-child { margin-top: 0; }
.guide-method-body > *:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .guide-method-header { padding: 1rem 1.125rem; }
  .guide-method-body { padding: 1rem 1.125rem; }
}

/* ── Stage-block navigation ── */
.guide-stage-block { display: none; }
.guide-stage-block.active {
  display: block;
  animation: stageFadeIn 0.25s ease-out;
}
@keyframes stageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.guide-stage-block.active > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.guide-prev-next {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 200, 255, 0.06);
}
.guide-prev-next a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  background: rgba(13, 17, 32, 0.6);
  border: 1px solid rgba(0, 200, 255, 0.08);
  color: #c8cdd8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
.guide-prev-next a:hover {
  border-color: rgba(0, 200, 255, 0.2);
  color: #00c8ff;
}

/* Guide TOC mobile toggle */
.guide-toc-mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.guide-toc-mobile.open { max-height: 600px; }

/* Guide prose — extends legal-prose for guide-specific needs */
.guide-prose { color: #c8cdd8; min-height: calc(100vh - 10rem); }
.guide-prose h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-top: 4rem;
  margin-bottom: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 200, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.guide-prose h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 2rem;
}
.guide-prose h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 200, 255, 0.1);
}
.guide-prose h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #8892a8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.guide-prose p { margin-bottom: 1rem; line-height: 1.7; }
.guide-prose ul, .guide-prose ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.guide-prose ul { list-style-type: disc; }
.guide-prose ol { list-style-type: decimal; }
.guide-prose li { margin-bottom: 0.4rem; line-height: 1.7; }
.guide-prose strong { color: #e2e6f0; }
.guide-prose em { color: #8892a8; }
.guide-prose a { color: #00c8ff; text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
.guide-prose a:hover { color: #54d4ff; }
.guide-prose code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85em;
  background: rgba(0, 200, 255, 0.06);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  color: #00c8ff;
}
.guide-prose pre {
  background: #0a0e18;
  border: 1px solid rgba(0, 200, 255, 0.1);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  overflow-x: auto;
  margin-bottom: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #c8cdd8;
}
.guide-prose pre code { background: none; padding: 0; color: inherit; }
.guide-prose hr {
  border: none;
  height: 1px;
  background: rgba(0, 200, 255, 0.08);
  margin: 2.5rem 0;
}
.guide-prose table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin-bottom: 1rem; }
.guide-prose th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: rgba(0, 200, 255, 0.06);
  color: #e2e6f0;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 200, 255, 0.12);
  white-space: nowrap;
}
.guide-prose td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 200, 255, 0.06);
}
.guide-prose img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.75rem auto;
  border-radius: 10px;
  border: 1px solid rgba(0, 200, 255, 0.1);
  background: #0a0e18;
}
.guide-prose figure {
  margin: 1.75rem 0;
}
.guide-prose figure img {
  margin: 0 auto 0.75rem;
}
.guide-prose figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: #8892a8;
  font-style: italic;
}
.guide-prose blockquote {
  border-left: 3px solid rgba(0, 200, 255, 0.4);
  background: rgba(0, 200, 255, 0.04);
  padding: 0.75rem 1.25rem;
  margin: 1.25rem 0;
  border-radius: 0 6px 6px 0;
  color: #c8cdd8;
}
.guide-prose blockquote p { margin-bottom: 0.5rem; }
.guide-prose blockquote p:last-child { margin-bottom: 0; }

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #080b14; }
::-webkit-scrollbar-thumb { background: rgba(0, 200, 255, 0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 200, 255, 0.4); }

/* ── OS toggle (guide page) ── */
.os-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.625rem;
  width: fit-content;
}
.os-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  background: transparent;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Onest', sans-serif;
}
.os-tab:hover { color: #c8cdd8; }
.os-tab.active {
  background: rgba(0, 200, 255, 0.06);
  border-color: rgba(0, 200, 255, 0.15);
  color: #00c8ff;
}
.os-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  vertical-align: middle;
  line-height: 1.4;
}
.os-badge.os-mac {
  background: rgba(0, 200, 255, 0.08);
  color: #00c8ff;
  border: 1px solid rgba(0, 200, 255, 0.15);
}
.os-badge.os-win {
  background: rgba(0, 120, 215, 0.08);
  color: #0078d7;
  border: 1px solid rgba(0, 120, 215, 0.15);
}
