/* VYNKO App — Maqueta de diseño */

:root {
  --navy: #17233D;
  --navy-light: #1e2f4f;
  --navy-dark: #0f1829;
  --ink: #0E1626;
  --slate: #5B6B85;
  --line: #E4E8F0;
  --teal: #1FB2A3;
  --teal-dark: #179a8d;
  --teal-light: #e6f7f5;
  --gold: #E8A620;
  --gold-light: #fdf3dc;
  --off-white: #F7F8FA;
  --white: #ffffff;
  --gray-100: #E4E8F0;
  --gray-500: #5B6B85;
  --gray-700: #374151;
  --shadow-sm: 0 2px 12px rgba(23, 35, 61, 0.08);
  --shadow-md: 0 8px 32px rgba(23, 35, 61, 0.12);
  --radius: 14px;
  --radius-lg: 20px;
  --sidebar-w: 260px;
  --topbar-h: 72px;
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .topbar__title h1, .stat-card__value, .company-hero__score-value {
  font-family: var(--font-display);
}

.mono,
.stat-card__value,
.company-hero__score-value,
.phase-strip__num,
.standings td:nth-child(3),
.standings td:nth-child(4),
.standings td:nth-child(5),
.result-bar > span:last-child,
.cup-card__pts {
  font-family: var(--font-mono);
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.15em;
}

.icon--sm { width: 18px; height: 18px; }
.icon--md { width: 22px; height: 22px; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { text-decoration: none; color: inherit; }

/* ---- Layout ---- */
.app {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: var(--sidebar-w);
  background: var(--navy-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 100;
  transition: transform 0.3s ease;
}

.sidebar__brand {
  padding: 24px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sidebar__logo { width: 140px; opacity: 0.95; }

.sidebar__badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(31,178,163,0.12);
  border: 1px solid rgba(31,178,163,0.25);
  padding: 4px 10px;
  border-radius: 50px;
}

.sidebar__nav {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
}

.nav-item:hover { background: rgba(255,255,255,0.06); color: var(--white); }

.nav-item.active {
  background: rgba(31,178,163,0.18);
  color: var(--white);
  border: 1px solid rgba(31,178,163,0.3);
}

.nav-item__icon { font-size: 1.1rem; }

.sidebar__user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
}

.sidebar__user strong { display: block; font-size: 0.9rem; }
.sidebar__user span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

.app__main {
  flex: 1;
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---- Topbar ---- */
.topbar {
  height: var(--topbar-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar__menu {
  display: none;
  font-size: 1.4rem;
  color: var(--navy);
  padding: 8px;
}

.topbar__title h1 {
  font-size: 1.25rem;
  font-weight: 700;
}

.topbar__season {
  display: block;
  font-size: 0.7rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.topbar__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  background: var(--teal-light);
  color: var(--teal-dark);
}

.pill--live { animation: pulse 2s ease infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.btn-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--off-white);
  font-size: 1.1rem;
  transition: background 0.2s;
}

.btn-icon:hover { background: var(--gray-100); }

/* ---- Content ---- */
.content {
  padding: 28px;
  flex: 1;
  overflow: visible;
}

.view { display: none; animation: fadeIn 0.35s ease; overflow: visible; }
.view--active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Shared components ---- */
.avatar {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar--sm { width: 40px; height: 40px; font-size: 0.8rem; }
.avatar--xl { width: 96px; height: 96px; font-size: 1.8rem; border: 4px solid var(--white); box-shadow: var(--shadow-md); }

.panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(23,35,61,0.04);
}

.panel--navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border: none;
}

.panel--flush { padding: 0; overflow: hidden; }

.panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.panel__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.panel__header .panel__title { margin-bottom: 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}

.profile-banner .tag,
.panel:not(.panel--navy) .tag {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.tag--teal { background: var(--teal-light) !important; color: var(--teal-dark) !important; }
.tag--gold { background: var(--gold-light) !important; color: #9a7209 !important; }
.tag--navy { background: var(--off-white) !important; color: var(--navy) !important; border: 1px solid rgba(23,35,61,0.08); }

.chip {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--off-white);
  color: var(--gray-500);
  white-space: nowrap;
}

.chip--done { background: var(--teal-light); color: var(--teal-dark); }
.chip--pending { background: var(--gold-light); color: #b8860b; }
.chip--sm { font-size: 0.65rem; padding: 2px 8px; margin-left: 6px; }

.btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
}

.btn--outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: transparent;
}

.btn--outline:hover { background: rgba(255,255,255,0.1); }

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(23,35,61,0.04);
}

.stat-card__label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.stat-card__value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
}

/* ---- Perfil participante ---- */
.profile-banner {
  position: relative;
  margin-bottom: 24px;
  overflow: visible;
}

.profile-banner__cover {
  position: relative;
  z-index: 0;
  height: 140px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 45%, var(--teal-dark) 100%);
  overflow: hidden;
}

.profile-banner__cover-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 20% 80%, var(--teal) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, var(--gold) 0%, transparent 40%);
}

.profile-banner__edit {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.profile-banner__edit:hover {
  background: rgba(255,255,255,0.22);
}

.profile-banner__card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(23,35,61,0.06);
  border-top: none;
  padding: 56px 32px 28px;
  overflow: visible;
}

.profile-banner__header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.profile-banner__avatar {
  position: absolute;
  top: -48px;
  left: 32px;
  flex-shrink: 0;
  width: 104px;
  height: 104px;
  font-size: 2rem;
  border: 5px solid var(--white);
  box-shadow: 0 4px 20px rgba(23,35,61,0.15);
  z-index: 2;
}

.profile-banner__identity {
  flex: 1;
  min-width: 0;
  padding-top: 0;
  padding-left: 128px;
}

.profile-banner__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.profile-banner__name {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.profile-banner__details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-banner__details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.detail-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 8px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.profile-banner__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.profile-banner__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-banner__rank {
  text-align: right;
  padding: 10px 18px;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--gray-100);
}

.profile-banner__rank-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  margin-bottom: 2px;
}

.profile-banner__rank strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.discipline-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 500;
}

.discipline-list li:last-child { border-bottom: none; }
.discipline-list li span:first-child { font-size: 1.2rem; }
.discipline-list .chip { margin-left: auto; }

.badges { display: flex; flex-direction: column; gap: 12px; }

.badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: var(--off-white);
  border-radius: 10px;
}

.badge-item__icon { font-size: 1.6rem; }
.badge-item strong { display: block; font-size: 0.9rem; }
.badge-item p { font-size: 0.8rem; color: var(--gray-500); }

.activity-feed { display: flex; flex-direction: column; gap: 0; }

.activity-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.activity-item:last-child { border-bottom: none; }

.activity-item__dot {
  width: 10px; height: 10px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.activity-item time { font-size: 0.8rem; color: var(--gray-500); }

/* ---- Perfil empresa ---- */
.company-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.company-hero__logo {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  border: 2px solid rgba(255,255,255,0.15);
}

.company-hero__info { flex: 1; }
.company-hero__info h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 4px; }
.company-hero__info > p { opacity: 0.7; font-size: 0.9rem; }

.company-hero__score { text-align: right; }
.company-hero__score-label { display: block; font-size: 0.75rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 1px; }
.company-hero__score-value { font-size: 2.4rem; font-weight: 800; color: var(--teal); }

.phase-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.phase-strip__item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(23,35,61,0.06);
  text-align: center;
}

.phase-strip__item--done {
  border-color: var(--teal);
  background: var(--teal-light);
}

.phase-strip__item--active {
  border-color: var(--gold);
  background: var(--gold-light);
}

.phase-strip__num {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--teal);
  margin-bottom: 6px;
}

.phase-strip__item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.phase-strip__item > span:last-child {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.panel__footnote {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.roster { display: flex; flex-direction: column; gap: 8px; }

.roster-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  transition: background 0.2s;
}

.roster-item:hover { background: var(--off-white); }
.roster-item strong { display: block; font-size: 0.9rem; }
.roster-item span { font-size: 0.8rem; color: var(--gray-500); }

.results-bars { display: flex; flex-direction: column; gap: 14px; }

.result-bar {
  display: grid;
  grid-template-columns: 140px 1fr 40px;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 500;
}

.result-bar__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.result-bar__label .icon { color: var(--teal); }

.result-bar__track {
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
}

.result-bar__track div {
  height: 100%;
  background: var(--teal);
  border-radius: 4px;
}

/* ---- Tabla ---- */
.table-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.tabs { display: flex; gap: 6px; flex-wrap: wrap; }

.tab {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all 0.2s;
}

.tab:hover { color: var(--navy); }
.tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.table-toolbar__info { font-size: 0.8rem; color: var(--gray-500); }

.podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px 24px;
  background: linear-gradient(180deg, var(--teal-light) 0%, var(--white) 100%);
}

.podium__item {
  text-align: center;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  min-width: 120px;
}

.podium__item--1 { order: 2; transform: scale(1.08); border: 2px solid var(--gold); }
.podium__item--2 { order: 1; }
.podium__item--3 { order: 3; }

.podium__medal { font-size: 1.5rem; display: block; margin-bottom: 8px; }

.podium__logo {
  width: 48px; height: 48px;
  margin: 0 auto 8px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.podium__item strong { display: block; font-size: 0.9rem; }
.podium__item span { font-size: 0.8rem; color: var(--teal-dark); font-weight: 700; }

.table-wrap { overflow-x: auto; }

.standings {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.standings th {
  text-align: left;
  padding: 14px 16px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
}

.standings td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
}

.standings tbody tr:hover { background: var(--off-white); }

.standings__highlight {
  background: var(--teal-light) !important;
}

.standings__highlight:hover { background: #d4f0ec !important; }

.table-company {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.table-company__logo {
  width: 32px; height: 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

.delta { font-size: 0.8rem; font-weight: 700; text-align: center; }
.delta--up { color: var(--teal); }
.delta--down { color: #e74c3c; }

.table-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 16px;
}

/* ---- Historial ---- */
.history-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.history-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  border: 1px solid rgba(23,35,61,0.04);
}

.history-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.history-card__header > div:first-child {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.history-card__emoji { font-size: 2rem; }

.history-card__header h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.history-card__header p { font-size: 0.8rem; color: var(--gray-500); }

.history-card__result {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery__item {
  aspect-ratio: 4/3;
  border-radius: 10px;
  background: linear-gradient(135deg, hsl(var(--hue), 45%, 35%), hsl(var(--hue), 50%, 25%));
  display: flex;
  align-items: flex-end;
  padding: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s;
}

.gallery__item:hover { transform: scale(1.03); }

.gallery__item span {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.35);
  padding: 4px 8px;
  border-radius: 6px;
}

.gallery__item--wide { grid-column: span 2; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .phase-strip { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open { transform: translateX(0); }

  .app__main { margin-left: 0; }

  .topbar__menu { display: block; }

  .content { padding: 16px; }

  .profile-banner__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-banner__avatar {
    position: relative;
    top: 0;
    left: 0;
    margin: -88px auto 16px;
  }

  .profile-banner__identity {
    padding-left: 0;
    padding-top: 0;
  }

  .profile-banner__card {
    padding-top: 24px;
  }

  .profile-banner__details { align-items: center; }

  .profile-banner__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .profile-banner__tags { justify-content: center; }
  .profile-banner__rank { text-align: center; }

  .company-hero { flex-direction: column; text-align: center; }
  .company-hero__score { text-align: center; width: 100%; }

  .podium { flex-direction: column; align-items: center; }
  .podium__item { order: unset !important; transform: none !important; width: 100%; max-width: 280px; }

  .result-bar { grid-template-columns: 1fr; gap: 4px; }
}
