:root {
  --bg: #08111e;
  --bg2: #0c1929;
  --c1: #0f1f32;
  --c2: #132238;
  --c3: #1a2d45;
  --b1: rgba(255, 255, 255, 0.06);
  --b2: rgba(255, 255, 255, 0.1);
  --b3: rgba(255, 255, 255, 0.18);
  --mini: #1d6ef5;
  --mini-l: #60a5fa;
  --mini-x: #93c5fd;
  --mini-g: rgba(29, 110, 245, 0.18);
  --pre: #d97706;
  --pre-l: #fbbf24;
  --pre-x: #fde68a;
  --pre-g: rgba(217, 119, 6, 0.16);
  --hur: #dc2626;
  --hur-l: #f87171;
  --hur-x: #fca5a5;
  --hur-g: rgba(220, 38, 38, 0.16);
  --ok: #16a34a;
  --ok-l: #4ade80;
  --ok-g: rgba(22, 163, 74, 0.15);
  --nxt: #0e7490;
  --nxt-l: #22d3ee;
  --nxt-g: rgba(14, 116, 144, 0.15);
  --t1: #e8f2ff;
  --t2: #7a9bb8;
  --t3: #344d65;
  --nav: 62px;
  --r: 16px;
  --rm: 10px;
  --rs: 7px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--t1);
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
::selection {
  background: rgba(29, 110, 245, 0.35);
}
a {
  text-decoration: none;
  color: inherit;
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav);
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  gap: 0.85rem;
  background: rgba(8, 17, 30, 0.85);
  backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid var(--b1);
}
.nav-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  font-size: 1rem;
  background: linear-gradient(135deg, #1d6ef5, #d97706);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 18px rgba(29, 110, 245, 0.45),
    0 0 36px rgba(217, 119, 6, 0.18);
}
.nav-copy {
  line-height: 1.2;
}
.nav-copy b {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}
.nav-copy small {
  display: block;
  font-size: 0.65rem;
  color: var(--t3);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 0.18rem;
}
.nav-pills {
  margin-left: auto;
  display: flex;
  gap: 0.35rem;
}
.npill {
  padding: 0.35rem 0.82rem;
  border-radius: 100px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1px;
  border: 1.5px solid transparent;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.npill.mini {
  border-color: rgba(29, 110, 245, 0.3);
  color: var(--t3);
}
.npill.pre {
  border-color: rgba(217, 119, 6, 0.3);
  color: var(--t3);
}
.npill.mini.on {
  border-color: var(--mini);
  background: rgba(29, 110, 245, 0.12);
  color: var(--mini-l);
}
.npill.pre.on {
  border-color: var(--pre);
  background: rgba(217, 119, 6, 0.1);
  color: var(--pre-l);
}
.npill.hur {
  border-color: rgba(220, 38, 38, 0.35);
  color: var(--t3);
}
.npill.hur.on {
  border-color: var(--hur);
  background: rgba(220, 38, 38, 0.14);
  color: var(--hur-l);
}
.page {
  padding-top: var(--nav);
  padding-bottom: 2rem;
  min-height: 100dvh;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 1.25rem 2rem;
  text-align: center;
  background: radial-gradient(
    ellipse 130% 120% at 50% -30%,
    #0e1e42 0%,
    var(--bg) 65%
  );
}
.hero-compact {
  padding: 1.8rem 1.25rem 1.4rem;
}
.hero-compact .hero-title-line {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  padding: 0.28rem 0.9rem 0.28rem 0.7rem;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--t2);
  margin-bottom: 1rem;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok-l);
}
.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.6rem, 8vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.gtext {
  background: linear-gradient(125deg, #60a5fa 0%, #38bdf8 40%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: var(--t2);
  font-size: 0.87rem;
  max-width: 520px;
  margin: 0 auto 1.4rem;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hbtn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 1.5rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}
.hbtn.mini {
  border-color: var(--mini);
  color: var(--mini-l);
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(29, 110, 245, 0.18),
    rgba(29, 110, 245, 0.05)
  );
}
.hbtn.pre {
  border-color: var(--pre);
  color: var(--pre-l);
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(217, 119, 6, 0.16),
    rgba(217, 119, 6, 0.05)
  );
}
.hbtn.hur {
  border-color: var(--hur);
  color: var(--hur-l);
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(220, 38, 38, 0.18),
    rgba(220, 38, 38, 0.05)
  );
}
.hbtn .cnt {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.1rem 0.55rem;
  font-size: 0.7rem;
}
.main {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.25rem 1rem 2rem;
}
.summary-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.summary-card {
  background: linear-gradient(160deg, #0e1f35, #08111e);
  border: 1px solid var(--b2);
  border-radius: 20px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}
.summary-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.summary-top h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.summary-top small {
  display: block;
  color: var(--t3);
  font-size: 0.68rem;
  margin-top: 0.15rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.26rem 0.7rem;
  border-radius: 100px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border: 1px solid var(--b1);
  background: var(--c2);
}
.summary-match {
  border: 1px solid rgba(251, 191, 36, 0.25);
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0.07),
    rgba(29, 110, 245, 0.06)
  );
  border-radius: 16px;
  padding: 1rem;
}
.summary-match .fixture {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.55rem;
}
.summary-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--t2);
}
.meta-box {
  background: var(--c2);
  border: 1px solid var(--b1);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
}
.meta-box b {
  display: block;
  font-size: 0.62rem;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.18rem;
}
.alert-list,
.result-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.alert-item,
.result-item {
  background: var(--c2);
  border: 1px solid var(--b1);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
}
.alert-item .title,
.result-item .title {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.18rem;
}
.alert-item .sub,
.result-item .sub {
  font-size: 0.68rem;
  color: var(--t3);
  line-height: 1.5;
}
.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 0.85rem;
}
.kpi {
  background: var(--c2);
  border: 1px solid var(--b1);
  border-radius: 14px;
  padding: 0.8rem;
  text-align: center;
}
.kpi .value {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--mini-l), var(--pre-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.kpi .label {
  font-size: 0.62rem;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 0.25rem;
}
.lsec {
  display: none;
}
.lsec.on {
  display: block;
}
.lhdr {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--r) var(--r) 0 0;
  border: 1px solid;
  border-bottom: none;
}
.lhdr.mini {
  background: linear-gradient(
    135deg,
    rgba(29, 110, 245, 0.14),
    rgba(29, 110, 245, 0.05)
  );
  border-color: rgba(29, 110, 245, 0.28);
}
.lhdr.pre {
  background: linear-gradient(
    135deg,
    rgba(217, 119, 6, 0.14),
    rgba(217, 119, 6, 0.05)
  );
  border-color: rgba(217, 119, 6, 0.28);
}
.lhdr.hur {
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.16),
    rgba(220, 38, 38, 0.05)
  );
  border-color: rgba(220, 38, 38, 0.3);
}
.lhdr.hur .lhdr-ico {
  background: rgba(220, 38, 38, 0.22);
}
.lhdr-ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  flex-shrink: 0;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lhdr.mini .lhdr-ico {
  background: rgba(29, 110, 245, 0.22);
}
.lhdr.pre .lhdr-ico {
  background: rgba(217, 119, 6, 0.2);
}
.lhdr h2 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.15px;
}
.lhdr small {
  font-size: 0.67rem;
  color: var(--t3);
  display: block;
  margin-top: 0.18rem;
  font-weight: 500;
}
.badge-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.78rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--ok-g);
  color: var(--ok-l);
  border: 1px solid rgba(74, 222, 128, 0.2);
}
.itabs {
  display: flex;
  border-left: 1px solid;
  border-right: 1px solid;
  background: var(--c1);
}
.itabs.mini {
  border-color: rgba(29, 110, 245, 0.28);
}
.itabs.pre {
  border-color: rgba(217, 119, 6, 0.28);
}
.itab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 0.5rem;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.05px;
  color: var(--t3);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.itab.on.mini {
  color: var(--mini-l);
  border-bottom-color: var(--mini);
  background: rgba(29, 110, 245, 0.06);
}
.itab.on.pre {
  color: var(--pre-l);
  border-bottom-color: var(--pre);
  background: rgba(217, 119, 6, 0.06);
}
.panel {
  display: none;
}
.panel.on {
  display: block;
}
.pbox {
  border: 1px solid;
  border-top: none;
  border-radius: 0 0 var(--r) var(--r);
  padding: 1.2rem;
  background: var(--c1);
}
.pbox.mini {
  border-color: rgba(29, 110, 245, 0.28);
}
.pbox.pre {
  border-color: rgba(217, 119, 6, 0.28);
}
.pbox.hur {
  border-color: rgba(220, 38, 38, 0.3);
  border-radius: 0 0 var(--r) var(--r);
  padding: 1.4rem 1.2rem 1.6rem;
}
.hur-stats {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}
.hur-stat {
  text-align: center;
  padding: 0.7rem 0.3rem;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.22);
  border-radius: 12px;
}
.hur-stat .v {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hur-l);
  line-height: 1;
}
.hur-stat .k {
  font-size: 0.6rem;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 0.28rem;
  font-weight: 600;
}
.hur-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hur-x);
  margin: 0 0 0.7rem;
}
.hur-next-wrap {
  margin-bottom: 1.5rem;
}
.hur-next-card {
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.18),
    rgba(220, 38, 38, 0.05)
  );
  border: 1px solid rgba(220, 38, 38, 0.35);
}
.hur-next-card .hnc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}
.hur-next-card .hnc-jornada {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--hur-l);
}
.hur-next-card .hnc-when {
  font-size: 0.72rem;
  color: var(--t2);
  font-weight: 600;
}
.hur-next-card .hnc-teams {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.05;
  color: var(--t1);
  margin-bottom: 0.6rem;
}
.hur-next-card .hnc-teams .vs {
  color: var(--hur-l);
  margin: 0 0.55rem;
}
.hur-next-card .hnc-field {
  text-align: center;
  font-size: 0.78rem;
  color: var(--t2);
}
.hur-current-wrap {
  margin-bottom: 1.4rem;
}
.hur-current-wrap .mc + .mc,
#hur-list .mc + .mc {
  margin-top: 0.6rem;
}
.hur-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
}
.hur-section-head .hur-section-title {
  margin: 0;
}
.hur-full-toggle {
  padding: 0.42rem 0.85rem;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.28);
  color: var(--hur-l);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.hur-full-toggle:hover {
  background: rgba(220, 38, 38, 0.18);
}
.hur-full-hidden {
  display: none;
}
.hur-empty {
  text-align: center;
  padding: 1.1rem;
  color: var(--t3);
  font-size: 0.85rem;
  border: 1px dashed rgba(220, 38, 38, 0.3);
  border-radius: 14px;
}
@media (max-width: 620px) {
  .hur-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.jnav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.jnav select {
  flex: 1;
  min-width: 0;
  padding: 0.58rem 0.95rem;
  border-radius: var(--rm);
  background: var(--c2);
  border: 1.5px solid var(--b2);
  color: var(--t1);
  font-size: 0.81rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
}
.jarr {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: var(--rm);
  border: 1.5px solid var(--b2);
  background: var(--c2);
  color: var(--t2);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jarr:disabled {
  opacity: 0.25;
  cursor: default;
}
.jmeta {
  font-size: 0.7rem;
  color: var(--t3);
  margin-bottom: 1rem;
}
.gfrow {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}
.gfbtn {
  padding: 0.42rem 1.2rem;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 700;
  border: 1.5px solid var(--b2);
  background: var(--c2);
  color: var(--t3);
  cursor: pointer;
}
.gfbtn.on-a {
  background: var(--pre-g);
  border-color: var(--pre);
  color: var(--pre-l);
}
.gfbtn.on-b {
  background: rgba(99, 102, 241, 0.13);
  border-color: #818cf8;
  color: #c7d2fe;
}
.mc {
  border-radius: var(--r);
  border: 1px solid var(--b1);
  background: var(--c2);
  margin-bottom: 0.55rem;
  overflow: hidden;
}
.mc.played {
  border-color: rgba(22, 163, 74, 0.18);
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.06), var(--c2));
}
.mc.nxt {
  border-color: rgba(14, 116, 144, 0.38);
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.09), var(--c2));
}
.mc.fav {
  border-color: rgba(251, 191, 36, 0.35);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.07), var(--c2));
}
.mc.bye {
  opacity: 0.36;
}
.mc-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.6rem;
  padding: 1.05rem 1rem 0.9rem;
}
.mc-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  min-width: 0;
}
.mc-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.77rem;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255, 255, 255, 0.07);
}
.mc-av.m {
  background: linear-gradient(
    135deg,
    rgba(29, 110, 245, 0.5),
    rgba(29, 110, 245, 0.18)
  );
  color: var(--mini-x);
  border-color: rgba(29, 110, 245, 0.28);
}
.mc-av.pa {
  background: linear-gradient(
    135deg,
    rgba(217, 119, 6, 0.5),
    rgba(217, 119, 6, 0.18)
  );
  color: var(--pre-x);
  border-color: rgba(217, 119, 6, 0.28);
}
.mc-av.pb {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.5),
    rgba(99, 102, 241, 0.18)
  );
  color: #c7d2fe;
  border-color: rgba(99, 102, 241, 0.28);
}
.mc-av.neu {
  background: var(--c3);
  color: var(--t3);
  border-color: var(--b2);
}
.mc-av.has-logo,
.tav.has-logo {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  overflow: hidden;
  padding: 3px;
}
.mc-av.has-logo img,
.tav.has-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.mc-tname {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--t1);
}
.mc-ctr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  min-width: 86px;
  padding: 0 0.3rem;
}
.mc-day {
  font-size: 0.62rem;
  color: var(--t3);
  font-weight: 500;
  white-space: nowrap;
}
.mc-time {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.5px;
  white-space: nowrap;
  font-family: "Barlow Condensed", sans-serif;
}
.sb {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.18rem;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  padding: 0.2rem 0.58rem;
  border-radius: 100px;
  white-space: nowrap;
}
.sb-played {
  background: var(--ok-g);
  color: var(--ok-l);
  border: 1px solid rgba(74, 222, 128, 0.22);
}
.sb-nxt {
  background: var(--nxt-g);
  color: var(--nxt-l);
  border: 1px solid rgba(34, 211, 238, 0.28);
}
.sb-pend {
  background: rgba(52, 77, 101, 0.18);
  color: var(--t3);
  border: 1px solid rgba(52, 77, 101, 0.22);
}
.mc-field {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  padding: 0.4rem 1rem;
  background: rgba(0, 0, 0, 0.18);
  border-top: 1px solid var(--b1);
  font-size: 0.64rem;
  color: var(--t3);
  font-weight: 500;
}
.no-data {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--t3);
  font-size: 0.83rem;
}
.tgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(168px, 100%), 1fr));
  gap: 0.5rem;
}
.tcrd {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  background: var(--c2);
  border: 1px solid var(--b1);
  border-radius: var(--rm);
  padding: 0.75rem 0.9rem;
}
.tav {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
}
.tav.m {
  background: linear-gradient(
    135deg,
    rgba(29, 110, 245, 0.38),
    rgba(29, 110, 245, 0.13)
  );
  color: var(--mini-x);
  border: 1px solid rgba(29, 110, 245, 0.28);
}
.tav.pa {
  background: linear-gradient(
    135deg,
    rgba(217, 119, 6, 0.38),
    rgba(217, 119, 6, 0.13)
  );
  color: var(--pre-x);
  border: 1px solid rgba(217, 119, 6, 0.28);
}
.tav.pb {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.38),
    rgba(99, 102, 241, 0.13)
  );
  color: #c7d2fe;
  border: 1px solid rgba(99, 102, 241, 0.28);
}
.tname {
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--t1);
}
.tgrp {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 0.1rem 0.42rem;
  border-radius: 4px;
  display: inline-block;
  margin-top: 0.22rem;
}
.tgrp.ga {
  background: rgba(99, 102, 241, 0.13);
  color: #a5b4fc;
}
.tgrp.gb {
  background: var(--pre-g);
  color: var(--pre-l);
}
.footer-note {
  text-align: center;
  color: var(--t3);
  font-size: 0.72rem;
  padding: 1.6rem 0 0;
}
@media (max-width: 900px) {
  .summary-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .nav {
    flex-wrap: wrap;
    height: auto;
    padding: 0.55rem 0.9rem;
    gap: 0.5rem 0.7rem;
  }
  .nav-copy b {
    font-size: 1rem;
  }
  .nav-pills {
    width: 100%;
    order: 3;
    justify-content: space-between;
    gap: 0.3rem;
    margin-left: 0;
  }
  .npill {
    flex: 1;
    padding: 0.35rem 0.4rem;
    font-size: 0.68rem;
    text-align: center;
  }
  .page {
    padding-top: 96px;
  }
  .main {
    padding: 1rem 0.75rem 1.75rem;
  }
  .hero {
    padding: 2.5rem 0.9rem 2rem;
  }
  .summary-meta {
    grid-template-columns: 1fr;
  }
  .kpis {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .mc-av {
    width: 42px;
    height: 42px;
    font-size: 0.72rem;
  }
  .mc-ctr {
    min-width: 70px;
  }
  .mc-time {
    font-size: 1rem;
  }
}
