:root {
  --blue: #0b3d91;
  --blue-dark: #062b66;
  --orange: #f57c00;
  --ink: #0b1f44;
  --muted: #5e6b82;
  --line: #e5eaf3;
  --bg: #f6f8fb;
  --white: #fff;
  --success: #15803d;
  --warning: #b45309;
  --danger: #b91c1c;
  --shadow: 0 12px 32px rgba(11, 61, 145, .09);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Aptos, system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.section { padding: 32px 0; }
.narrow { max-width: 760px; }
.eyebrow { color: var(--blue); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; font-size: .78rem; }
.muted { color: var(--muted); }
.topbar { background: #f8fbff; border-bottom: 1px solid var(--line); font-size: .86rem; }
.topbar-grid, .header-grid, .footer-grid { display: grid; align-items: center; gap: 20px; }
.topbar-grid { grid-template-columns: 1fr auto; min-height: 38px; }
.topbar nav, .main-nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.header-grid { grid-template-columns: 190px 1fr auto; min-height: 86px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 12px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--orange));
  font-weight: 900;
}
.brand strong { display: block; font-size: 1.35rem; color: var(--blue); }
.brand em { color: var(--orange); font-style: normal; }
.brand small { display: block; color: var(--muted); font-size: .72rem; }
.search { display: grid; grid-template-columns: 160px 1fr 76px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; }
.search input, .search select { border: 0; padding: 13px 14px; min-width: 0; }
.search select { border-right: 1px solid var(--line); color: var(--muted); }
.search button, .btn, button.btn {
  border: 0; background: var(--orange); color: #fff; border-radius: 8px; padding: 11px 18px;
  font-weight: 800; cursor: pointer; display: inline-flex; justify-content: center; align-items: center; gap: 8px;
}
.btn.outline { color: var(--blue); background: #fff; border: 1px solid var(--blue); }
.btn.light { color: var(--blue); background: #edf5ff; }
.main-nav { justify-content: flex-end; font-weight: 700; font-size: .92rem; }
.cart-pill { color: #fff; background: var(--orange); border-radius: 999px; padding: 2px 7px; margin-left: 4px; }
.menu-toggle { display: none; }
.hero {
  background: linear-gradient(100deg, #f7fbff 0%, #e8f4ff 58%, #d8ecff 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; gap: 30px; min-height: 430px; }
.hero h1 { font-size: clamp(2.1rem, 4vw, 4rem); line-height: 1.05; margin: 0 0 18px; color: var(--blue-dark); }
.hero p { color: var(--muted); max-width: 560px; font-size: 1.08rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0; }
.hero-card { position: relative; }
.hero-card img { width: 100%; border-radius: 18px; filter: drop-shadow(0 22px 30px rgba(11,61,145,.2)); }
.trust-box {
  position: absolute; right: 0; top: 38px; width: 230px; background: rgba(255,255,255,.92);
  border: 1px solid var(--line); border-radius: 16px; padding: 18px; box-shadow: var(--shadow);
}
.trust-box ul { padding-left: 18px; margin: 10px 0 0; line-height: 1.9; color: var(--blue); font-weight: 700; font-size: .9rem; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.trust-item { display: flex; gap: 10px; align-items: center; color: var(--blue); font-weight: 800; }
.trust-item span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--blue); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 18px; }
.section-head h2 { margin: 0; color: var(--blue-dark); }
.section-head a { color: var(--blue); font-weight: 800; }
.category-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; }
.category-card, .seller-card, .panel, .product-card, .service-card, .stat-band {
  border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 4px 20px rgba(11,31,68,.04);
}
.category-card { padding: 12px; text-align: center; font-weight: 800; color: var(--blue); }
.category-card img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: 9px; margin-bottom: 8px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { overflow: hidden; }
.product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--bg); }
.product-info { padding: 14px; }
.product-info h3 { margin: 0 0 6px; font-size: 1rem; }
.price { color: var(--blue); font-weight: 900; font-size: 1.05rem; }
.card-meta { display: flex; justify-content: space-between; gap: 8px; color: var(--muted); font-size: .86rem; margin-top: 8px; }
.seller-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.seller-card { display: flex; align-items: center; gap: 12px; padding: 14px; }
.seller-card img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { padding: 18px; display: grid; grid-template-columns: 1fr 110px; gap: 12px; align-items: center; min-height: 150px; }
.service-card img { width: 110px; aspect-ratio: 1; object-fit: cover; border-radius: 10px; }
.stat-band { display: grid; grid-template-columns: 1.4fr repeat(5, 1fr); gap: 0; background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: #fff; overflow: hidden; }
.stat-band div { padding: 24px; border-right: 1px solid rgba(255,255,255,.18); }
.stat-band strong { display: block; font-size: 1.7rem; }
.site-footer { margin-top: 40px; background: linear-gradient(135deg, #062b66, #003d7a); color: #eaf2ff; padding-top: 34px; }
.footer-grid { grid-template-columns: 1.4fr repeat(4, 1fr); align-items: start; }
.site-footer h3 { margin: 0 0 12px; color: #fff; }
.site-footer a { display: block; color: #eaf2ff; margin: 8px 0; }
.newsletter { display: flex; gap: 8px; }
.newsletter input { min-width: 0; width: 100%; border: 0; border-radius: 8px; padding: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 28px; padding: 16px 0; font-size: .9rem; }
.alert { padding: 14px 16px; border-radius: 10px; margin: 18px 0; border: 1px solid var(--line); background: #eef5ff; color: var(--blue); }
.alert.success { background: #ecfdf3; color: var(--success); border-color: #bbf7d0; }
.alert.warning { background: #fff7ed; color: var(--warning); border-color: #fed7aa; }
.alert.danger { background: #fef2f2; color: var(--danger); border-color: #fecaca; }
.panel { padding: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 800; }
.field input, .field select, .field textarea {
  border: 1px solid var(--line); border-radius: 9px; padding: 12px; width: 100%;
}
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 13px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #f8fbff; color: var(--blue); }
.badge { display: inline-flex; border-radius: 999px; padding: 5px 10px; background: #eef2ff; color: var(--blue); font-weight: 800; font-size: .82rem; }
.badge.success { background: #dcfce7; color: var(--success); }
.badge.warning { background: #ffedd5; color: var(--warning); }
.badge.danger { background: #fee2e2; color: var(--danger); }
.dashboard { display: grid; grid-template-columns: 245px 1fr; gap: 24px; padding: 28px 0; }
.sidebar { border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 16px; align-self: start; position: sticky; top: 104px; }
.sidebar a { display: block; padding: 11px 12px; border-radius: 8px; font-weight: 800; color: var(--blue); }
.sidebar a:hover { background: #edf5ff; }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 18px; }
.kpi { padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.kpi strong { display: block; font-size: 1.7rem; color: var(--blue); }
.detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 26px; }
.cart-line { display: grid; grid-template-columns: 96px 1fr auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 96px; height: 76px; object-fit: cover; border-radius: 8px; }
.total-box { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; }

@media (max-width: 980px) {
  .header-grid { grid-template-columns: 1fr auto; }
  .menu-toggle { display: inline-flex; justify-self: end; border: 1px solid var(--line); background: #fff; border-radius: 8px; padding: 10px 12px; }
  .search, .main-nav { grid-column: 1 / -1; }
  .main-nav { display: none; justify-content: start; }
  .main-nav.open { display: flex; }
  .hero-grid, .detail-grid, .dashboard { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .product-grid, .seller-grid, .service-grid, .footer-grid, .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .trust-box { position: static; width: auto; margin-top: 12px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 22px, 1180px); }
  .topbar-grid { grid-template-columns: 1fr; padding: 8px 0; }
  .search { grid-template-columns: 1fr; }
  .search select { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-grid { min-height: auto; padding: 34px 0; }
  .trust-row, .category-grid, .product-grid, .seller-grid, .service-grid, .footer-grid, .form-grid, .kpi-grid, .stat-band { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .cart-line { grid-template-columns: 76px 1fr; }
  .cart-line form { grid-column: 1 / -1; }
}

/* Animated category icons */
.category-card {
  position: relative;
  overflow: hidden;
}
.category-card:hover .category-visual {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(11, 61, 145, .12);
}
.category-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 74px;
  margin-bottom: 10px;
  border: 1px solid #e7eef9;
  border-radius: 10px;
  background: linear-gradient(145deg, #ffffff, #f3f8ff);
  transition: transform .25s ease, box-shadow .25s ease;
}
.category-visual .shape {
  position: absolute;
  display: block;
  transition: transform .25s ease;
}
.icon-food .one {
  width: 42px; height: 22px; bottom: 17px; border-radius: 8px 8px 20px 20px;
  background: #f59e0b; animation: icon-bob 2.3s ease-in-out infinite;
}
.icon-food .two, .icon-food .three {
  width: 6px; height: 22px; top: 13px; border-radius: 999px; background: #94a3b8; opacity: .75;
  animation: steam 2s ease-in-out infinite;
}
.icon-food .two { left: 44%; }
.icon-food .three { left: 54%; animation-delay: .35s; }
.icon-fashion .one {
  width: 44px; height: 38px; bottom: 14px; border-radius: 11px 11px 8px 8px;
  background: #c47b35; animation: icon-sway 2.6s ease-in-out infinite;
}
.icon-fashion .two {
  width: 24px; height: 20px; top: 14px; border: 4px solid #8b5a2b; border-bottom: 0; border-radius: 18px 18px 0 0;
  animation: icon-sway 2.6s ease-in-out infinite;
}
.icon-fashion .three { width: 8px; height: 8px; bottom: 28px; border-radius: 50%; background: #fff7ed; }
.icon-craft .one {
  width: 46px; height: 30px; bottom: 16px; border-radius: 6px 6px 18px 18px;
  background: repeating-linear-gradient(45deg, #b87333 0 6px, #d79b55 6px 12px);
  animation: icon-bob 2.5s ease-in-out infinite;
}
.icon-craft .two { width: 34px; height: 24px; top: 13px; border: 4px solid #8b5e34; border-bottom: 0; border-radius: 20px 20px 0 0; }
.icon-craft .three { width: 9px; height: 9px; right: 34px; top: 25px; border-radius: 50%; background: #fbbf24; animation: sparkle 1.8s ease-in-out infinite; }
.icon-beauty .one {
  width: 20px; height: 46px; bottom: 13px; border-radius: 7px; background: #f48fb1;
  animation: icon-bob 2.4s ease-in-out infinite;
}
.icon-beauty .two { width: 18px; height: 13px; top: 12px; border-radius: 12px 12px 4px 4px; background: #be185d; }
.icon-beauty .three { width: 11px; height: 11px; right: 35px; top: 19px; border-radius: 50%; background: #f9a8d4; animation: sparkle 1.6s infinite; }
.icon-home .one {
  width: 48px; height: 32px; bottom: 14px; border-radius: 7px; background: #45977a;
  animation: icon-bob 2.7s ease-in-out infinite;
}
.icon-home .two { width: 38px; height: 38px; top: 13px; transform: rotate(45deg); border-radius: 5px; background: #0b3d91; }
.icon-home .three { width: 11px; height: 20px; bottom: 14px; background: #ecfdf5; border-radius: 5px 5px 0 0; }
.icon-office .one {
  width: 12px; height: 50px; border-radius: 7px; background: #49679a; transform: rotate(18deg);
  animation: pencil 2.2s ease-in-out infinite;
}
.icon-office .two { width: 12px; height: 13px; top: 12px; background: #fbbf24; transform: rotate(18deg); clip-path: polygon(50% 0,100% 100%,0 100%); }
.icon-office .three { width: 36px; height: 7px; bottom: 17px; border-radius: 999px; background: #cbd5e1; }
.icon-gadget .one {
  width: 30px; height: 48px; border-radius: 9px; background: #1f2937;
  animation: icon-bob 2.5s ease-in-out infinite;
}
.icon-gadget .two { width: 18px; height: 18px; right: 32px; top: 19px; border-radius: 50%; border: 4px solid #111827; animation: pulse-ring 1.8s infinite; }
.icon-gadget .three { width: 18px; height: 18px; right: 26px; bottom: 19px; border-radius: 50%; border: 4px solid #111827; animation: pulse-ring 1.8s .25s infinite; }
.icon-farm .one {
  width: 10px; height: 42px; bottom: 14px; border-radius: 999px; background: #3fa057;
  animation: grow 2.4s ease-in-out infinite;
}
.icon-farm .two, .icon-farm .three { width: 30px; height: 18px; top: 22px; border-radius: 30px 0 30px 0; background: #45a85c; animation: leaf 2.4s ease-in-out infinite; }
.icon-farm .two { left: 42%; transform-origin: left bottom; }
.icon-farm .three { right: 42%; transform: scaleX(-1); transform-origin: right bottom; animation-delay: .25s; }
.icon-default .one { width: 34px; height: 34px; border-radius: 50%; background: #0b3d91; animation: icon-bob 2.4s infinite; }
.category-card:hover .icon-food .one,
.category-card:hover .icon-fashion .one,
.category-card:hover .icon-craft .one,
.category-card:hover .icon-beauty .one,
.category-card:hover .icon-home .one,
.category-card:hover .icon-gadget .one,
.category-card:hover .icon-farm .one {
  animation-duration: 1.2s;
}
@keyframes icon-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes icon-sway { 0%,100% { transform: rotate(-2deg); } 50% { transform: rotate(3deg) translateY(-3px); } }
@keyframes steam { 0% { transform: translateY(8px) scaleY(.7); opacity: 0; } 45% { opacity: .75; } 100% { transform: translateY(-10px) scaleY(1.1); opacity: 0; } }
@keyframes sparkle { 0%,100% { transform: scale(.65); opacity: .45; } 50% { transform: scale(1.2); opacity: 1; } }
@keyframes pencil { 0%,100% { transform: rotate(18deg) translateY(0); } 50% { transform: rotate(23deg) translateY(-5px); } }
@keyframes pulse-ring { 0%,100% { transform: scale(.9); opacity: .55; } 50% { transform: scale(1.12); opacity: 1; } }
@keyframes grow { 0%,100% { transform: scaleY(.92); } 50% { transform: scaleY(1.08); } }
@keyframes leaf { 0%,100% { transform: rotate(-8deg); } 50% { transform: rotate(12deg) translateY(-3px); } }
/* Animated service icons */
.service-card:hover .service-visual {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 28px rgba(11, 61, 145, .12);
}
.service-visual {
  position: relative;
  width: 118px;
  height: 112px;
  justify-self: end;
  border: 1px solid #e7eef9;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffffff, #eef6ff);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-visual::before {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 10px;
  border-radius: 999px;
  background: rgba(11, 61, 145, .08);
}
.service-shape {
  position: absolute;
  display: block;
}
.icon-service-training .one {
  width: 44px; height: 34px; left: 24px; top: 34px; border-radius: 8px;
  background: #3f76d3; animation: screen-glow 2.2s ease-in-out infinite;
}
.icon-service-training .two {
  width: 32px; height: 20px; right: 18px; top: 24px; border-radius: 50% 50% 45% 45%;
  background: #f59e0b; animation: teacher-nod 2.1s ease-in-out infinite;
}
.icon-service-training .three {
  width: 50px; height: 9px; left: 20px; top: 72px; border-radius: 999px; background: #0b3d91;
}
.icon-service-training .four {
  width: 14px; height: 30px; right: 28px; top: 49px; border-radius: 999px; background: #f8c28b;
  transform-origin: top center; animation: wave-hand 1.8s ease-in-out infinite;
}
.icon-service-funding .one {
  width: 48px; height: 58px; left: 32px; top: 24px; border-radius: 8px; background: #fff7ed; border: 3px solid #f57c00;
  animation: document-float 2.4s ease-in-out infinite;
}
.icon-service-funding .two {
  width: 40px; height: 34px; right: 14px; bottom: 25px; border-radius: 6px; background: #0b3d91;
  animation: stamp-pop 2s ease-in-out infinite;
}
.icon-service-funding .three {
  width: 34px; height: 34px; left: 18px; bottom: 24px; border-radius: 50%; background: #f57c00;
  animation: coin-spin 1.9s linear infinite;
}
.icon-service-funding .four {
  width: 34px; height: 4px; left: 39px; top: 44px; border-radius: 999px; background: #fed7aa;
  box-shadow: 0 13px 0 #fed7aa, 0 26px 0 #fed7aa;
}
.icon-service-branding .one {
  width: 50px; height: 34px; left: 18px; top: 38px; border-radius: 30px 8px 8px 30px; background: #1d4ed8;
  animation: megaphone 2.2s ease-in-out infinite;
}
.icon-service-branding .two {
  width: 44px; height: 44px; right: 16px; top: 28px; border-radius: 50%; border: 8px solid #f57c00;
  animation: pulse-ring 1.6s ease-in-out infinite;
}
.icon-service-branding .three {
  width: 10px; height: 30px; left: 33px; top: 68px; border-radius: 999px; background: #0b1f44; transform: rotate(-18deg);
}
.icon-service-branding .four {
  width: 8px; height: 8px; right: 18px; top: 18px; border-radius: 50%; background: #fbbf24; animation: sparkle 1.5s ease-in-out infinite;
}
.icon-service-logistics .one {
  width: 62px; height: 34px; left: 18px; top: 43px; border-radius: 8px; background: #1580a0;
  animation: truck-drive 2.2s ease-in-out infinite;
}
.icon-service-logistics .two {
  width: 28px; height: 28px; right: 18px; top: 49px; border-radius: 5px; background: #f57c00;
  animation: box-bounce 2.2s ease-in-out infinite;
}
.icon-service-logistics .three,
.icon-service-logistics .four {
  width: 16px; height: 16px; bottom: 25px; border-radius: 50%; background: #0b1f44;
  animation: wheel 1.1s linear infinite;
}
.icon-service-logistics .three { left: 27px; }
.icon-service-logistics .four { left: 62px; }
@keyframes screen-glow { 0%,100% { box-shadow: 0 0 0 rgba(63,118,211,0); } 50% { box-shadow: 0 0 20px rgba(63,118,211,.45); } }
@keyframes teacher-nod { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes wave-hand { 0%,100% { transform: rotate(-18deg); } 50% { transform: rotate(24deg); } }
@keyframes document-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes stamp-pop { 0%,100% { transform: scale(.9) rotate(-4deg); } 50% { transform: scale(1.05) rotate(3deg); } }
@keyframes coin-spin { 0% { transform: rotateY(0deg); } 100% { transform: rotateY(360deg); } }
@keyframes megaphone { 0%,100% { transform: rotate(-4deg); } 50% { transform: rotate(6deg) translateX(3px); } }
@keyframes truck-drive { 0%,100% { transform: translateX(-2px); } 50% { transform: translateX(8px); } }
@keyframes box-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes wheel { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@media (max-width: 640px) {
  .service-visual { justify-self: start; width: 100%; max-width: 150px; }
}
/* Polished statistics band */
.stat-band-polished {
  grid-template-columns: 1.35fr repeat(5, 1fr);
  align-items: stretch;
  min-height: 118px;
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(6, 43, 102, .16);
}
.stat-band-polished > div {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 5px;
}
.stat-band-polished .stat-intro {
  align-items: flex-start;
  text-align: left;
  gap: 10px;
  padding-left: 22px;
}
.stat-intro strong {
  font-size: 1.45rem;
  line-height: 1.22;
  letter-spacing: .01em;
}
.stat-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  font-weight: 900;
  color: #fff;
}
.stat-item strong {
  font-size: 1.55rem;
  line-height: 1;
  white-space: nowrap;
}
.stat-item span:last-child {
  font-size: .88rem;
  color: #eaf2ff;
  line-height: 1.25;
}
.stat-symbol {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  margin-bottom: 3px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: .92rem;
}
@media (max-width: 980px) {
  .stat-band-polished { grid-template-columns: repeat(3, 1fr); }
  .stat-band-polished .stat-intro { grid-column: 1 / -1; align-items: center; text-align: center; }
}
@media (max-width: 640px) {
  .stat-band-polished { grid-template-columns: repeat(2, 1fr); }
  .stat-band-polished > div { padding: 17px 14px; }
  .stat-intro strong { font-size: 1.25rem; }
}