/* ============================================================
   SMARTOUCH — HOME CSS
   Hero, Stats bar, Services bento, Products, Clients, Partners
   ============================================================ */

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav) + 80px) 0 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
}

/* Aurora blobs */
.a1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(240,35,79,.13) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: ab 12s ease-in-out infinite;
}
.a2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,47,255,.09) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  animation: ab 16s ease-in-out infinite reverse;
}
.a3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,217,180,.07) 0%, transparent 70%);
  top: 40%; left: 35%;
  animation: ab 20s ease-in-out infinite 4s;
}

/* Two-column grid */
.hero-in {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Pill badge */
.h-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px 5px 8px;
  border-radius: 999px;
  background: rgba(240,35,79,.10);
  border: 1px solid rgba(240,35,79,.25);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(240,35,79,.92);
  margin-bottom: 24px;
}
.pdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
  animation: pd 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pd {
  0%,100% { box-shadow: 0 0 5px var(--pink); }
  50%      { box-shadow: 0 0 16px var(--pink), 0 0 32px rgba(240,35,79,.35); }
}

/* Heading */
.hero-h {
  font-family: var(--fd);
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 800;
  line-height: .97;
  letter-spacing: -.04em;
  margin-bottom: 24px;
}
.hero-h .l2 {
  display: block;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-h .l3 {
  display: block;
  font-size: .62em;
  font-weight: 600;
  color: var(--w60);
  letter-spacing: -.02em;
  margin-top: 10px;
  -webkit-text-fill-color: var(--w60);
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--w60);
  line-height: 1.78;
  max-width: 400px;
  margin-bottom: 32px;
}

/* Buttons row */
.h-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

/* Hero stats */
.h-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hst {
  border-left: 2px solid rgba(240,35,79,.4);
  padding-left: 12px;
}
.hst-n {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hst-l {
  font-size: 10px;
  color: var(--w40);
  margin-top: 3px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------
   HERO 3D SCENE
   ---------------------------------------------------------- */
.hero-scene {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  cursor: grab;
  user-select: none;
}
.hero-scene:active { cursor: grabbing; }

.tilt-wrap {
  position: relative;
  width: 380px; height: 380px;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  will-change: transform;
}

/* Orbit rings */
.oring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.or1 {
  width: 280px; height: 280px;
  border: 1px solid rgba(240,35,79,.2);
  animation: orspin 22s linear infinite;
}
.or2 {
  width: 340px; height: 340px;
  border: 1px solid rgba(0,217,180,.12);
  animation: orspin 30s linear infinite reverse;
}
.or3 {
  width: 390px; height: 390px;
  border: 1px solid rgba(123,47,255,.08);
  animation: orspin 44s linear infinite;
}
@keyframes orspin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.odot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  top: 0; left: 50%;
  margin: -4px 0 0 -4px;
}
.od-pink { background: #F0234F; box-shadow: 0 0 12px #F0234F; }
.od-teal { background: #00D9B4; box-shadow: 0 0 12px #00D9B4; }

/* Core sphere */
.scene-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 120px; height: 120px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(240,35,79,.28), rgba(123,47,255,.22));
  border: 1px solid rgba(240,35,79,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 60px rgba(240,35,79,.35),
    0 0 120px rgba(240,35,79,.12),
    inset 0 1px 0 rgba(255,255,255,.1);
  animation: corefloat 4.5s ease-in-out infinite;
  z-index: 3;
}
@keyframes corefloat {
  0%,100% { transform: translate(-50%,-50%) translateY(0); }
  50%      { transform: translate(-50%,-50%) translateY(-10px); }
}
.core-img {
  width: 80px; height: 80px;
  object-fit: contain;
  pointer-events: none;
}

/* Float cards */
.fcards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}
.fc {
  position: absolute;
  border-radius: 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.10);
  padding: 11px 13px;
  min-width: 112px;
  background: rgba(255,255,255,.052);
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
}
.fc-t { top: 20px; left: 50%; animation: fcY  5s ease-in-out infinite;      transform: translateX(-50%); }
.fc-r { right: 0;  top: 50%; transform: translateY(-50%); animation: fcX  6.5s ease-in-out infinite .5s; }
.fc-b { bottom: 20px; left: 50%; transform: translateX(-50%); animation: fcY2 5.5s ease-in-out infinite 1s; }
.fc-l { left: 0;   top: 50%; transform: translateY(-50%); animation: fcX2 7s ease-in-out infinite 1.5s; }

@keyframes fcY  { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(-7px);} }
@keyframes fcY2 { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(7px);} }
@keyframes fcX  { 0%,100%{transform:translateY(-50%) translateX(0);} 50%{transform:translateY(-50%) translateX(5px);} }
@keyframes fcX2 { 0%,100%{transform:translateY(-50%) translateX(0);} 50%{transform:translateY(-50%) translateX(-5px);} }

.fc-top { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.fc-dot { width: 7px; height: 7px; border-radius: 3px; flex-shrink: 0; }
.fc-nm  { font-family: var(--fd); font-size: 10.5px; font-weight: 700; color: var(--w80); }
.fc-val { font-family: var(--fd); font-size: 18px; font-weight: 800; color: var(--w); line-height: 1; }
.fc-sub { font-size: 9px; color: var(--w40); margin-top: 2px; font-weight: 500; }

.scene-hint {
  position: absolute;
  bottom: 6px; left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: rgba(255,255,255,.18);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

/* Mobile glow — fires only when float cards are hidden */
@keyframes mobglow {
  0%,100% {
    box-shadow: 0 0 60px rgba(240,35,79,.4), 0 0 120px rgba(240,35,79,.15), inset 0 1px 0 rgba(255,255,255,.1);
  }
  50% {
    box-shadow: 0 0 100px rgba(240,35,79,.75), 0 0 200px rgba(123,47,255,.35), inset 0 1px 0 rgba(255,255,255,.18);
  }
}

/* ----------------------------------------------------------
   STATS BAR
   ---------------------------------------------------------- */
.stats-bar {
  background: var(--s1);
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
}
.stats-in {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat {
  padding: 26px 20px;
  border-right: 1px solid var(--b);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: var(--fd);
  font-size: 34px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-l {
  font-size: 11px;
  color: var(--w40);
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------
   SERVICES BENTO GRID — equal-height rows
   ---------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  grid-auto-rows: auto;
  gap: 14px;
  margin-top: 52px;
  align-items: stretch;   /* FIX: all cells in a row share the same height */
}

.bc {
  border-radius: var(--r2);
  border: 1px solid var(--b);
  background: var(--card);
  position: relative;
  overflow: hidden;
  transition: border-color .22s, background .22s, transform .22s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-self: stretch;    /* FIX: card grows to full row height */
}
.bc:hover {
  border-color: var(--b2);
  background: var(--card2);
  transform: translateY(-3px);
}
.bc::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  opacity: 0;
  transition: opacity .22s;
}
.bc:hover::before { opacity: 1; }

.bc-acc {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity .22s;
}
.bc:hover .bc-acc { opacity: 1; }

.bc-num {
  font-family: var(--fd);
  font-size: 60px;
  font-weight: 800;
  color: rgba(255,255,255,.03);
  position: absolute;
  bottom: -10px; right: 14px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Grid positions */
.bc1 { grid-column: 1/3; grid-row: 1/3; padding: 28px; }
.bc2 { grid-column: 3/5; padding: 24px; }
.bc3 { grid-column: 5/7; padding: 24px; }
.bc4 { grid-column: 3/6; padding: 24px; }
.bc5 { grid-column: 6/7; padding: 24px; }
.bc6 { grid-column: 1/3; padding: 24px; }
.bc7 { grid-column: 3/7; padding: 24px; }

/* Icons */
.bc-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 18px rgba(240,35,79,.25);
  flex-shrink: 0;
}
.bc-icon img { width: 28px; height: 28px; object-fit: contain; }

.bc-icon2 {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.bc-icon2 img { width: 26px; height: 26px; object-fit: contain; }

/* Text */
.bc-title    { font-family: var(--fd); font-size: 16px; font-weight: 700; color: var(--w); margin-bottom: 8px; }
.bc-title-sm { font-family: var(--fd); font-size: 14px; font-weight: 700; color: var(--w); margin-bottom: 7px; }
.bc-desc     { font-size: 12.5px; color: var(--w40); line-height: 1.65; flex: 1; } /* FIX: grows to fill available height */
.bc-desc-sm  { font-size: 11.5px; color: var(--w40); line-height: 1.6;  flex: 1; }

/* Tags */
.bc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.btag {
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 5px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--b);
  color: var(--w40);
}

/* Inline row layout (bc7 etc) */
.bc-row { display: flex; align-items: flex-start; gap: 16px; }
.bc-row .bc-icon2 { margin-bottom: 0; }

/* ----------------------------------------------------------
   PRODUCTS
   ---------------------------------------------------------- */
.products { background: var(--s1); }

.prod-stack { display: flex; flex-direction: column; gap: 20px; margin-top: 52px; }

.prod-card {
  border-radius: var(--r3);
  overflow: hidden;
  border: 1px solid var(--b);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  position: relative;
  transition: border-color .22s;
}
.prod-card:hover { border-color: var(--b2); }

.pc-glow  { position: absolute; inset: 0; pointer-events: none; }
.pc-gorb  {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  top: 50%; left: 30%;
  transform: translate(-50%,-50%);
}
.pc-l {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.pc-r {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pc-eye {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pc-eline {
  display: inline-block;
  width: 16px; height: 1.5px;
  border-radius: 1px;
  flex-shrink: 0;
}
.pc-name {
  font-family: var(--fd);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .92;
  margin-bottom: 12px;
}
.pc-sub    { font-size: 13px; font-weight: 500; margin-bottom: 16px; }
.pc-desc   { font-size: 13.5px; font-weight: 300; color: var(--w60); line-height: 1.78; max-width: 360px; margin-bottom: 24px; }
.pc-pills  { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.pp        { font-size: 10.5px; font-weight: 600; padding: 5px 12px; border-radius: 7px; letter-spacing: .03em; }
.pc-btns   { display: flex; gap: 10px; flex-wrap: wrap; }
.pc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 11px;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: .18s;
  border: none;
  white-space: nowrap;
  text-decoration: none;
}
.pc-btn:hover { transform: translateY(-1px); }

/* Screen mockup */
.screen {
  width: 260px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.65);
  border: 1px solid rgba(255,255,255,.10);
  animation: sf 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes sf {
  0%,100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-10px) rotate(-1.5deg); }
}
.sc-bar    { height: 28px; display: flex; align-items: center; padding: 0 12px; gap: 6px; }
.sc-dot    { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.sc-body   { padding: 14px; }
.sc-kpis   { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 10px; }
.sc-kpi    { height: 42px; border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.sc-kpi-v  { font-family: var(--fd); font-size: 12px; font-weight: 800; }
.sc-kpi-l  { font-size: 7px; opacity: .5; margin-top: 2px; text-transform: uppercase; letter-spacing: .04em; }
.sc-chart  { height: 56px; display: flex; align-items: flex-end; gap: 3px; padding: 8px; border-radius: 8px; margin-bottom: 10px; }
.sc-b      { flex: 1; border-radius: 2px 2px 0 0; }
.sc-rows   { display: flex; flex-direction: column; gap: 5px; }
.sc-row    { height: 22px; border-radius: 6px; display: flex; align-items: center; justify-content: space-between; padding: 0 8px; }
.sc-rl     { font-size: 8px; opacity: .5; font-weight: 500; }
.sc-rr     { font-size: 9px; font-weight: 700; }

/* Module strip */
.mod-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 16px; }
.mc {
  border-radius: var(--r);
  border: 1px solid var(--b);
  padding: 14px 12px;
  background: var(--card);
  transition: .2s;
  cursor: pointer;
}
.mc:hover { transform: translateY(-2px); background: var(--card2); border-color: var(--b2); }
.mc-bar   { height: 3px; border-radius: 2px; margin-bottom: 10px; }
.mc-logo  { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.mc-logo svg { flex-shrink: 0; }
.mc-name  { font-family: var(--fd); font-size: 12px; font-weight: 700; color: var(--w); }
.mc-desc  { font-size: 10.5px; color: var(--w40); line-height: 1.5; }
.mc-tag   { font-size: 9px; font-weight: 600; padding: 2px 7px; border-radius: 4px; display: inline-block; margin-top: 7px; letter-spacing: .04em; }

/* ----------------------------------------------------------
   CLIENTS SCROLL
   ---------------------------------------------------------- */
.clients-sec { padding: 80px 0; }
.cscroll {
  overflow: hidden;
  margin-top: 32px;
  position: relative;
}
.cscroll::before,
.cscroll::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.cscroll::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.cscroll::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }
.ctrack {
  display: flex;
  gap: 12px;
  animation: cscroll 30s linear infinite;
  width: max-content;
}
.ctrack:hover { animation-play-state: paused; }
@keyframes cscroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.cc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--b);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--w60);
  flex-shrink: 0;
  transition: .2s;
  cursor: pointer;
  white-space: nowrap;
}
.cc:hover {
  border-color: var(--b2);
  color: var(--w80);
  background: var(--card2);
  transform: translateY(-2px);
}
.cl-logo {
  width: 32px; height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

/* ----------------------------------------------------------
   PARTNERS
   ---------------------------------------------------------- */
.partners-sec {
  padding: 80px 0;
  border-top: 1px solid var(--b);
  background: var(--s1);
}
.pgrid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 14px;
  margin-top: 48px;
}
.pcard {
  border-radius: var(--r2);
  background: var(--card);
  border: 1px solid var(--b);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 14px;
  min-height: 100px;
  cursor: pointer;
  transition: .2s;
  text-decoration: none;
}
.pcard:hover {
  background: var(--card2);
  border-color: var(--b2);
  transform: translateY(-3px);
}
.plogo {
  width: 64px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .55;
  transition: opacity .2s;
}
.pcard:hover .plogo { opacity: 1; }
.pname {
  font-size: 11px;
  font-weight: 600;
  color: var(--w40);
  letter-spacing: .03em;
  transition: color .2s;
  text-align: center;
}
.pcard:hover .pname { color: var(--w80); }

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-in   { grid-template-columns: 1fr; text-align: center; }
  .hero-sub, .h-stats, .h-btns { justify-content: center; max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-scene { height: 400px; }
  .tilt-wrap { width: 320px; height: 320px; }
  .or1 { width: 240px; height: 240px; }
  .or2 { width: 290px; height: 290px; }
  .or3 { width: 330px; height: 330px; }
  .bento { grid-template-columns: repeat(3,1fr); }
  .bc1 { grid-column: span 1; grid-row: span 1; }
  .bc2, .bc3, .bc5 { grid-column: span 1; }
  .bc4 { grid-column: span 2; }
  .bc7 { grid-column: span 2; }
  .pgrid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .bento  { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .bc1,.bc2,.bc3,.bc5,.bc6 { grid-column: span 1; grid-row: span 1; }
  .bc4,.bc7 { grid-column: span 2; }
  .prod-card { grid-template-columns: 1fr; }
  .pc-r  { min-height: 280px; }
  .mod-strip { grid-template-columns: repeat(2,1fr); }
  .pgrid { grid-template-columns: repeat(3,1fr); }
  .stats-in { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--b); }
  .stat:nth-child(4) { border-top: 1px solid var(--b); border-right: none; }
  /* Mobile orbit: hide float cards, add glow pulse */
  .fcards { display: none; }
  .scene-core { animation: corefloat 4.5s ease-in-out infinite, mobglow 3s ease-in-out infinite; }
}

@media (max-width: 480px) {
  .hero-h    { font-size: clamp(36px, 9vw, 52px); }
  .tilt-wrap { width: 260px; height: 260px; }
  .or1 { width: 180px; height: 180px; }
  .or2 { width: 220px; height: 220px; }
  .or3 { width: 250px; height: 250px; }
  .scene-core { width: 90px; height: 90px; }
  .core-img   { width: 56px; height: 56px; }
  .bento  { grid-template-columns: 1fr; }
  .bc1,.bc2,.bc3,.bc4,.bc5,.bc6,.bc7 { grid-column: span 1; grid-row: span 1; }
  .pgrid  { grid-template-columns: repeat(2,1fr); }
  .mod-strip { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .pc-l  { padding: 28px 20px; }
  .pc-name { font-size: 38px; }
}
