/* assets/css/landing.css
   RhemaLive Landing Page — Dark Cathedral × Tech Aesthetic
   Fonts: Playfair Display (headlines) + Outfit (body)
*/

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

:root {
  --bg:        #080810;
  --surface:   #0e0e1a;
  --card:      #12121e;
  --border:    rgba(255,255,255,.07);
  --gold:      #f0a500;
  --gold-glow: rgba(240,165,0,.12);
  --purple:    #b06bff;
  --blue:      #4da6ff;
  --text:      #e8e8f2;
  --muted:     rgba(232,232,242,.45);
  --radius:    12px;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Outfit', sans-serif; font-size: 16px; line-height: 1.65; overflow-x: hidden; }
body.inner-page { background: var(--bg); }

/* ── Utility ─────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }
.section-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 900; line-height: 1.15; margin-bottom: 18px; }
.section-h2.centered { text-align: center; }
.section-p  { color: var(--muted); font-size: 17px; line-height: 1.75; max-width: 640px; margin-bottom: 32px; }
.section-p.centered { text-align: center; margin: 0 auto 32px; }
.section-header { text-align: center; margin-bottom: 56px; }

/* ── Announcement bar ────────────────────────── */
.announcement-bar {
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  position: relative;
  z-index: 100;
}
.announcement-bar a { color: var(--gold); font-weight: 600; margin-left: 10px; text-decoration: none; }
.announcement-bar a:hover { text-decoration: underline; }

/* ── Nav ─────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(8,8,16,.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner  { max-width: 1180px; margin: 0 auto; padding: 0 28px; height: 64px; display: flex; align-items: center; gap: 32px; }
.nav-brand  { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-r    { width: 32px; height: 32px; background: var(--gold); color: #000; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 17px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
.brand-text { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: white; }
.nav-links  { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: white; }
.nav-cta    { margin-left: 24px; background: var(--gold); color: #000; padding: 8px 20px; border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background .15s; }
.nav-cta:hover { background: #ffc333; }
.nav-hamburger { display: none; background: none; border: none; color: white; font-size: 22px; cursor: pointer; margin-left: auto; }

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--surface); flex-direction: column; padding: 20px 28px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-hamburger { display: block; }
}

/* ── Hero ────────────────────────────────────── */
.hero { position: relative; padding: 100px 0 60px; overflow: hidden; min-height: 90vh; display: flex; flex-direction: column; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: .35; }
.hero-glow-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(176,107,255,.5), transparent); top: -200px; left: -100px; }
.hero-glow-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(240,165,0,.4), transparent); top: 100px; right: -60px; }
.hero-grid  { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%); }
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-block; padding: 6px 16px; border: 1px solid rgba(240,165,0,.3); border-radius: 50px; font-size: 12px; font-weight: 500; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 28px; background: rgba(240,165,0,.06); }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(42px, 7vw, 84px); font-weight: 900; line-height: 1.0; margin-bottom: 24px; }
.hero-line1 { display: block; color: white; }
.hero-line2 { display: block; color: var(--gold); font-style: italic; }
.hero-subtitle { font-size: clamp(16px, 2vw, 19px); color: var(--muted); max-width: 560px; margin-bottom: 40px; line-height: 1.75; }
.hero-actions   { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-version   { font-size: 12px; color: rgba(255,255,255,.25); }

/* ── Hero buttons ──────────────────────────── */
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #000;
  padding: 13px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background .15s, transform .15s;
}
.btn-hero-primary:hover { background: #ffc333; transform: translateY(-1px); }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.2); color: white;
  padding: 13px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: border-color .15s, background .15s;
}
.btn-hero-secondary:hover { border-color: var(--gold); background: rgba(240,165,0,.06); }
.btn-outline-gold { display: inline-block; border: 1px solid rgba(240,165,0,.4); color: var(--gold); padding: 11px 24px; border-radius: 9px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background .15s; }
.btn-outline-gold:hover { background: var(--gold-glow); }
.btn-outline-sm  { display: inline-block; border: 1px solid var(--border); color: var(--muted); padding: 5px 14px; border-radius: 7px; font-size: 12px; text-decoration: none; transition: all .15s; background: none; cursor: pointer; }
.btn-outline-sm:hover { border-color: var(--gold); color: var(--gold); }

/* ── Verse preview card ────────────────────── */
.hero-card-wrap { position: relative; z-index: 2; margin-top: 56px; }
.verse-preview-card {
  background: rgba(22,22,36,.9);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; overflow: hidden;
  max-width: 680px;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(240,165,0,.08);
  backdrop-filter: blur(20px);
}
.vpc-bar { display: flex; align-items: center; gap: 6px; padding: 10px 16px; background: rgba(0,0,0,.3); }
.vpc-dot { width: 10px; height: 10px; border-radius: 50%; }
.vpc-screen { padding: 36px 40px; background: #0a0a14; }
.vpc-verse  { font-family: 'Playfair Display', serif; font-size: clamp(17px, 2.5vw, 22px); color: white; line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.vpc-ref    { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.5); }
.vpc-tag    { background: rgba(240,165,0,.15); color: var(--gold); padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; margin-left: 8px; }
.vpc-detected { display: flex; align-items: center; gap: 10px; padding: 10px 16px; font-size: 12px; color: rgba(76,175,80,.8); border-top: 1px solid rgba(255,255,255,.05); }
.vpc-pulse  { width: 8px; height: 8px; border-radius: 50%; background: #4caf50; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

/* ── Stats strip ─────────────────────────────── */
.stats-strip { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
.stats-grid  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item   { text-align: center; padding: 16px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num    { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: var(--gold); }
.stat-lbl    { font-size: 12px; color: var(--muted); margin-top: 4px; letter-spacing: .5px; }
@media(max-width:640px) { .stats-grid { grid-template-columns: 1fr 1fr; } .stat-item:nth-child(2) { border-right: none; } }

/* ── Problem / Solution ──────────────────────── */
.problem-section { background: var(--surface); }
.two-col  { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media(max-width:900px) { .two-col { grid-template-columns: 1fr; } }
.pain-list, .gain-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pain-list li, .gain-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.pain-x    { color: #f44336; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.gain-check{ color: #4caf50; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Features ────────────────────────────────── */
.features-section { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width:900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: border-color .2s, transform .2s; }
.feature-card:hover { border-color: rgba(240,165,0,.3); transform: translateY(-3px); }
.feat-icon  { font-size: 28px; margin-bottom: 14px; }
.feat-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feat-desc  { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ── How It Works ───────────────────────────── */
.howitworks-section { background: var(--surface); }
.steps-row  { display: flex; align-items: flex-start; gap: 0; justify-content: center; flex-wrap: wrap; }
.step-card  { flex: 1; min-width: 220px; max-width: 280px; text-align: center; padding: 32px 20px; }
.step-num   { width: 52px; height: 52px; border-radius: 50%; background: var(--gold-glow); border: 2px solid rgba(240,165,0,.4); color: var(--gold); font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; display: grid; place-items: center; margin: 0 auto 20px; }
.step-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-desc  { color: var(--muted); font-size: 14px; line-height: 1.7; }
.step-arrow { font-size: 24px; color: rgba(240,165,0,.3); align-self: center; padding: 0 10px; margin-top: -30px; }
@media(max-width:700px) { .step-arrow { display: none; } }

/* ── Plugins preview ─────────────────────────── */
.plugins-preview-section { background: var(--bg); padding: 80px 0; }
.plugins-row { display: flex; flex-direction: column; gap: 10px; max-width: 640px; margin: 0 auto; }
.plugin-preview-card { display: flex; align-items: center; gap: 16px; background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; transition: border-color .15s; }
.plugin-preview-card:hover { border-color: rgba(240,165,0,.25); }
.plg-icon  { font-size: 26px; flex-shrink: 0; }
.plg-info  { flex: 1; }
.plg-title { font-weight: 600; font-size: 14px; }
.plg-desc  { color: var(--muted); font-size: 12px; margin-top: 3px; }

/* ── Pricing ─────────────────────────────────── */
.pricing-section { background: var(--surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; align-items: start; }
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-top: 3px solid var(--card-accent, #888);
  border-radius: var(--radius); padding: 30px 24px;
  position: relative; transition: transform .2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card-featured { border-color: var(--card-accent, #b06bff); box-shadow: 0 0 0 1px var(--card-accent, #b06bff), 0 20px 60px rgba(176,107,255,.1); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 3px 14px; border-radius: 50px; font-size: 11px; font-weight: 700; color: #000; white-space: nowrap; }
.price-tier  { margin-bottom: 12px; }
.price-name  { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; margin-bottom: 8px; }
.price-amount{ margin-bottom: 12px; line-height: 1; }
.price-dollar{ font-size: 18px; vertical-align: top; margin-top: 6px; display: inline-block; color: var(--muted); }
.price-amount b { font-size: 42px; font-family: 'Playfair Display', serif; font-weight: 900; }
.price-per   { font-size: 14px; color: var(--muted); margin-left: 2px; }
.price-free  { font-size: 36px; font-family: 'Playfair Display', serif; font-weight: 900; color: var(--gold); }
.price-desc  { color: var(--muted); font-size: 13px; margin-bottom: 20px; line-height: 1.6; min-height: 44px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.price-features li { display: flex; gap: 8px; font-size: 13px; color: rgba(255,255,255,.7); }
.pf-check    { flex-shrink: 0; font-weight: 700; }
.price-cta   { display: block; text-align: center; padding: 12px; border-radius: 9px; font-weight: 700; font-size: 14px; text-decoration: none; border: 2px solid; transition: all .15s; }
.price-cta:hover { opacity: .85; transform: translateY(-1px); }

/* ── CTA bottom ──────────────────────────────── */
.cta-bottom-section { padding: 100px 0; background: radial-gradient(ellipse at center, rgba(176,107,255,.15) 0%, transparent 70%), var(--bg); text-align: center; }
.cta-bottom-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cta-bottom-title { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 44px); font-weight: 900; }
.cta-bottom-sub   { color: var(--muted); font-size: 17px; }

/* ── Contact ─────────────────────────────────── */
.contact-section { background: var(--surface); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
@media(max-width:900px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-info    { display: flex; flex-direction: column; gap: 24px; }
.contact-item    { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon    { width: 40px; height: 40px; background: rgba(240,165,0,.1); border: 1px solid rgba(240,165,0,.25); border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; font-size: 17px; }
.ci-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 600; margin-bottom: 3px; }
.ci-val   { color: var(--text); font-size: 14px; text-decoration: none; }
.ci-val:hover { color: var(--gold); }
.contact-form    { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.cf-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:560px) { .cf-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; }
.form-control { background: rgba(255,255,255,.04); border: 1px solid var(--border); color: var(--text); padding: 11px 14px; border-radius: 9px; font-size: 14px; font-family: 'Outfit', sans-serif; transition: border-color .15s; width: 100%; }
.form-control:focus { outline: none; border-color: var(--gold); background: rgba(240,165,0,.04); }
.form-control::placeholder { color: rgba(255,255,255,.2); }
textarea.form-control { resize: vertical; }
#contactStatus { padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 12px; }

/* ── Footer ──────────────────────────────────── */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; padding-bottom: 48px; }
@media(max-width:768px) { .footer-inner { grid-template-columns: 1fr; gap: 36px; } }
.footer-brand   { max-width: 280px; }
.footer-tagline { color: var(--muted); font-size: 13px; line-height: 1.7; margin-top: 10px; }
.footer-links-group { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col     { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 4px; }
.footer-col a   { color: var(--muted); text-decoration: none; font-size: 13px; transition: color .15s; }
.footer-col a:hover { color: white; }
.footer-bottom  { border-top: 1px solid var(--border); padding: 20px 0; font-size: 12px; color: rgba(255,255,255,.25); }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ── Inner hero ──────────────────────────────── */
.inner-hero { padding: 72px 0 48px; background: linear-gradient(180deg, rgba(176,107,255,.06) 0%, transparent 100%); border-bottom: 1px solid var(--border); }
.inner-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 56px); font-weight: 900; margin-bottom: 12px; }
.inner-hero-sub   { color: var(--muted); font-size: 17px; max-width: 500px; }

/* ── Downloads page ──────────────────────────── */
.dl-page { padding: 48px 0 80px; }
.dl-section { margin-bottom: 60px; }
.dl-section-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 900; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.app-release-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.arc-left { display: flex; gap: 20px; align-items: flex-start; flex: 1; }
.arc-logo  { width: 56px; height: 56px; background: var(--gold); color: #000; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 28px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.arc-name  { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.arc-ver   { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.arc-changes { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 6px; max-width: 440px; }
.arc-meta  { font-size: 12px; color: rgba(255,255,255,.3); }
.arc-right { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.older-releases { margin-top: 14px; }
.older-releases summary { color: var(--muted); font-size: 13px; cursor: pointer; padding: 8px 0; }
.older-row { display: flex; gap: 20px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; flex-wrap: wrap; }
.dl-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.dl-card  { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; gap: 12px; transition: border-color .15s; }
.dl-card:hover { border-color: rgba(240,165,0,.25); }
.dlc-top  { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.dlc-title{ font-weight: 600; font-size: 15px; }
.dlc-desc { color: var(--muted); font-size: 13px; line-height: 1.6; flex: 1; }
.dlc-meta { display: flex; gap: 12px; font-size: 11px; color: rgba(255,255,255,.3); flex-wrap: wrap; }
.dlc-btn  { display: inline-flex; align-items: center; gap: 7px; background: rgba(240,165,0,.1); border: 1px solid rgba(240,165,0,.3); color: var(--gold); padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: background .15s; cursor: pointer; width: fit-content; }
.dlc-btn:hover { background: rgba(240,165,0,.2); }
.dl-empty-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px; text-align: center; color: var(--muted); }
.dl-empty-card h3 { font-size: 18px; color: white; margin-bottom: 8px; }
.cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.cat-tab  { padding: 7px 16px; border-radius: 50px; border: 1px solid var(--border); background: none; color: var(--muted); font-size: 13px; cursor: pointer; transition: all .15s; font-family: 'Outfit', sans-serif; }
.cat-tab:hover, .cat-tab.active { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.plugins-dl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; }
.plugin-dl-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; gap: 16px; align-items: flex-start; transition: border-color .15s; }
.plugin-dl-card:hover { border-color: rgba(240,165,0,.2); }
.pdc-icon { font-size: 30px; flex-shrink: 0; }
.pdc-body { flex: 1; min-width: 0; }
.pdc-header { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; flex-wrap: wrap; }
.pdc-title  { font-weight: 700; font-size: 15px; }
.pdc-featured { font-size: 10px; font-weight: 700; color: var(--gold); background: rgba(240,165,0,.1); padding: 2px 8px; border-radius: 4px; }
.pdc-meta   { font-size: 11px; color: rgba(255,255,255,.3); margin-bottom: 8px; }
.pdc-desc   { font-size: 13px; color: var(--muted); line-height: 1.6; }
.pdc-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }

/* ── Docs ─────────────────────────────────────── */
.docs-layout  { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 64px); }
@media(max-width:900px) { .docs-layout { grid-template-columns: 1fr; } .docs-sidebar { display: none; } }
.docs-sidebar { background: var(--surface); border-right: 1px solid var(--border); padding: 28px 20px; position: sticky; top: 64px; height: calc(100vh - 64px); overflow-y: auto; }
.docs-search-wrap { position: relative; margin-bottom: 20px; }
.docs-search-icon { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; color: var(--muted); }
.docs-search  { width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--border); color: var(--text); padding: 9px 12px 9px 32px; border-radius: 8px; font-size: 13px; font-family: 'Outfit', sans-serif; }
.docs-search:focus { outline: none; border-color: var(--gold); }
.docs-nav-section { margin-bottom: 20px; }
.docs-nav-heading { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 6px; padding-left: 6px; }
.docs-nav-link { display: block; padding: 7px 10px; border-radius: 7px; color: var(--muted); text-decoration: none; font-size: 13px; transition: all .15s; margin-bottom: 2px; }
.docs-nav-link:hover { background: rgba(255,255,255,.05); color: white; }
.docs-nav-link.active { background: var(--gold-glow); color: var(--gold); font-weight: 600; }
.docs-content   { padding: 40px 48px 80px; max-width: 820px; }
@media(max-width:768px) { .docs-content { padding: 28px 20px 60px; } }
.docs-breadcrumb { display: flex; gap: 6px; align-items: center; font-size: 12px; color: var(--muted); margin-bottom: 32px; flex-wrap: wrap; }
.docs-breadcrumb a { color: var(--muted); text-decoration: none; }
.docs-breadcrumb a:hover { color: var(--gold); }
.docs-article { line-height: 1.8; }
.doc-h1 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; margin-bottom: 16px; }
.doc-h2 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin: 36px 0 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.doc-h3 { font-size: 17px; font-weight: 700; margin: 28px 0 10px; }
.doc-p  { color: rgba(232,232,242,.75); margin-bottom: 18px; line-height: 1.8; }
.doc-link { color: var(--gold); text-decoration: none; }
.doc-link:hover { text-decoration: underline; }
.doc-list { color: rgba(232,232,242,.75); padding-left: 20px; margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.doc-table { width: 100%; border-collapse: collapse; margin: 20px 0 24px; font-size: 14px; }
.doc-table th { background: rgba(255,255,255,.05); text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: 12px; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); }
.doc-table td { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,.04); color: rgba(232,232,242,.75); }
.code-block { background: rgba(0,0,0,.5); border: 1px solid var(--border); border-radius: 8px; padding: 18px 20px; overflow-x: auto; margin: 18px 0; }
.code-block code { font-family: 'Courier New', monospace; font-size: 13px; color: #e8e8f2; line-height: 1.7; white-space: pre; }
.inline-code { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); padding: 2px 7px; border-radius: 5px; font-family: 'Courier New', monospace; font-size: 13px; color: var(--gold); }
.docs-article-nav { display: flex; justify-content: space-between; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.docs-nav-btn { padding: 12px 18px; border: 1px solid var(--border); border-radius: 9px; color: var(--muted); text-decoration: none; font-size: 13px; transition: all .15s; max-width: 260px; }
.docs-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
.docs-nav-next { text-align: right; }
.docs-home-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 16px; }
.docs-home-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-decoration: none; transition: border-color .15s; }
.docs-home-card:hover { border-color: rgba(240,165,0,.3); }
.dhc-title   { font-size: 16px; font-weight: 700; color: white; margin-bottom: 4px; }
.dhc-count   { font-size: 12px; color: var(--gold); margin-bottom: 14px; }
.dhc-articles{ display: flex; flex-direction: column; gap: 5px; }
.dhc-art     { font-size: 13px; color: var(--muted); }

/* ── Scrollbar ───────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.2); }
