/* ================================================
   ETHEREA MX — color & theme override
   Reuses the same CSS variable names so all
   existing components automatically go blue.
   Load AFTER styles.css.
   ================================================ */

:root {
  --bg:           #06111e;
  --bg-2:         #0b1c2e;
  --bg-3:         #0e2440;
  --bg-4:         #132f52;
  --ink:          #edf4fb;
  --ink-dim:      #7fafc8;
  --ink-soft:     #4e7a9a;
  --ink-muted:    #2f5470;

  /* primary accent  ← Etherea blue (replaces brand red) */
  --red:          #1a82cc;
  --red-deep:     #0c5299;

  /* secondary accent ← Etherea cyan (replaces laser amber) */
  --amber:        #45b6e8;
  --amber-soft:   #8dd5f0;

  --rule:         rgba(100,170,230,.10);
  --rule-strong:  rgba(100,170,230,.20);
}

/* ── Hero background ──────────────────────────── */
.hero { background: #050f1c; }

.hero-glow-1 {
  background: radial-gradient(circle at 30% 30%,
    #2089cc 0%, #177acb 30%, #1053a0 55%, transparent 75%);
  opacity: .45;
}
.hero-glow-2 {
  background: radial-gradient(circle,
    #0d3d6e 0%, transparent 70%);
  opacity: .4;
}

/* ── Gradient text (h1 accent) ───────────────── */
.ht-em {
  background: linear-gradient(105deg, #2089cc 0%, #45b6e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Hero device video — real background, no screen blend ── */
.hero-device-video {
  mix-blend-mode: normal;
  border-radius: 10px;
  border: 1px solid rgba(32, 137, 204, .25);
  box-shadow:
    0 0 60px rgba(32,137,204,.2),
    0 40px 80px rgba(0,0,0,.65);
  object-fit: cover;
  max-height: 62vh;
  aspect-ratio: 9 / 16;
  height: auto;
  width: auto;
}

/* ── Hero beam glow → blue ───────────────────── */
.hero-device-beam {
  background: linear-gradient(to bottom, transparent, var(--amber), transparent);
}

/* ── Cinema section gradient overlay ─────────── */
.cinema-video-grade {
  background: linear-gradient(
    to right,
    rgba(6,17,30,.92) 0%,
    rgba(6,17,30,.6) 40%,
    transparent 70%
  );
}

/* ── Invest price panel → blue gradient ─────── */
.invest-card-price {
  background: linear-gradient(160deg, #1a82cc 0%, #0c5299 100%);
}

/* ── Promise section glow ─────────────────────── */
.promise::before {
  background: radial-gradient(circle, rgba(26,130,204,.2) 0%, transparent 60%);
}

/* ── Final CTA section ───────────────────────── */
.finalcta {
  background: linear-gradient(180deg, #050f1c 0%, #071524 100%);
}

/* ── ::selection highlight ───────────────────── */
::selection { background: #1a82cc; color: #fff; }

/* ═══════════════════════════════════════════════
   PONTEIRAS SECTION  (new, Etherea-exclusive)
   ═══════════════════════════════════════════════ */
.ponteiras {
  background: var(--bg-2);
  padding: clamp(100px, 14vw, 180px) var(--pad);
  position: relative;
  overflow: hidden;
}
.ponteiras::before {
  content: "";
  position: absolute;
  right: -10vw; top: 10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(26,130,204,.12) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.ponteiras-inner { max-width: var(--maxw); margin: 0 auto; position: relative; }

.pont-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}

.pont-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--pont-color, var(--red));
  padding: 28px 22px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, background .3s;
  cursor: default;
}
.pont-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
    color-mix(in srgb, var(--pont-color, #1a82cc) 12%, transparent),
    transparent 60%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.pont-card:hover {
  transform: translateY(-6px);
  background: var(--bg-3);
  box-shadow:
    0 20px 60px rgba(0,0,0,.35),
    0 0 40px -12px var(--pont-color, rgba(26,130,204,.4));
}
.pont-card:hover::before { opacity: 1; }

.pont-num {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .2em;
  color: var(--pont-color, var(--red));
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pont-name {
  font-family: var(--f-display);
  font-size: 20px; line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 4px;
  color: var(--ink);
}
.pont-tech {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .12em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.pont-desc {
  font-size: 13px; line-height: 1.55;
  color: var(--ink-dim);
  margin: 0 0 16px;
  min-height: 56px;
}
.pont-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.pont-tags span {
  font-family: var(--f-mono);
  font-size: 9px; letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border: 1px solid color-mix(in srgb, var(--pont-color, #1a82cc) 40%, transparent);
  border-radius: 999px;
  color: var(--pont-color, var(--ink-dim));
  opacity: .9;
}

/* Per-ponteira wavelength color tokens */
.pont-ipl    { --pont-color: #f0a820; }  /* IPL — polychromatic gold  */
.pont-1064   { --pont-color: #7c50e8; }  /* Nd:YAG 1064 — violet      */
.pont-1340   { --pont-color: #b040c8; }  /* 1340 nm — magenta-violet  */
.pont-1540   { --pont-color: #d03890; }  /* Er:Glass 1540 — fuchsia   */
.pont-2940   { --pont-color: #e03820; }  /* Er:YAG 2940 — ablative red*/
.pont-qs     { --pont-color: #22c06a; }  /* Q-switched 532+1064 — green */
.pont-ir     { --pont-color: #e06820; }  /* intenseIR — deep orange   */
.pont-pico   { --pont-color: #20c8e8; }  /* handPICO — cyan           */

@media (max-width: 1100px) {
  .pont-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pont-grid { grid-template-columns: 1fr; }
}


/* PONTEIRAS INTERACTIVE GALLERY */
.pont-gallery { margin-top: 60px; }
.pont-tabs {
  display: flex;
  border-bottom: 1px solid var(--rule-strong);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pont-tabs::-webkit-scrollbar { display: none; }
.pont-tab {
  flex: 1 0 auto;
  min-width: 148px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 20px 24px 17px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: background .2s;
}
.pont-tab:hover { background: rgba(255,255,255,.03); }
.pont-tab.is-active { border-bottom-color: var(--tc, var(--red)); }
.pont-tab.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--tc, var(--red)) 9%, transparent) 0%, transparent 100%);
  pointer-events: none;
}
.pt-num {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .2em;
  color: var(--tc, var(--red));
  font-weight: 700;
  text-transform: uppercase;
}
.pt-name {
  font-family: var(--f-display);
  font-size: 17px; line-height: 1.1;
  letter-spacing: -.015em;
  color: var(--ink-dim);
  transition: color .2s;
}
.pont-tab.is-active .pt-name,
.pont-tab:hover .pt-name { color: var(--ink); }
.pt-wave {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .1em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.pont-stage { min-height: 480px; }
.pont-panel {
  display: none;
  grid-template-columns: 1fr 1.1fr;
  border: 1px solid var(--rule);
  border-top: none;
  min-height: 480px;
}
.pont-panel.is-active {
  display: grid;
  animation: pontIn .42s ease both;
}
@keyframes pontIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pont-photo {
  background:
    radial-gradient(ellipse 75% 65% at 50% 45%,
      color-mix(in srgb, var(--tc, #177acb) 22%, var(--bg-3)) 0%,
      var(--bg) 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 36px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--rule);
  min-height: 360px;
}
.pont-photo::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 10%;
  transform: translateX(-50%);
  width: 60%; height: 18px;
  background: radial-gradient(ellipse at center,
    color-mix(in srgb, var(--tc, #177acb) 35%, transparent),
    transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.pont-photo img {
  position: relative; z-index: 1;
  max-width: 90%; max-height: 340px;
  width: auto; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.55))
          drop-shadow(0 4px 16px color-mix(in srgb, var(--tc, #177acb) 30%, transparent));
}
.pont-info {
  background: var(--bg);
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
}
.pont-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.pont-badge {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 13px;
  background: color-mix(in srgb, var(--tc, var(--red)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--tc, var(--red)) 35%, transparent);
  color: var(--tc, var(--red));
  border-radius: 999px;
  white-space: nowrap;
}
.pont-mod {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 5px 11px;
  border: 1px solid var(--rule);
  border-radius: 999px;
}
.pont-info-name {
  font-family: var(--f-display);
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: .92;
  letter-spacing: -.03em;
  margin: 0 0 10px;
  color: var(--ink);
}
.pont-info-tech {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.pont-info-desc {
  font-size: 16px; line-height: 1.65;
  color: var(--ink-dim);
  margin: 0 0 28px;
  flex: 1;
}
.pont-tags {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pont-tags li {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid color-mix(in srgb, var(--tc, var(--red)) 28%, var(--rule));
  border-radius: 999px;
  color: var(--ink-dim);
  transition: background .2s, color .2s;
  cursor: default;
}
.pont-tags li:hover {
  background: color-mix(in srgb, var(--tc, var(--red)) 10%, transparent);
  color: var(--ink);
}
/* Tighten instructor bottom padding */
.instructor {
  padding-bottom: clamp(52px, 5vw, 72px) !important;
}
/* Tighten promise / problem sections too */
.problem { padding-bottom: clamp(52px, 5vw, 72px) !important; }
.fit     { padding-bottom: clamp(52px, 5vw, 72px) !important; }
.includes{ padding-bottom: clamp(52px, 5vw, 72px) !important; }

/* Wave visualizer */
.pont-wave-viz {
  margin: 10px 0 12px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
  background: rgba(0,0,0,.35);
  position: relative;
}
.pwv-canvas {
  display: block;
  width: 100%;
  height: 110px;
}

@media (max-width: 900px) {
  .pont-panel { grid-template-columns: 1fr; }
  .pont-photo { min-height: 240px; padding: 32px; border-right: none; border-bottom: 1px solid var(--rule); }
  .pont-photo img { max-height: 200px; }
  .pont-info { padding: 32px 28px; }
}
@media (max-width: 540px) {
  .pont-tab { min-width: 118px; padding: 14px 14px 11px; }
  .pt-wave { display: none; }
  .pont-info-name { font-size: clamp(30px, 8vw, 44px); }
}

/* === PONTEIRAS GLASS OVERLAY (v2 — dramatic photos) === */
.pont-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-top: none;
}
.pont-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.pont-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  animation: pontIn .55s ease both;
}
/* Full-bleed photo */
.pont-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #060e18;
  border-right: none;
  min-height: unset;
  padding: 0;
}
.pont-photo::after { display: none; }
.pont-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  max-width: unset;
  max-height: unset;
  filter: none;
}
/* Glass overlay */
.pont-glass {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 72px 52px 38px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(5,14,26,.42) 15%,
    rgba(5,14,26,.84) 48%,
    rgba(5,14,26,.97) 100%
  );
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}
.pont-glass::before {
  content: "";
  position: absolute;
  top: 0; left: 52px; right: 52px; height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    color-mix(in srgb, var(--tc, var(--red)) 55%, rgba(255,255,255,.18)) 50%,
    transparent 100%
  );
}
.pg-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.pg-name {
  font-family: var(--f-display);
  font-size: clamp(30px, 4vw, 64px);
  line-height: .92;
  letter-spacing: -.03em;
  margin: 0 0 10px;
  color: var(--ink);
}
.pg-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0 0 18px;
  max-width: 680px;
}
@media (max-width: 900px) {
  .pont-stage { aspect-ratio: auto; min-height: 520px; }
  .pont-photo img { object-position: center 15%; }
  .pont-glass { padding: 48px 28px 28px; }
  .pg-name { font-size: clamp(24px, 6vw, 42px); }
}
@media (max-width: 540px) {
  .pont-stage { min-height: 440px; }
  .pg-desc { font-size: 13px; }
  .pont-glass { padding: 40px 22px 24px; }
}

/* === PONTEIRAS — LAYOUT RESTAURADO + WAVELENGTH SPECS === */
.pont-stage {
  position: static; aspect-ratio: unset; overflow: visible;
  border: none; min-height: 0;
}
.pont-panel {
  position: static; opacity: 1; pointer-events: auto; z-index: auto;
  display: none;
  grid-template-columns: 1fr 1.15fr;
  border: 1px solid var(--rule);
  border-top: none;
  min-height: 460px;
  animation: none;
}
.pont-panel.is-active {
  display: grid;
  animation: pontIn .4s ease both;
  opacity: 1;
}
.pont-photo {
  position: static; overflow: hidden;
  border-right: 1px solid var(--rule);
  background: #060e18;
  display: block;
  padding: 0; min-height: 460px;
}
.pont-photo::after { display: none; }
.pont-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 5%;
  display: block;
  max-width: 100%; max-height: unset;
  filter: none;
}
/* Info side — tighter */
.pont-info {
  background: var(--bg);
  padding: 26px 30px 24px;
  display: flex; flex-direction: column; gap: 0;
}
.pont-badge-row { margin-bottom: 8px; gap: 8px; }
.pont-info-name {
  font-size: clamp(26px, 3vw, 50px);
  margin: 0 0 4px;
}
.pont-info-tech {
  margin: 0 0 12px;
  padding-bottom: 12px;
}
/* Wavelength/specs grid */
.pont-wave-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin: 0 0 12px;
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pont-wave-specs div { display: flex; flex-direction: column; gap: 2px; }
.pont-wave-specs dt {
  font-family: var(--f-mono);
  font-size: 9px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-soft);
}
.pont-wave-specs dd {
  margin: 0; font-size: 13px; font-weight: 600;
  color: var(--ink); letter-spacing: -.01em;
}
.pont-info-desc { font-size: 13px; line-height: 1.55; margin: 0 0 14px; }
@media (min-width: 1024px) {
  .pont-info-desc { font-size: 16px; line-height: 1.65; }
}
@media (min-width: 1440px) {
  .pont-info-desc { font-size: 18px; line-height: 1.65; }
}
.pont-tags { gap: 6px; }
.pont-tags li { font-size: 10px; padding: 4px 10px; }
/* Remove glass styles */
.pont-glass { display: none; }
@media (max-width: 900px) {
  .pont-panel { grid-template-columns: 1fr; min-height: 0; }
  .pont-photo { min-height: 280px; }
  .pont-info { padding: 22px 20px 20px; }
}

/* ══════════════════════════════════════════════
   MAPA DE INDICAÇÕES — filterable condition grid
   ══════════════════════════════════════════════ */
.indicacoes-map { background: var(--bg); }
.imap-inner { max-width: 1100px; margin: 0 auto; padding: 0 var(--pad); }
.imap-filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 36px 0 28px;
}
.imap-filter {
  padding: 8px 18px;
  background: var(--bg-2); border: 1px solid var(--rule);
  border-radius: 999px; font-size: 12px; font-family: var(--f-sans, sans-serif);
  color: var(--ink-dim); cursor: pointer; transition: all .22s;
}
.imap-filter:hover { background: var(--bg-3); color: var(--ink); }
.imap-filter.imap-act {
  background: rgba(26,130,204,.15); border-color: rgba(26,130,204,.45); color: var(--red);
}
.imap-filter.imap-all { border-color: var(--rule-strong); }

.imap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}
.imap-card {
  background: var(--bg-2); border: 1px solid var(--rule);
  border-radius: 10px; padding: 18px 16px;
  transition: all .3s ease;
}
.imap-card.imap-match {
  border-color: rgba(26,130,204,.4); background: rgba(26,130,204,.06);
}
.imap-card.imap-dim { opacity: .2; transform: scale(.97); pointer-events: none; }
.imap-cond-name {
  font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 12px;
}
.imap-ponts { display: flex; flex-wrap: wrap; gap: 5px; }
.imap-pchip {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: .1em;
  padding: 3px 9px; border-radius: 999px; border: 1px solid;
}

/* ══════════════════════════════════════════════
   TECH COMPARE — technology comparison table
   ══════════════════════════════════════════════ */
.techcompare { background: var(--bg-2); }
.tc-inner { max-width: 1100px; margin: 0 auto; padding: 0 var(--pad); }
.tc-table-wrap {
  margin-top: 40px; overflow-x: auto;
  border: 1px solid var(--rule); border-radius: 12px;
}
.tc-table {
  width: 100%; border-collapse: collapse; min-width: 660px; font-size: 13px;
}
.tc-table thead tr { background: var(--bg-3); }
.tc-table th {
  padding: 14px 16px; text-align: left;
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft); border-bottom: 1px solid var(--rule); font-weight: 600;
}
.tc-table td { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.04); color: var(--ink-dim); vertical-align: middle; }
.tc-table tr:last-child td { border-bottom: none; }
.tc-table tbody tr { transition: background .2s; }
.tc-table tbody tr:hover { background: rgba(255,255,255,.03); }
.tc-dot { display:inline-block; width:9px; height:9px; border-radius:50%; margin-right:8px; vertical-align:middle; flex-shrink:0; }
.tc-pont-cell { display:flex; align-items:center; font-weight:600; color:var(--ink); white-space:nowrap; }
.tc-tag { display:inline-block; font-family:var(--f-mono); font-size:9px; letter-spacing:.1em; padding:2px 8px; border-radius:999px; border:1px solid; margin:2px; white-space:nowrap; }
.tc-low  { color:#4ae04a; border-color:rgba(74,224,74,.3); }
.tc-med  { color:#e8a840; border-color:rgba(232,168,64,.3); }
.tc-high { color:#e85040; border-color:rgba(232,80,64,.3); }

/* ══════════════════════════════════════════════
   GLOSSÁRIO — floating bottom-left drawer
   ══════════════════════════════════════════════ */
.gloss-btn {
  position: fixed; bottom: 28px; left: 28px; z-index: 9990;
  background: rgba(26,130,204,.1); border: 1px solid rgba(26,130,204,.28);
  border-radius: 999px; padding: 10px 18px; cursor: pointer;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(69,182,232,.9);
  backdrop-filter: blur(10px); box-shadow: 0 8px 24px rgba(0,0,0,.4);
  transition: all .25s;
  animation: tocIn .7s cubic-bezier(.22,1,.36,1) 1.4s both;
}
.gloss-btn:hover {
  background: rgba(26,130,204,.2); border-color: rgba(26,130,204,.5);
  color: #45b6e8; transform: translateY(-2px);
}
.gloss-drawer {
  position: fixed; bottom: 0; left: 0;
  width: 360px; max-width: 100vw; max-height: 62vh;
  background: rgba(10,24,40,.96); backdrop-filter: blur(20px);
  border: 1px solid rgba(26,130,204,.2); border-radius: 16px 16px 0 0;
  z-index: 9995; transform: translateY(100%);
  transition: transform .42s cubic-bezier(.22,1,.36,1);
  overflow: hidden; display: flex; flex-direction: column;
}
.gloss-drawer.gloss-open { transform: translateY(0); }
.gloss-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 12px; border-bottom: 1px solid rgba(26,130,204,.1); flex-shrink: 0;
}
.gloss-head-lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(26,130,204,.7); }
.gloss-close {
  width: 28px; height: 28px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: 50%;
  color: rgba(255,255,255,.5); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: all .2s; font-family: inherit; padding: 0;
}
.gloss-close:hover { background: rgba(255,255,255,.14); color: #fff; }
.gloss-list { overflow-y: auto; flex: 1; padding: 6px 0 20px; scrollbar-width: none; }
.gloss-list::-webkit-scrollbar { display: none; }
.gloss-item { padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,.04); transition: background .2s; }
.gloss-item:last-child { border-bottom: none; }
.gloss-item:hover { background: rgba(26,130,204,.06); }
.gloss-term { font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(69,182,232,.9); margin-bottom: 4px; }
.gloss-def  { font-size: 12px; line-height: 1.5; color: rgba(255,255,255,.5); }