@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0f;
  --bg2:       #0f0f18;
  --purple:    #8b5cf6;
  --purple-d:  #7c3aed;
  --purple-l:  #a78bfa;
  --pink:      #f472b6;
  --text:      #f1f0f5;
  --text-2:    #c4b5fd;
  --text-3:    #6b7280;
  --text-4:    #374151;
  --border:    rgba(255,255,255,0.07);
  --border-p:  rgba(139,92,246,0.2);
  --glass:     rgba(255,255,255,0.03);
  --glass-p:   rgba(139,92,246,0.06);
  --radius:    14px;
  --radius-sm: 8px;
  --shadow-p:  0 0 40px rgba(139,92,246,0.15);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #4c1d95; border-radius: 3px; }

/* ─── Utility ─── */
.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.glass-p {
  background: var(--glass-p);
  border: 1px solid var(--border-p);
}
.gradient-text {
  background: linear-gradient(135deg, var(--purple-l), var(--pink), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gx 5s ease infinite;
}
@keyframes gx {
  0%,100% { background-position: 0% }
  50% { background-position: 100% }
}
.pulse { animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite; }
@keyframes pulse { 0%,100% { opacity:1 } 50% { opacity:.5 } }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 14px; border-radius: 99px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  border: 1px solid;
}

/* ─── Header ─── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10,10,15,0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; color: var(--text);
}
.logo-icon {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(139,92,246,0.4);
}
.logo span { color: var(--purple-l); }
nav { display: flex; align-items: center; gap: 28px; }
nav a {
  font-size: 14px; color: var(--text-3); transition: color .2s;
  font-weight: 500;
}
nav a:hover { color: var(--text); }
.btn-primary {
  background: var(--purple-d); color: #fff; font-weight: 600;
  padding: 8px 18px; border-radius: var(--radius-sm); border: none;
  font-size: 14px; transition: background .2s, box-shadow .2s;
  box-shadow: 0 4px 15px rgba(124,58,237,0.3);
}
.btn-primary:hover { background: var(--purple); box-shadow: 0 4px 20px rgba(124,58,237,0.5); }
.mobile-menu-btn {
  display: none; background: none; border: none;
  color: var(--text-3); font-size: 24px; line-height: 1;
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(10,10,15,0.97);
  padding: 16px 20px;
}
.mobile-menu a {
  display: block; padding: 10px 0;
  color: var(--text-3); font-size: 14px;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .btn-primary {
  display: block; text-align: center; margin-top: 12px; padding: 12px;
  border-radius: var(--radius-sm); width: 100%;
}
@media (max-width: 680px) {
  nav { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-menu.open { display: block; }
}

/* ─── Hero ─── */
.hero {
  padding: 140px 20px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px);
}
.hero-glow.center {
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: rgba(139,92,246,0.1);
}
.hero-glow.left {
  top: 50px; left: 10%;
  width: 350px; height: 350px;
  background: rgba(244,114,182,0.05);
}
.hero-glow.right {
  top: 50px; right: 10%;
  width: 350px; height: 350px;
  background: rgba(96,165,250,0.05);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 16px; border-radius: 99px;
  border: 1px solid rgba(139,92,246,0.3);
  background: rgba(139,92,246,0.06);
  font-size: 12px; font-weight: 600; color: var(--purple-l);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}
h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900; line-height: 1.1;
  color: var(--text); margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--text-3); max-width: 560px;
  margin: 0 auto 16px; line-height: 1.7;
}
.hero-sub em { color: var(--text); font-style: normal; }
.stars {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 40px;
}
.stars-icons { color: #facc15; font-size: 13px; letter-spacing: 2px; }
.stars p { color: var(--text-3); font-size: 13px; }
.stars p b { color: var(--text); }

/* ─── Tool ─── */
.tool-wrap { max-width: 960px; margin: 0 auto; }
.mode-toggle {
  display: inline-flex; gap: 4px; padding: 4px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 20px;
}
.mode-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: 6px; border: none;
  font-size: 13px; font-weight: 600; background: none;
  color: var(--text-3); transition: all .2s;
}
.mode-btn.active {
  background: var(--purple-d); color: #fff;
  box-shadow: 0 2px 12px rgba(124,58,237,0.4);
}
.mode-btn svg { width: 15px; height: 15px; }
.tool-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 700px) {
  .tool-grid { grid-template-columns: 1fr; }
}

/* Dropzone */
.dropzone {
  border: 2px dashed var(--text-4);
  border-radius: var(--radius); padding: 32px;
  min-height: 240px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; cursor: pointer;
  transition: all .3s; position: relative; overflow: hidden;
}
.dropzone:hover, .dropzone.drag { border-color: var(--purple); background: rgba(139,92,246,0.04); }
.dropzone.has-image { border-color: rgba(139,92,246,0.4); }
.dropzone input[type=file] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.dropzone-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 14px;
}
.dropzone h4 { color: var(--text); font-size: 15px; margin-bottom: 4px; }
.dropzone p { color: var(--text-3); font-size: 13px; }
.dropzone .sub { color: var(--text-4); font-size: 11px; margin-top: 10px; }
.preview-img {
  width: 100%; height: 200px; object-fit: contain;
  border-radius: 10px;
}
.url-input {
  position: relative; margin-bottom: 12px;
}
.url-input svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 15px; height: 15px; color: var(--text-3);
}
.url-input input {
  width: 100%; padding: 12px 14px 12px 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); color: var(--text);
  font-size: 14px; outline: none; transition: border .2s;
  font-family: inherit;
}
.url-input input:focus { border-color: var(--purple); }
.url-input input::placeholder { color: var(--text-3); }
.url-preview {
  width: 100%; height: 180px; object-fit: contain;
  border-radius: 10px; border: 1px solid var(--border);
}
/* Style selector */
.style-sel { position: relative; margin-bottom: 12px; }
.style-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-size: 13px;
  transition: border .2s;
}
.style-btn:hover { border-color: rgba(139,92,246,0.4); }
.style-btn-left { display: flex; align-items: center; gap: 7px; }
.style-btn-left svg { width: 14px; height: 14px; color: var(--purple-l); }
.style-btn-label { font-weight: 600; }
.style-btn-desc { color: var(--text-3); }
.style-btn-arrow { color: var(--text-3); font-size: 12px; transition: transform .2s; }
.style-btn-arrow.open { transform: rotate(180deg); }
.style-dropdown {
  display: none; position: absolute; top: calc(100% + 6px);
  left: 0; right: 0; z-index: 20;
  background: #111120; border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.style-dropdown.open { display: block; }
.style-opt {
  width: 100%; display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; background: none; border: none;
  font-size: 13px; text-align: left; color: var(--text-3);
  transition: background .15s; font-family: inherit;
}
.style-opt:hover, .style-opt.active { background: rgba(139,92,246,0.15); color: var(--text); }
.style-opt b { color: var(--text); font-weight: 600; margin-right: 4px; }
/* Generate btn */
.btn-row { display: flex; gap: 10px; }
.btn-generate {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; background: var(--purple-d); color: #fff;
  border: none; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.btn-generate:hover:not(:disabled) { background: var(--purple); box-shadow: 0 4px 25px rgba(124,58,237,0.5); }
.btn-generate:disabled { opacity: .5; cursor: not-allowed; }
.btn-generate svg { width: 17px; height: 17px; }
.btn-reset {
  padding: 13px 14px; background: var(--glass); border: 1px solid var(--border);
  color: var(--text-3); border-radius: var(--radius-sm); font-size: 14px;
  transition: color .2s;
}
.btn-reset:hover { color: var(--text); }
.btn-reset svg { width: 17px; height: 17px; display: block; }
/* Result */
.result-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.result-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-3);
}
.btn-copy {
  display: flex; align-items: center; gap: 5px;
  padding: 5px 12px; background: var(--glass); border: 1px solid var(--border);
  border-radius: 6px; font-size: 12px; color: var(--purple-l);
  transition: all .15s; font-family: inherit;
}
.btn-copy svg { width: 12px; height: 12px; }
.btn-copy:hover { color: var(--text); border-color: rgba(139,92,246,0.4); }
.result-box {
  min-height: 280px; border-radius: var(--radius); padding: 20px;
  border: 1px solid var(--border); display: flex; flex-direction: column;
  align-items: center; justify-content: center; transition: all .3s;
}
.result-box.has-content {
  background: var(--glass-p); border-color: var(--border-p);
  align-items: flex-start; justify-content: flex-start;
}
.result-empty { text-align: center; color: var(--text-4); }
.result-empty svg { width: 36px; height: 36px; margin: 0 auto 10px; opacity: .3; }
.result-empty p { font-size: 13px; }
.result-loading {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}
.spinner {
  width: 36px; height: 36px; border: 2px solid rgba(139,92,246,0.3);
  border-top-color: var(--purple); border-radius: 50%;
  animation: spin 1s linear infinite;
}
.result-loading p { font-size: 13px; color: var(--purple-l); }
.result-text { color: var(--text-2); font-size: 14px; line-height: 1.8; white-space: pre-wrap; }

/* ─── Toast ─── */
#toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  padding: 12px 18px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  background: #1a1025; border: 1px solid rgba(139,92,246,0.4);
  color: var(--text); opacity: 0; transform: translateY(10px);
  transition: all .25s; pointer-events: none;
}
#toast.show { opacity: 1; transform: translateY(0); }
#toast.error { border-color: rgba(239,68,68,0.4); }

/* ─── Section headings ─── */
.section { padding: 80px 20px; }
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; margin-bottom: 12px; }
.section-sub { color: var(--text-3); font-size: 16px; max-width: 500px; margin: 0 auto; }
.text-center { text-align: center; }
.mb-14 { margin-bottom: 56px; }

/* ─── Features ─── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: border .2s;
}
.feature-card:hover { border-color: rgba(139,92,246,0.3); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px; transition: border .2s;
}
.feature-card:hover .feature-icon { border-color: rgba(139,92,246,0.5); }
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { color: var(--text-3); font-size: 13px; line-height: 1.65; }

/* ─── How it works ─── */
.hiw-bg { background: linear-gradient(to bottom, transparent, rgba(139,92,246,0.03), transparent); }
.hiw-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.hiw-card {
  background: var(--glass-p); border: 1px solid var(--border-p);
  border-radius: var(--radius); padding: 28px; text-align: center;
}
.hiw-num {
  font-size: 60px; font-weight: 900; color: rgba(139,92,246,0.1);
  line-height: 1; margin-bottom: 12px; user-select: none;
}
.hiw-icon {
  width: 56px; height: 56px; margin: 0 auto 18px;
  border-radius: 16px; background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.hiw-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.hiw-card p { color: var(--text-3); font-size: 13px; line-height: 1.65; }

/* ─── Examples ─── */
.ex-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.ex-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
}
.ex-card p { color: var(--text-3); font-size: 13px; line-height: 1.75; font-style: italic; margin-top: 12px; }

/* ─── FAQ ─── */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: none; border: none;
  font-size: 14px; font-weight: 600; color: var(--text);
  text-align: left; cursor: pointer; font-family: inherit;
  gap: 12px;
}
.faq-q span:last-child {
  font-size: 18px; color: var(--text-3); flex-shrink: 0;
  transition: transform .2s;
}
.faq-q.open span:last-child { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 16px; }
.faq-a.open { display: block; }
.faq-a p { color: var(--text-3); font-size: 13px; line-height: 1.7; }

/* ─── CTA ─── */
.cta-box {
  position: relative; text-align: center;
  background: var(--glass-p); border: 1px solid var(--border-p);
  border-radius: 24px; padding: 60px 30px; overflow: hidden;
  max-width: 900px; margin: 0 auto;
}
.cta-glow {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(60px);
}
.cta-glow.t { top: -40px; left: 50%; transform: translateX(-50%); width: 300px; height: 150px; background: rgba(139,92,246,0.2); }
.cta-glow.b { bottom: -40px; right: 20%; width: 200px; height: 120px; background: rgba(244,114,182,0.1); }
.cta-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: rgba(139,92,246,0.2); border: 1px solid rgba(139,92,246,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 24px; position: relative;
}
.cta-box h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 900; margin-bottom: 14px; }
.cta-box p { color: var(--text-3); font-size: 15px; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; background: var(--purple-d); color: #fff;
  border: none; border-radius: var(--radius-sm); font-size: 16px; font-weight: 700;
  transition: all .2s; box-shadow: 0 4px 20px rgba(124,58,237,0.4);
  text-decoration: none;
}
.btn-cta:hover { background: var(--purple); box-shadow: 0 4px 30px rgba(124,58,237,0.6); }

/* ─── Footer ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 20px 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; max-width: 1200px; margin: 0 auto 40px;
}
@media (max-width: 680px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
footer p.desc { color: var(--text-3); font-size: 13px; line-height: 1.7; max-width: 300px; margin-top: 14px; }
footer h4 { font-size: 13px; font-weight: 700; margin-bottom: 14px; color: var(--text); }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul a { color: var(--text-3); font-size: 13px; transition: color .15s; }
footer ul a:hover { color: var(--purple-l); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-4); font-size: 12px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-4); font-size: 12px; transition: color .15s; }
.footer-links a:hover { color: var(--text-3); }

/* ─── Blog ─── */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.blog-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border .2s; text-decoration: none;
}
.blog-card:hover { border-color: rgba(139,92,246,0.35); }
.blog-card-meta {
  display: flex; align-items: center; justify-content: space-between;
}
.blog-card-meta .read-time { font-size: 11px; color: var(--text-3); display: flex; align-items: center; gap: 4px; }
.blog-card h2 { font-size: 16px; font-weight: 700; line-height: 1.4; color: var(--text); transition: color .2s; }
.blog-card:hover h2 { color: var(--purple-l); }
.blog-card p { color: var(--text-3); font-size: 13px; line-height: 1.6; flex: 1; }
.blog-card-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 10px; border-top: 1px solid var(--border);
}
.blog-card-date { font-size: 11px; color: var(--text-3); display: flex; align-items: center; gap: 4px; }
.read-more { font-size: 12px; font-weight: 600; color: var(--purple-l); display: flex; align-items: center; gap: 4px; }

/* ─── Article ─── */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 110px 20px 80px; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-3);
  transition: color .15s; margin-bottom: 28px;
}
.back-link:hover { color: var(--purple-l); }
.article-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.article-meta span { font-size: 12px; color: var(--text-3); display: flex; align-items: center; gap: 4px; }
.article-title {
  font-size: clamp(26px, 4vw, 42px); font-weight: 900;
  line-height: 1.2; margin-bottom: 16px;
}
.article-desc {
  font-size: 18px; color: var(--text-3); line-height: 1.7; margin-bottom: 40px;
}
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(139,92,246,0.4), transparent);
  margin-bottom: 40px;
}
.prose h2 { font-size: 24px; font-weight: 700; color: var(--text); margin: 32px 0 12px; }
.prose h3 { font-size: 19px; font-weight: 700; color: var(--text); margin: 24px 0 8px; }
.prose p { color: var(--text-2); line-height: 1.8; margin-bottom: 14px; font-size: 15px; }
.prose ul, .prose ol { color: var(--text-2); padding-left: 22px; margin-bottom: 14px; }
.prose li { margin-bottom: 6px; line-height: 1.7; font-size: 15px; }
.prose strong { color: var(--purple-l); font-weight: 600; }
.prose code {
  background: rgba(139,92,246,0.12); padding: 2px 7px;
  border-radius: 4px; font-size: .9em; color: var(--purple-l);
  font-family: 'Fira Code', monospace;
}
.prose pre {
  background: rgba(0,0,0,0.4); border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--radius-sm); padding: 18px; overflow-x: auto;
  margin-bottom: 18px;
}
.prose pre code { background: none; padding: 0; font-size: 13px; }
.prose a { color: var(--purple-l); text-decoration: underline; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 18px; font-size: 13px; }
.prose th { background: rgba(139,92,246,0.12); padding: 10px 14px; text-align: left; font-weight: 700; color: var(--text); }
.prose td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text-2); }
.prose blockquote {
  border-left: 3px solid var(--purple); padding-left: 16px;
  margin: 18px 0; color: var(--text-3);
}
.article-cta {
  margin-top: 50px; text-align: center;
  background: var(--glass-p); border: 1px solid var(--border-p);
  border-radius: var(--radius); padding: 32px;
}
.article-cta h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.article-cta p { color: var(--text-3); font-size: 14px; margin-bottom: 20px; }
.article-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px;
}
.article-nav a {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px;
  transition: border .2s;
}
.article-nav a:hover { border-color: rgba(139,92,246,0.35); }
.article-nav .nav-label { font-size: 11px; color: var(--text-3); margin-bottom: 4px; }
.article-nav .nav-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; }
.article-nav .next { text-align: right; }
