/* =================================================================
   Reward Seats — Sistema de diseño (prototipo FASE 2)
   Marca: índigo-violeta "Iris". Móvil primero. Tema claro + oscuro.
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Marca */
  --brand:        #5B5BD6;   /* iris 9 */
  --brand-hover:  #4A4AC0;
  --brand-press:  #3E3EA8;
  --brand-soft:   #EEEEFB;   /* fondo suave de marca */
  --brand-border: #D7D7F4;
  --accent:       #8B5CF6;   /* violeta de apoyo */
  --gold:         #E2A33B;   /* destacar oferta / premium */

  /* Semánticos (precio del asiento) */
  --cheap:        #2E9E6B;   /* tarifa baja (ST) — verde */
  --cheap-soft:   #E4F6EC;
  --mid:          #C99A2E;   /* intermedio */
  --mid-soft:     #FBF1DA;
  --dear:         #D9722B;   /* precio dinámico alto (DY) — ámbar */
  --dear-soft:    #FCEFE2;
  --danger:       #DC3B4B;
  --danger-soft:  #FCEAEC;

  /* Neutros (gris con tinte frío) */
  --bg:        #FAFAFC;
  --surface:   #FFFFFF;
  --surface-2: #F4F4F8;
  --line:      #E6E6EF;
  --line-2:    #D4D4E0;
  --text:      #1C1C28;
  --muted:     #5B5B6B;
  --faint:     #8E8EA0;

  /* Escala */
  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(28,28,40,.06), 0 1px 3px rgba(28,28,40,.04);
  --shadow:    0 4px 16px rgba(28,28,40,.08);
  --shadow-lg: 0 18px 50px rgba(45,45,120,.16);
  --ring:      0 0 0 3px rgba(91,91,214,.30);

  --maxw: 1160px;
  --nav-h: 64px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

[data-theme="dark"] {
  --brand:        #8E8EF5;
  --brand-hover:  #A0A0F8;
  --brand-press:  #7C7CEC;
  --brand-soft:   #20203A;
  --brand-border: #34345C;
  --accent:       #A98BFF;
  --bg:        #0E0E16;
  --surface:   #16161F;
  --surface-2: #1D1D2A;
  --line:      #28283A;
  --line-2:    #34344A;
  --text:      #ECECF4;
  --muted:     #A6A6BC;
  --faint:     #74748A;
  --cheap-soft:#13301F; --mid-soft:#332A12; --dear-soft:#3A2113; --danger-soft:#371A1E;
  --shadow-lg: 0 18px 50px rgba(0,0,0,.5);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: hidden; }   /* guarda anti-desbordamiento horizontal en móvil */
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4 { line-height: 1.15; font-weight: 750; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.2rem; }
small { font-size: .82rem; }
[hidden] { display: none !important; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(48px, 8vw, 96px); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }
.grid { display: grid; gap: 24px; }
.muted { color: var(--muted); }
.faint { color: var(--faint); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 650; letter-spacing: .04em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-soft);
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--brand-border);
}
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--radius-sm); border: 1px solid transparent;
  font-weight: 650; font-size: .96rem; white-space: nowrap;
  transition: transform .06s, background .15s, box-shadow .15s, border-color .15s;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: none; box-shadow: var(--ring); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-hover); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--brand-border); }
.btn-soft { background: var(--brand-soft); color: var(--brand); border-color: var(--brand-border); }
.btn-soft:hover { background: #e6e6fb; }
.btn-lg { padding: 14px 26px; font-size: 1.04rem; border-radius: var(--radius); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: .88rem; }

/* ---------- Badges de plan / chips ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 700; letter-spacing: .02em;
  padding: 3px 9px; border-radius: 999px; border: 1px solid transparent; text-transform: uppercase;
}
.badge-free { background: var(--surface-2); color: var(--muted); border-color: var(--line-2); }
.badge-pro  { background: var(--brand-soft); color: var(--brand); border-color: var(--brand-border); }
.badge-elite{ background: #fbf1da; color: #9a6b1a; border-color: #ecd6a6; }
[data-theme="dark"] .badge-elite { background:#332a12; color:#e2a33b; border-color:#5a4a1f; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 999px; font-size: .9rem; font-weight: 550;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--muted);
  cursor: pointer; transition: all .15s;
}
.chip:hover { border-color: var(--brand-border); color: var(--text); }
.chip.is-active { background: var(--brand); color: #fff; border-color: var(--brand); }
.lock { font-size: .85em; opacity: .8; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm);
}
.card-pad-lg { padding: 30px; }

/* ---------- Navbar pública ---------- */
.nav {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { height: 100%; display: flex; align-items: center; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; font-size: 1.12rem; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 4px 12px rgba(91,91,214,.35);
}
.nav-links { display: none; align-items: center; gap: 4px; margin-left: 10px; }
.nav-links a { padding: 8px 12px; border-radius: 8px; color: var(--muted); font-weight: 550; font-size: .94rem; }
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: var(--surface); border: 1px solid var(--line-2); }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}
/* En móvil, los botones de sesión y el tema viven en el menú hamburguesa
   (si no, el navbar desborda el ancho y empuja el contenido). */
@media (max-width: 720px) {
  .nav .nav-right .btn { display: none; }
  .nav .nav-right .icon-btn[data-theme-toggle] { display: none; }
}

/* lang + theme toggles */
.icon-btn { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: var(--surface); border: 1px solid var(--line-2); color: var(--muted); }
.icon-btn:hover { color: var(--text); border-color: var(--brand-border); }
.lang-toggle { display: inline-flex; border: 1px solid var(--line-2); border-radius: 10px; overflow: hidden; background: var(--surface); }
.lang-toggle button { padding: 7px 11px; font-size: .82rem; font-weight: 650; color: var(--faint); background: transparent; border: none; }
.lang-toggle button.is-active { background: var(--brand); color: #fff; }

/* menú móvil */
.mobile-menu { display: none; padding: 14px 20px 22px; border-bottom: 1px solid var(--line); background: var(--surface); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 8px; border-radius: 8px; font-weight: 600; color: var(--text); }
.mobile-menu a:hover { background: var(--surface-2); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -40% 0 auto -10%; height: 620px; z-index: -1;
  background:
    radial-gradient(60% 60% at 20% 10%, rgba(139,92,246,.18), transparent 70%),
    radial-gradient(50% 50% at 85% 0%, rgba(91,91,214,.20), transparent 70%);
}
.hero-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 56px; } }
.hero h1 { margin-bottom: 18px; }
.hero .lead { max-width: 33ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-trust { margin-top: 22px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--faint); font-size: .88rem; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* mock visual del hero: tarjeta de mejor tarifa */
.glass {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 20px;
}
.fare-row { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 12px; }
.fare-row + .fare-row { margin-top: 8px; }
.fare-row.best { background: var(--cheap-soft); border: 1px solid color-mix(in srgb, var(--cheap) 30%, transparent); }
.fare-route { font-weight: 700; }
.fare-miles { margin-left: auto; font-weight: 800; font-variant-numeric: tabular-nums; }
.dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot.cheap { background: var(--cheap); } .dot.mid { background: var(--mid); } .dot.dear { background: var(--dear); }

/* ---------- Bandas de logos / pasos / features ---------- */
.steps { display: grid; gap: 22px; counter-reset: s; }
@media (min-width: 800px){ .steps { grid-template-columns: repeat(3,1fr); } }
.step { position: relative; padding-left: 0; }
.step .num { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; font-weight: 800; color: var(--brand); background: var(--brand-soft); border: 1px solid var(--brand-border); margin-bottom: 14px; }
.features { display: grid; gap: 20px; }
@media (min-width: 720px){ .features { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px){ .features { grid-template-columns: repeat(3,1fr); } }
.feature .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: var(--brand); background: var(--brand-soft); margin-bottom: 14px; }
.feature h3 { margin-bottom: 6px; }

/* ---------- Pricing ---------- */
.pricing { display: grid; gap: 22px; align-items: start; }
@media (min-width: 880px){ .pricing { grid-template-columns: repeat(3,1fr); } }
.price-card { position: relative; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--brand); box-shadow: var(--shadow-lg); }
.price-card.featured::after {
  content: attr(data-tag); position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  padding: 5px 14px; border-radius: 999px; text-transform: uppercase;
}
.price { display: flex; align-items: baseline; gap: 6px; margin: 8px 0 4px; }
.price .amt { font-size: 2.6rem; font-weight: 820; letter-spacing: -.03em; }
.price .per { color: var(--muted); font-weight: 550; }
.feat-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 11px; }
.feat-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.feat-list .tick { color: var(--cheap); flex: none; margin-top: 2px; }
.feat-list .no { color: var(--faint); }
.feat-list li.off { color: var(--faint); }
.price-card .btn { margin-top: 22px; }
.bill-toggle { display: inline-flex; gap: 4px; padding: 4px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; }
.bill-toggle button { border: none; background: transparent; padding: 8px 16px; border-radius: 999px; font-weight: 650; font-size: .9rem; color: var(--muted); }
.bill-toggle button.is-active { background: var(--surface); color: var(--text); box-shadow: var(--shadow-sm); }
.save-pill { font-size: .75rem; font-weight: 700; color: var(--cheap); background: var(--cheap-soft); padding: 2px 8px; border-radius: 999px; }

/* ---------- App shell (logueado) ---------- */
.app { display: grid; grid-template-columns: 1fr; min-height: 100vh; }
@media (min-width: 1000px){ .app { grid-template-columns: 248px 1fr; } }
.side {
  background: var(--surface); border-right: 1px solid var(--line);
  padding: 16px; display: none; flex-direction: column; gap: 4px;
  position: sticky; top: 0; height: 100vh;
}
@media (min-width: 1000px){ .side { display: flex; } }
.side .brand { padding: 8px 8px 16px; }
.side a { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px; color: var(--muted); font-weight: 600; font-size: .95rem; }
.side a:hover { background: var(--surface-2); color: var(--text); }
.side a.is-active { background: var(--brand-soft); color: var(--brand); }
.side a .lock { margin-left: auto; }
.side-foot { margin-top: auto; }
.upsell { background: linear-gradient(135deg, var(--brand), var(--accent)); color: #fff; border-radius: var(--radius); padding: 16px; }
.upsell .btn { margin-top: 12px; background: #fff; color: var(--brand); }
.main { padding: 22px clamp(16px, 4vw, 34px); min-width: 0; }
.topbar { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.topbar h1 { font-size: 1.5rem; }
.topbar .nav-right { margin-left: auto; }
.app-mobile-bar { display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-bottom: 1px solid var(--line); background: var(--surface); position: sticky; top: 0; z-index: 30; }
@media (min-width: 1000px){ .app-mobile-bar { display: none; } }

/* ---------- Search / calendario ---------- */
.search-bar { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 720px){ .search-bar { grid-template-columns: 1fr 1fr auto; align-items: end; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .82rem; font-weight: 600; color: var(--muted); }
.inp, .sel {
  width: 100%; padding: 11px 13px; border-radius: 10px; background: var(--surface);
  border: 1px solid var(--line-2); color: var(--text); font: inherit; transition: border-color .15s, box-shadow .15s;
}
.inp:focus, .sel:focus { outline: none; border-color: var(--brand); box-shadow: var(--ring); }
.toolbar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 18px 0; }
.toolbar .spacer { margin-left: auto; }

.cal-head, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.cal-head { margin-bottom: 8px; }
.cal-head span { text-align: center; font-size: .76rem; font-weight: 700; color: var(--faint); text-transform: uppercase; letter-spacing: .03em; }
.day {
  position: relative; aspect-ratio: 1/1; border-radius: 12px; border: 1px solid var(--line);
  background: var(--surface); padding: 8px; display: flex; flex-direction: column; gap: 2px;
  transition: transform .08s, box-shadow .15s, border-color .15s; min-height: 70px;
}
.day .d { font-size: .8rem; color: var(--faint); font-weight: 600; }
.day .m { margin-top: auto; font-weight: 800; font-size: .92rem; font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.day .u { font-size: .64rem; color: var(--faint); }
.day.has { cursor: pointer; }
.day.has:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--brand-border); }
.day.cheap { background: var(--cheap-soft); border-color: color-mix(in srgb, var(--cheap) 28%, transparent); }
.day.cheap .m { color: var(--cheap); }
.day.mid { background: var(--mid-soft); border-color: color-mix(in srgb, var(--mid) 28%, transparent); }
.day.mid .m { color: var(--mid); }
.day.dear { background: var(--dear-soft); border-color: color-mix(in srgb, var(--dear) 26%, transparent); }
.day.dear .m { color: var(--dear); }
.day.empty { background: var(--surface-2); border-style: dashed; }
.day .plane { position: absolute; top: 7px; right: 8px; font-size: .8rem; color: var(--brand); }
.day.locked { filter: blur(3px); pointer-events: none; user-select: none; }
.is-locked { opacity: .45; pointer-events: none; position: relative; }
.is-locked::after { content: "🔒"; font-size: .8em; margin-left: 4px; }
.locked-overlay {
  position: relative; border-radius: var(--radius); overflow: hidden;
}
.locked-cta {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 5;
  background: color-mix(in srgb, var(--surface) 55%, transparent); backdrop-filter: blur(1px);
}
.legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 16px; font-size: .84rem; color: var(--muted); }
.legend span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Tabla ---------- */
.table { width: 100%; border-collapse: collapse; font-size: .94rem; }
.table th { text-align: left; font-size: .76rem; text-transform: uppercase; letter-spacing: .03em; color: var(--faint); padding: 10px 12px; border-bottom: 1px solid var(--line); }
.table td { padding: 13px 12px; border-bottom: 1px solid var(--line); }
.table tr:hover td { background: var(--surface-2); }
.table .num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 650; }
.scroll-x { overflow-x: auto; }

/* ---------- Modal ---------- */
.overlay { position: fixed; inset: 0; background: rgba(20,20,35,.5); backdrop-filter: blur(3px); display: none; place-items: center; z-index: 100; padding: 18px; }
.overlay.open { display: grid; }
.modal { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: min(680px, 100%); max-height: 88vh; overflow: auto; }
.modal-head { display: flex; align-items: center; gap: 12px; padding: 20px 22px; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: var(--surface); }
.modal-body { padding: 20px 22px; }
.flight {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
  padding: 14px; border: 1px solid var(--line); border-radius: 12px;
}
.flight + .flight { margin-top: 10px; }
.flight .time { font-weight: 800; font-size: 1.05rem; }
.flight .path { font-size: .82rem; color: var(--muted); }
.airline-tag { font-size: .72rem; font-weight: 700; color: var(--brand); background: var(--brand-soft); padding: 2px 8px; border-radius: 6px; }

/* ---------- Forms / auth ---------- */
.auth-wrap { min-height: 100vh; display: grid; place-items: center; padding: 40px 18px; }
.auth-card { width: min(440px, 100%); }
.divider { display: flex; align-items: center; gap: 12px; color: var(--faint); font-size: .82rem; margin: 18px 0; }
.divider::before, .divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.form-row { display: grid; gap: 6px; margin-bottom: 14px; }
.form-row label { font-size: .86rem; font-weight: 600; color: var(--muted); }
.hint { font-size: .82rem; color: var(--faint); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 4px; display: flex; gap: 14px; align-items: center; font-weight: 650; font-size: 1.05rem; color: var(--text); }
.faq-q .pm { margin-left: auto; color: var(--brand); transition: transform .2s; flex: none; }
.faq-item.open .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; color: var(--muted); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 4px 20px; }

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 22px; overflow-x: auto; }
.tabs button { border: none; background: none; padding: 12px 16px; font-weight: 650; color: var(--muted); border-bottom: 2px solid transparent; white-space: nowrap; }
.tabs button.is-active { color: var(--brand); border-bottom-color: var(--brand); }

/* ---------- Toast ---------- */
.toast-wrap { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 8px; }
.toast { background: var(--text); color: var(--bg); padding: 12px 18px; border-radius: 11px; box-shadow: var(--shadow-lg); font-weight: 600; font-size: .92rem; display: flex; gap: 10px; align-items: center; animation: pop .25s; }
@keyframes pop { from { opacity: 0; transform: translateY(8px); } }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--surface); padding-block: 48px 30px; }
.footer-grid { display: grid; gap: 30px; }
@media (min-width: 760px){ .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--faint); margin-bottom: 14px; font-weight: 700; }
.footer a { display: block; color: var(--muted); padding: 5px 0; font-size: .94rem; }
.footer a:hover { color: var(--brand); }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px; align-items: center; color: var(--faint); font-size: .86rem; }

/* ---------- Util ---------- */
.row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.between { justify-content: space-between; }
.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:36px}
.tag-note { font-size: .8rem; color: var(--faint); }
.kpi { font-size: 2rem; font-weight: 820; letter-spacing: -.02em; }
.pill-soon { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--accent); background: color-mix(in srgb, var(--accent) 14%, transparent); padding: 2px 7px; border-radius: 999px; }
