/*
Theme Name: AKTrader.
Template: hello-elementor
Version: 2.0
*/

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
*, *::before, *::after { outline: none !important; }

:root {
  --bg:        #050505;
  --surface:   #111111;
  --surface2:  #1a1a1a;
  --border:    rgba(255,255,255,0.09);
  --text:      #ffffff;
  --muted:     #777777;
  --muted2:    #444444;
  --accent:    #b5ff6d;
  --accent-d:  #9fe050;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --max-w:     1160px;
  --nav-h:     68px;
}

html { scroll-behavior: smooth; }

body {
  isolation: isolate;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}

h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ─── Announce Bar ─── */
.announce-bar {
  display: none;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.announce-bar a { color: var(--text); border-bottom: 1px solid var(--border); transition: border-color .2s; }
.announce-bar a:hover { border-color: var(--text); }

/* ─── Navigation ─── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(5,5,5,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.site-nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 24px; }
.nav-logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: var(--text) !important;
}
.nav-logo:hover { color: var(--text) !important; }
.nav-logo-plus { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 13px;
  color: var(--muted);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: color .2s, border-color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--accent); border-color: rgba(181,255,109,0.35); background: rgba(181,255,109,0.06); }
.nav-links a.active { color: var(--text); background: var(--surface); border-color: var(--border); }
.nav-cta {
  background: var(--accent);
  color: #000;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: box-shadow .2s, transform .15s;
  display: flex; align-items: center; gap: 7px;
  flex-shrink: 0;
  animation: tg-glow 2.4s ease-in-out infinite;
}
.nav-cta:hover { transform: translateY(-1px); animation: none; box-shadow: 0 0 18px 6px rgba(181,255,109,0.55); }

/* ─── Hero ─── */
.hero {
  padding: 80px 0 72px;
  position: relative;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-eyebrow-mobile { display: none; }
.hero-eyebrow-mobile a.eyebrow-pill { text-decoration: none; }
.hero-eyebrow-desktop a.eyebrow-pill { text-decoration: none; cursor: pointer; }
.hero-eyebrow-mobile a.eyebrow-pill.active { color: var(--accent); }
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  cursor: default;
  transition: color .2s, border-color .2s;
}
.eyebrow-pill:hover, .eyebrow-pill.active { color: var(--accent); border-color: rgba(181,255,109,0.35); }
.eyebrow-pill .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.hero-heading {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 20px;
}
.hero-type-wrap {
  display: block;
  height: 2.05em;
  overflow: hidden;
}
.hero-tagline {
  display: block;
  margin-top: 10px;
  font-style: italic;
  font-family: 'Noto Serif SC', Georgia, serif;
  font-weight: 400;
  color: var(--muted);
}
.hero-heading em {
  font-style: italic;
  font-family: 'Noto Serif SC', Georgia, serif;
  font-weight: 400;
  color: var(--muted);
}
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  transition: opacity .2s, transform .15s, background .2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-white { background: var(--text); color: var(--bg); }
.btn-white:hover { opacity: .88; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(181,255,109,0.06); }
.btn-accent { background: var(--accent); color: #000; }
.btn-accent:hover { background: var(--accent-d); }

/* ─── Section commons ─── */
.section { padding: 72px 0; }
.section-alt { background: var(--surface); }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
}
.section-title-group { display: flex; flex-direction: column; gap: 8px; padding-left: 14px; border-left: 3px solid var(--accent); }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
}
.section-title {
  font-family: 'Noto Serif SC', Georgia, serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.section-title .count {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.75em;
  margin-left: 4px;
}
.see-all {
  font-size: 13px;
  color: var(--accent) !important;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: border-color .2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.see-all:hover { color: var(--accent) !important; border-color: var(--accent); }

/* ─── Divider Line ─── */
.section-header .line {
  display: none;
}

/* ─── Product Grid ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.product-grid-3 { grid-template-columns: repeat(3, 1fr); }
.product-grid-2 { grid-template-columns: repeat(2, 1fr); }

.product-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .5s cubic-bezier(.34,1.56,.64,1), background .3s, box-shadow .4s;
  cursor: pointer;
}
.product-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(181,255,109,0.3);
  transform: translateY(-8px) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(181,255,109,0.1);
}
.product-card-media {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
  transition: transform .4s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.04); }
.product-card-media .product-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--surface2) 0%, #1e1e2e 100%);
}
.product-placeholder-icon { font-size: 36px; opacity: 0.5; }
.product-placeholder-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  padding: 0 20px;
  letter-spacing: -0.01em;
}
.product-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card-cat {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-card-title { font-size: 17px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.3; transition: color .2s; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin-top: 2px; flex: 1; }
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.product-price-pill {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
}
.product-cta-arrow {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s, gap .2s;
}
.product-card:hover .product-cta-arrow { color: var(--text); gap: 8px; }
.product-card:hover .product-card-title { color: var(--accent); }

/* ─── Category Filter Tabs ─── */
.filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  margin-bottom: 28px;
  scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.filter-tab:hover, .filter-tab.active {
  color: var(--accent);
  background: rgba(181,255,109,0.06);
  border-color: rgba(181,255,109,0.35);
}

/* ─── Platform Ticker ─── */
.platform-ticker-wrap {
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: hidden;
}
.platform-ticker-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
  white-space: nowrap;
  padding-left: 28px;
  flex-shrink: 0;
}
.platform-ticker-mask {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.platform-ticker-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.platform-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  cursor: default;
  white-space: nowrap;
}
.platform-logo-img {
  height: 22px;
  width: auto;
  opacity: 0.55;
  display: block;
}
.plat-text-logo {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.55);
}
.plat-text-logo strong { font-weight: 700; }

/* ─── Single Product Page ─── */
.product-detail { padding: 56px 0 80px; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.product-detail-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-media img { width: 100%; height: 100%; object-fit: contain; background: #111; }
.product-detail-content { display: flex; flex-direction: column; gap: 20px; }
.product-detail-cat {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-detail-title { font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: -0.035em; }
.product-detail-desc { font-size: 15px; color: var(--muted); line-height: 1.7; }
.product-features { display: flex; flex-direction: column; gap: 10px; }
.product-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.product-feature::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.product-detail-price { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; }
.product-detail-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── Blog ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .3s, transform .5s cubic-bezier(.34,1.56,.64,1), box-shadow .4s;
}
.blog-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.blog-card-media { aspect-ratio: 16/9; background: var(--surface2); overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; }
.blog-card-cat { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.blog-card-title { font-size: 16px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.35; }
.blog-card-excerpt { font-size: 13px; color: var(--muted); line-height: 1.55; }
.blog-card-date { font-size: 12px; color: var(--muted2); margin-top: 4px; }

/* Single blog post */
.post-content { max-width: 680px; margin: 0 auto; padding: 56px 28px 80px; }
.post-header { margin-bottom: 40px; display: flex; flex-direction: column; gap: 14px; }
.post-cat { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.post-title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.1; }
.post-meta { font-size: 13px; color: var(--muted); }
.post-body { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.85); }
.post-body h2 { font-size: 22px; font-weight: 600; margin: 36px 0 12px; letter-spacing: -0.02em; }
.post-body h3 { font-size: 18px; font-weight: 600; margin: 28px 0 10px; }
.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol { margin: 0 0 20px 20px; }
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--text); border-bottom: 1px solid var(--border); transition: border-color .2s; }
.post-body a:hover { border-color: var(--text); }
.post-body img { border-radius: var(--radius); margin: 24px 0; }

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--accent);
  color: #000;
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 0 0 72px;
}
.cta-banner-text h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; letter-spacing: -0.03em; color: #000; }
.cta-banner-text p { font-size: 15px; color: rgba(0,0,0,0.6); margin-top: 8px; }
.btn-dark { background: #000; color: var(--accent) !important; }
.btn-dark:hover { background: #1a1a1a; color: var(--accent) !important; box-shadow: 0 0 18px 4px rgba(181,255,109,0.35); }

/* ─── Footer ─── */
.site-footer {
  padding: 56px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  margin-bottom: 28px;
}
.footer-brand-logo { font-size: 15px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 12px; }
.footer-brand-logo .plus { color: var(--accent); }
.footer-brand-desc { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 260px; }
.footer-col-title { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col-links { display: flex; flex-direction: column; gap: 11px; }
.footer-col-links a { font-size: 13px; color: var(--muted); transition: color .2s; }
.footer-col-links a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted2); }

/* ─── Mouse-follow grid (canvas, injected by JS) ─── */
#grid-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* ─── Hero text loop ─── */
#heroLoop {
  display: inline-block;
  vertical-align: baseline;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  min-width: 2px;
  transition: opacity 0.32s ease, transform 0.32s ease;
}
#heroLoop.loop-out {
  opacity: 0;
  transform: translateY(-22px);
}
#heroLoop.loop-in {
  opacity: 0;
  transform: translateY(22px);
  transition: none;
}

/* ─── Scroll animation ─── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 40px 32px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { font-size: 12px; padding: 7px 12px; gap: 5px; }
  .nav-cta svg { width: 11px; height: 11px; }
  .site-nav .container { gap: 10px; }
  .site-nav { background: rgba(5,5,5,0.97); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .hero-eyebrow-desktop { display: none; }
  .hero-eyebrow-mobile { display: flex; }
  .product-grid { grid-template-columns: 1fr; }
  .product-grid-3 { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .stats-row { gap: 28px; }
  .hero-heading { font-size: 38px; }
}

/* ── Language toggle ── */
button.lang-toggle-btn,
.site-nav button.lang-toggle-btn {
  font-size: 12px !important; font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  padding: 5px 14px !important; border-radius: 999px !important;
  border: 1.5px solid rgba(255,255,255,0.28) !important;
  background: transparent !important; background-color: transparent !important;
  color: rgba(255,255,255,0.7) !important;
  box-shadow: none !important; outline: none !important;
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
  font-family: inherit !important; line-height: 1 !important;
  text-transform: none !important; text-decoration: none !important;
}
button.lang-toggle-btn:hover,
button.lang-toggle-btn:focus,
.site-nav button.lang-toggle-btn:hover,
button.lang-toggle-btn.zh-active {
  border-color: #b5ff6d !important; color: #b5ff6d !important;
  background: transparent !important; background-color: transparent !important;
  box-shadow: none !important;
}

/* Text selection */
::selection { background: #b5ff6d; color: #000; }
::-moz-selection { background: #b5ff6d; color: #000; }

/* ── Telegram glow breathing ── */
@keyframes tg-glow {
  0%, 100% { box-shadow: 0 0 8px 2px rgba(181,255,109,0.25); }
  50%       { box-shadow: 0 0 22px 7px rgba(181,255,109,0.6); }
}
.sp-btn-primary { animation: tg-glow 2.4s ease-in-out infinite; }
.sp-btn-primary:hover { animation: none; box-shadow: 0 0 22px 8px rgba(181,255,109,0.65); }

/* ── Live Activity Widget ── */
#live-widget {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.lw-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15,15,15,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(181,255,109,0.22);
  border-radius: 12px;
  padding: 8px 13px;
  min-width: 260px;
  max-width: 320px;
  pointer-events: auto;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(181,255,109,0.08);
}
.lw-toast.show {
  opacity: 1;
  transform: translateX(0);
}
.lw-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(181,255,109,0.12);
  border: 1px solid rgba(181,255,109,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 16px;
}
.lw-text {
  flex: 1;
  min-width: 0;
}
.lw-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1px;
}
.lw-msg {
  font-size: 12px;
  color: var(--text);
  line-height: 1.35;
}
.lw-time {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}
.lw-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: lw-pulse 1.8s ease-in-out infinite;
}
@keyframes lw-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}
