/* ============================================================
   PSEO AI TOOLS PLATFORM — MAIN STYLESHEET
   Dark editorial / terminal-meets-magazine aesthetic
   ============================================================ */

:root {
  --bg:         #080c14;
  --bg2:        #0d1320;
  --bg3:        #111827;
  --border:     #1e2d45;
  --border2:    #243352;
  --text:       #e2e8f0;
  --text2:      #94a3b8;
  --text3:      #64748b;
  --accent:     #38bdf8;
  --accent2:    #818cf8;
  --accent3:    #34d399;
  --red:        #f43f5e;
  --yellow:     #fbbf24;
  --card-bg:    #0d1320;
  --card-hover: #131e30;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,.6);
  --shadow-lg:  0 8px 48px rgba(0,0,0,.8);
  --font-head:  'Syne', sans-serif;
  --font-body:  'Space Grotesk', sans-serif;
  --font-mono:  'JetBrains Mono', monospace;
  --nav-h:      64px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; cursor: pointer !important; }
a:hover { color: #7dd3fc; }

img { max-width: 100%; display: block; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,12,20,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); font-family: var(--font-head);
  font-weight: 800; font-size: 1.25rem; text-decoration: none;
}
.logo-icon { font-size: 1.4rem; }
.logo-text { background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 4px; margin-left: 8px; }
.nav-link {
  color: var(--text2); padding: 6px 14px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 500; transition: all .2s;
}
.nav-link:hover { color: var(--text); background: var(--bg3); }
.nav-search { margin-left: auto; }
.search-form { display: flex; gap: 6px; }
.search-input {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); padding: 8px 16px; border-radius: 99px;
  font-family: var(--font-body); font-size: .875rem; width: 220px;
  transition: all .2s; outline: none;
}
.search-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(56,189,248,.1); }
.search-btn {
  background: var(--bg3); border: 1px solid var(--border); color: var(--text2);
  padding: 8px 14px; border-radius: 99px; cursor: pointer; transition: all .2s;
}
.search-btn:hover { background: var(--accent); color: #000; border-color: var(--accent); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text2); border-radius: 2px; transition: .3s; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.page-wrap { padding: 56px 0 80px; }
.narrow { max-width: 860px; margin: 0 auto; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 0 72px; text-align: center;
}
.hero-glow {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(56,189,248,.12) 0%, transparent 70%),
              radial-gradient(ellipse 40% 30% at 80% 50%, rgba(129,140,248,.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .04;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(56,189,248,.1); border: 1px solid rgba(56,189,248,.25);
  color: var(--accent); padding: 6px 16px; border-radius: 99px;
  font-size: .8rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 24px;
}
.badge-pulse { width: 7px; height: 7px; background: var(--accent3); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:.5; transform:scale(.8); } }
.hero h1 {
  font-family: var(--font-head); font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 1.15rem; color: var(--text2); max-width: 580px; margin: 0 auto 36px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; justify-content: center;
  margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border);
}
.hero-stat { text-align: center; }
.hero-stat .num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--accent); }
.hero-stat .lbl { font-size: .8rem; color: var(--text3); text-transform: uppercase; letter-spacing: .08em; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 600; font-size: .9rem;
  cursor: pointer; border: none; transition: all .2s; text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: #000;
}
.btn-primary:hover { background: #7dd3fc; color: #000; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(56,189,248,.3); }
.btn-outline {
  background: transparent; border: 1px solid var(--border2); color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(56,189,248,.05); }
.btn-sm { padding: 8px 16px; font-size: .8rem; }

/* ── SECTION HEADER ─────────────────────────────────────── */
.section-header { margin-bottom: 32px; }
.section-header h2 { font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; margin-bottom: 6px; }
.section-header p { color: var(--text2); }
.section-header .see-all { font-size: .85rem; color: var(--accent); }

/* ── CARDS ───────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }

.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: all .25s; position: relative; overflow: hidden;
}
.card::before {
  content:''; position:absolute; inset:0; opacity:0;
  background: radial-gradient(ellipse at top left, rgba(56,189,248,.06), transparent 60%);
  transition: opacity .25s;
}
.card:hover { border-color: var(--border2); transform: translateY(-2px); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }

.tool-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--bg3), var(--border));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px; border: 1px solid var(--border2);
}
.tool-card-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.tool-card-tagline { color: var(--text2); font-size: .85rem; margin-bottom: 12px; line-height: 1.5; }
.tool-card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.tag {
  display: inline-block; padding: 3px 10px; border-radius: 99px;
  font-size: .75rem; font-weight: 600; letter-spacing: .02em;
}
.tag-free    { background: rgba(52,211,153,.1); color: var(--accent3); border: 1px solid rgba(52,211,153,.2); }
.tag-paid    { background: rgba(251,191,36,.1);  color: var(--yellow);  border: 1px solid rgba(251,191,36,.2); }
.tag-freemium{ background: rgba(129,140,248,.1); color: var(--accent2); border: 1px solid rgba(129,140,248,.2); }
.tag-enterprise{ background: rgba(244,63,94,.1); color: var(--red);     border: 1px solid rgba(244,63,94,.2); }

.rating { display: flex; align-items: center; gap: 4px; font-size: .8rem; color: var(--yellow); }

/* ── CATEGORY CARDS ─────────────────────────────────────── */
.cat-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  display: flex; align-items: center; gap: 16px;
  transition: all .25s; text-decoration: none; color: var(--text);
}
.cat-card:hover { border-color: var(--border2); transform: translateY(-2px); box-shadow: var(--shadow); color: var(--text); }
.cat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.cat-name { font-weight: 600; font-size: .95rem; }
.cat-count { font-size: .78rem; color: var(--text3); margin-top: 2px; }

/* ── COMPARISON CARD ─────────────────────────────────────── */
.comp-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: all .25s;
}
.comp-card:hover { border-color: var(--border2); box-shadow: var(--shadow); }
.comp-vs { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.comp-tool-a, .comp-tool-b { font-weight: 700; font-size: .95rem; }
.comp-vs-badge {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text3); padding: 2px 10px; border-radius: 99px; font-size: .75rem; font-weight: 700;
}
.comp-title { font-size: .875rem; color: var(--text2); margin-bottom: 16px; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border); margin-bottom: 48px;
}
.page-hero .breadcrumb { font-size: .8rem; color: var(--text3); margin-bottom: 12px; }
.page-hero .breadcrumb a { color: var(--text3); }
.page-hero .breadcrumb a:hover { color: var(--accent); }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: var(--text2); font-size: 1.05rem; max-width: 680px; }

/* ── TOOL DETAIL ─────────────────────────────────────────── */
.tool-detail { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.tool-detail-main {}
.tool-detail-sidebar {}

.tool-header { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 28px; }
.tool-header-icon {
  width: 72px; height: 72px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--bg3), var(--border));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; border: 1px solid var(--border2);
}
.tool-header-info h1 { font-family: var(--font-head); font-size: 2rem; font-weight: 800; margin-bottom: 6px; }
.tool-header-meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

.prose h2 { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; margin: 32px 0 12px; }
.prose h3 { font-size: 1.1rem; font-weight: 600; margin: 24px 0 10px; }
.prose p  { color: var(--text2); margin-bottom: 16px; }
.prose ul { color: var(--text2); padding-left: 20px; margin-bottom: 16px; }
.prose ul li { margin-bottom: 6px; }

.sidebar-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; margin-bottom: 20px;
}
.sidebar-card h3 { font-family: var(--font-head); font-weight: 700; margin-bottom: 14px; font-size: 1rem; }
.info-list { list-style: none; }
.info-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .875rem; }
.info-list li:last-child { border-bottom: none; }
.info-list .lbl { color: var(--text3); }
.info-list .val { font-weight: 500; }

.feature-list { list-style: none; }
.feature-list li { padding: 6px 0; display: flex; gap: 8px; font-size: .875rem; color: var(--text2); }
.feature-list li::before { content: '✓'; color: var(--accent3); font-weight: 700; flex-shrink: 0; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.pros, .cons { background: var(--bg3); border-radius: var(--radius-sm); padding: 16px; }
.pros h4 { color: var(--accent3); font-size: .85rem; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .05em; }
.cons h4 { color: var(--red); font-size: .85rem; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .05em; }
.pros ul, .cons ul { list-style: none; }
.pros ul li, .cons ul li { font-size: .85rem; color: var(--text2); padding: 4px 0; padding-left: 14px; position: relative; }
.pros ul li::before { content: '+'; position: absolute; left: 0; color: var(--accent3); }
.cons ul li::before { content: '–'; position: absolute; left: 0; color: var(--red); }

/* ── COMPARISON TABLE ─────────────────────────────────────── */
.comp-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.comp-table th {
  background: var(--bg3); padding: 14px 16px; text-align: left;
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text3);
  border-bottom: 2px solid var(--border2);
}
.comp-table td {
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  font-size: .875rem; color: var(--text2); vertical-align: top;
}
.comp-table tr:hover td { background: var(--bg3); }
.comp-table .feature-name { color: var(--text); font-weight: 500; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  padding: 18px 0; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-weight: 600; font-size: .95rem;
}
.faq-q:hover { color: var(--accent); }
.faq-toggle { color: var(--text3); font-size: 1.2rem; transition: transform .25s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); color: var(--accent); }
.faq-a { color: var(--text2); font-size: .9rem; padding-bottom: 18px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── GUIDE / STEPS ───────────────────────────────────────── */
.step-item { display: flex; gap: 20px; margin-bottom: 32px; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000; font-weight: 800; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
}
.step-body h3 { font-family: var(--font-head); font-weight: 700; margin-bottom: 8px; }
.step-body p { color: var(--text2); font-size: .9rem; }

/* ── SEARCH RESULTS ─────────────────────────────────────── */
.search-results { margin-top: 32px; }
.result-group { margin-bottom: 40px; }
.result-group h3 { font-family: var(--font-head); font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text3); margin-bottom: 16px; border-bottom: 1px solid var(--border); padding-bottom: 8px; }

/* ── SCHEMA / RATING DISPLAY ─────────────────────────────── */
.rating-stars { display: inline-flex; gap: 2px; }
.star-filled { color: var(--yellow); }
.star-empty  { color: var(--border2); }
.rating-num  { font-family: var(--font-mono); font-size: .85rem; color: var(--text2); }

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb { display: flex; gap: 6px; align-items: center; font-size: .8rem; color: var(--text3); }
.breadcrumb a { color: var(--text3); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border2); }

/* ── PILLS / TAGS ROW ────────────────────────────────────── */
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0; }
.pill {
  padding: 5px 14px; border-radius: 99px; font-size: .8rem;
  background: var(--bg3); border: 1px solid var(--border); color: var(--text2);
  transition: all .2s; cursor: default;
}
a.pill, a.pill-link { cursor: pointer !important; }
.pill-link:hover { border-color: var(--accent); color: var(--accent); }
.pill-int-linked {
  padding: 5px 14px; border-radius: 99px; font-size: .8rem;
  background: rgba(99,102,241,.12); border: 1px solid rgba(99,102,241,.4);
  color: #a5b4fc; transition: all .2s; cursor: pointer; text-decoration: none;
}
.pill-int-linked:hover { background: rgba(99,102,241,.22); color: #c7d2fe; }

/* ── LAST UPDATED BADGE ───────────────────────────────────── */
.last-updated-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .78rem; color: var(--text3); font-style: italic;
  padding: 3px 10px; border-radius: 99px;
  background: var(--bg3); border: 1px solid var(--border);
  white-space: nowrap;
}
.last-updated-badge time { font-style: normal; font-weight: 500; color: var(--text2); }

/* ── SECTION DIVIDERS ─────────────────────────────────────── */
.section { padding: 56px 0; }
.section-alt { background: var(--bg2); }
.divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* ── TOOL STRIP ──────────────────────────────────────────── */
.ticker {
  background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.ticker-item {
  display: block; text-align: center; padding: 11px 8px;
  font-size: .8rem; color: var(--text3); text-decoration: none;
  transition: color .2s; white-space: nowrap;
  border-right: 1px solid var(--border);
}
.ticker-item:last-child { border-right: none; }
.ticker-item:hover { color: var(--accent); }
.ticker-item span { color: var(--accent); font-size: .75rem; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; }
.footer-desc { color: var(--text3); font-size: .875rem; line-height: 1.6; margin-bottom: 16px; }
.footer-stats { display: flex; gap: 16px; }
.footer-stats span { font-size: .78rem; color: var(--text3); background: var(--bg3); padding: 4px 10px; border-radius: 99px; border: 1px solid var(--border); }
.footer-col h4 { font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text3); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text2); font-size: .875rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--accent3); margin-top: 20px;
}
.badge-dot { width: 6px; height: 6px; background: var(--accent3); border-radius: 50%; animation: pulse 2s infinite; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 24px 24px 0;
  border-top: 1px solid var(--border);
  font-size: .8rem; color: var(--text3); text-align: center;
}

/* ── ALERT / NOTICE ─────────────────────────────────────── */
.alert { padding: 14px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; font-size: .875rem; }
.alert-info { background: rgba(56,189,248,.08); border: 1px solid rgba(56,189,248,.2); color: var(--accent); }
.alert-success { background: rgba(52,211,153,.08); border: 1px solid rgba(52,211,153,.2); color: var(--accent3); }

/* ── PAGINATION ─────────────────────────────────────────── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.page-btn {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text2); font-size: .875rem; cursor: pointer; transition: all .2s;
}
.page-btn:hover, .page-btn.active { background: var(--accent); color: #000; border-color: var(--accent); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .tool-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 16px 24px; }
  .nav-search { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}

/* ── UTILITIES ───────────────────────────────────────────── */
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text2); }
.text-small   { font-size: .875rem; }
.text-xs      { font-size: .78rem; }
.text-mono    { font-family: var(--font-mono); }
.font-head    { font-family: var(--font-head); font-weight: 800; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex  { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.w-full { width: 100%; }

/* ── LOADING ─────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--bg3) 25%, var(--border) 50%, var(--bg3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
}
@keyframes shimmer { 0%{background-position:200% 0;} 100%{background-position:-200% 0;} }
