/* ZeroSpace public site, own stylesheet, not the in game design system */

@font-face {
  font-family: 'Oxanium';
  src: url('../assets/oxanium.woff2') format('woff2');
  font-weight: 300 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Chakra Petch';
  src: url('../assets/chakrapetch-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Chakra Petch';
  src: url('../assets/chakrapetch-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #17161b;
  --panel: #1d1c22;
  --panel-2: #24232a;
  --panel-3: #2c2b34;
  --line: #35333f;
  --line-soft: #2a2932;
  --text: #f2f3f5;
  --muted: #a09eab;
  --dim: #6f6d7a;
  --accent: #a000eb;
  --accent-soft: #c561ff;
  --good: #37d18b;
  --bad: #f0526c;

  --gutter: 24px;
  --page: 1240px;
  --section-y: 104px;
  --radius: 2px;
  --cut: 14px;
}

/* wide desktops and ultrawides, the column grows with the screen instead of stranding it in the middle */
@media (min-width: 1600px) {
  :root { --page: 1440px; --gutter: 32px; --section-y: 116px; }
}
@media (min-width: 2000px) {
  :root { --page: 1720px; --gutter: 40px; --section-y: 128px; }
}
@media (min-width: 2560px) {
  :root { --page: 2040px; --gutter: 48px; --section-y: 144px; }
}
@media (min-width: 3200px) {
  :root { --page: 2360px; --section-y: 160px; }
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: 'Oxanium', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
}

/* height auto keeps the html height attribute from fighting a css width */
img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: inherit; text-decoration: none; }
button, select, input { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: .015em;
  text-transform: uppercase;
}
h1 { font-size: clamp(34px, 5vw, 54px); }
h2 { font-size: clamp(28px, 3.6vw, 40px); }
h3 { font-size: clamp(20px, 2.2vw, 25px); }
h4 { font-size: 17px; }
p  { margin: 0; }

.page { max-width: var(--page); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- shared pieces ---------- */

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.lede { color: var(--muted); font-size: 17px; max-width: 62ch; }

.section { padding: var(--section-y) 0; }
.section--tight { padding: 72px 0; }
.section--panel { background: var(--panel); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.section-head { display: grid; gap: 14px; justify-items: center; text-align: center; margin-bottom: 56px; }
.section-head .lede { text-align: center; }
.section-head--tight { gap: 10px; margin-bottom: 34px; }

.cut {
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--ink);
  cursor: pointer;
  transition: background .16s linear, color .16s linear, border-color .16s linear;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--text); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { background: var(--accent); border-color: var(--accent); }
.btn--sm { padding: 10px 20px; font-size: 13px; }

/* ---------- site header ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(23, 22, 27, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 74px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-brand { display: flex; align-items: center; flex: 0 0 auto; }
.nav-brand img { width: auto; height: 26px; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s linear, border-color .15s linear;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.is-active { color: var(--text); border-bottom-color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); padding: 8px; cursor: pointer; }
.nav-toggle img { width: 18px; height: 18px; }

.viewer { display: flex; align-items: center; gap: 10px; }
.viewer img { width: 32px; height: 32px; object-fit: cover; border: 1px solid var(--line); }
.viewer-name { font-size: 14px; font-weight: 600; max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.viewer-out { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); }
.viewer-out:hover { color: var(--text); }

/* ---------- hero ---------- */

.hero2 {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 74px);
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--line-soft);
  background: var(--ink);
}
.hero2-bg { position: absolute; inset: 0; }
.hero2-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero2-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 22, .38) 0%, rgba(10, 14, 22, .05) 30%, rgba(8, 12, 20, .52) 62%, rgba(10, 13, 20, .94) 88%, var(--ink) 100%);
}
.hero2-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: 140px var(--gutter) 96px;
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}
.hero2-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: #cfe9ff;
  text-shadow: 0 1px 12px rgba(8, 12, 20, .8);
}
.hero2-logo { width: min(640px, 92%); filter: drop-shadow(0 4px 26px rgba(8, 14, 24, .75)); }
.hero2-tag { font-size: 19px; color: #e8eef6; max-width: 66ch; text-shadow: 0 1px 14px rgba(8, 12, 20, .85); }
.hero2-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 6px; }
.hero2 .btn--ghost { background: rgba(10, 14, 22, .45); border-color: rgba(242, 243, 245, .4); backdrop-filter: blur(4px); }
.hero2 .btn--ghost:hover { background: var(--accent); border-color: var(--accent); }
.hero2-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 22px;
  height: 34px;
  border: 1px solid rgba(242, 243, 245, .38);
  border-radius: 11px;
}
.hero2-cue span {
  position: absolute;
  left: 50%;
  top: 7px;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  background: rgba(242, 243, 245, .7);
  border-radius: 2px;
  animation: zs-cue 1.9s ease-in-out infinite;
}

@keyframes zs-cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ---------- trailer band ---------- */

.trailer-band { border-bottom: 1px solid var(--line-soft); }
.trailer-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 56px; align-items: center; }
.trailer-copy { display: grid; gap: 18px; justify-items: start; }
.trailer-copy-cta { margin-top: 6px; }
.trailer-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  background: #000;
  cursor: pointer;
  overflow: hidden;
}
.trailer-card img { width: 100%; height: auto; opacity: .92; transition: opacity .25s linear, transform .5s cubic-bezier(.16, .84, .32, 1); }
.trailer-card:hover img { opacity: 1; transform: scale(1.025); }
.trailer-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(10, 14, 22, .72);
  border: 1px solid rgba(242, 243, 245, .5);
  display: grid;
  place-items: center;
  transition: background .18s linear, border-color .18s linear, transform .18s ease;
}
.trailer-card:hover .trailer-play { background: var(--accent); border-color: var(--accent); transform: translate(-50%, -50%) scale(1.06); }
.trailer-play-tri {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}
.trailer-label {
  position: absolute;
  left: 18px;
  bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .8);
}

.trailer-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 10, 16, .9);
  display: grid;
  place-items: center;
  padding: 4vmin;
}
.trailer-modal-box { position: relative; width: min(1280px, 100%); }
.trailer-modal-frame { aspect-ratio: 16 / 9; background: #000; border: 1px solid var(--line); }
.trailer-modal-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.trailer-modal-close {
  position: absolute;
  right: 0;
  top: -44px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}
.trailer-modal-close:hover { border-color: var(--accent); background: var(--accent); }
html.has-modal, html.has-modal body { overflow: hidden; }

/* ---------- mailing list ---------- */

.signup {
  background: var(--panel-2);
  border: 1px solid var(--line);
  padding: 28px;
  display: grid;
  gap: 14px;
}
.signup h3 { font-size: 19px; }
.signup p { color: var(--muted); font-size: 15px; }

/* ---------- gameplay cards ---------- */

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  background: var(--panel-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.card-shot { aspect-ratio: 16 / 10; overflow: hidden; background: var(--panel-3); }
.card-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card:hover .card-shot img { transform: scale(1.04); }
.card-body { display: grid; align-content: start; gap: 10px; padding: 20px 20px 24px; }
.card-body h3 { font-size: 19px; }
.card-body p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 46px;
  background: var(--accent);
}

/* ---------- feature tiles ---------- */

.feattiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feattile {
  position: relative;
  display: block;
  aspect-ratio: 16 / 8.4;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel-2);
}
.feattile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.16, .84, .32, 1), filter .3s linear;
}
.feattile:hover img { transform: scale(1.05); filter: saturate(1.12); }
.feattile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(12, 14, 20, .55) 62%, rgba(10, 12, 18, .95) 100%);
}
.feattile-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 22px 24px;
}
.feattile-body b { font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.feattile-body span { color: #c8ccd6; font-size: 14px; line-height: 1.55; max-width: 60ch; }

/* ---------- join band ---------- */

.join-band { position: relative; overflow: hidden; border-top: 1px solid var(--line-soft); }
.join-band-bg { position: absolute; inset: -60px 0; }
.join-band-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.join-band-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(23, 22, 27, .55) 40%, rgba(23, 22, 27, .72) 75%, var(--ink) 100%);
}
.join-band .page { position: relative; }
.join-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.join-copy { display: grid; gap: 16px; justify-items: start; }
.join-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

/* ---------- community page ---------- */

.comm-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.comm-hero-bg { position: absolute; inset: -60px 0; }
.comm-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.comm-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 22, 27, .62) 0%, rgba(23, 22, 27, .5) 45%, var(--ink) 100%);
}
.comm-hero-inner {
  position: relative;
  max-width: var(--page);
  margin: 0 auto;
  padding: 120px var(--gutter) 88px;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}
.comm-hero-inner .lede { text-align: center; max-width: 70ch; }
.comm-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 8px; }

.gcar { position: relative; max-width: 1080px; margin: 0 auto; }
.gcar-frame { display: block; background: var(--panel-2); border: 1px solid var(--line); overflow: hidden; }
.gcar-frame--still { cursor: default; }
.gcar-frame img { width: 100%; height: auto; opacity: 1; transition: opacity .16s linear; }
.gcar-frame img.is-fading { opacity: 0; }
.gcar-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(10, 12, 18, .78);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s linear, border-color .15s linear;
}
.gcar-arrow:hover { background: var(--accent); border-color: var(--accent); }
.gcar-arrow--prev { left: -22px; }
.gcar-arrow--next { right: -22px; }
.gcar-dots { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.gcar-dot {
  width: 26px;
  height: 4px;
  padding: 0;
  border: 0;
  background: var(--line);
  cursor: pointer;
  transition: background .15s linear;
}
.gcar-dot.is-active { background: var(--accent); }

.patch-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.patch-nav { display: flex; align-items: center; gap: 12px; }
.patch-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--panel-2);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s linear, border-color .15s linear, opacity .15s linear;
}
.patch-btn:hover:not(:disabled) { background: var(--accent); border-color: var(--accent); }
.patch-btn:disabled { opacity: .35; cursor: default; }
.patch-count { font-size: 13px; letter-spacing: .14em; color: var(--dim); font-variant-numeric: tabular-nums; }
.patch-card { background: var(--panel-2); border: 1px solid var(--line); padding: 34px clamp(24px, 4vw, 56px) 42px; }
.patch-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 18px;
  margin-bottom: 22px;
}
.patch-date { color: var(--dim); font-size: 14px; letter-spacing: .08em; }
.patch-prose { max-width: 76ch; display: grid; gap: 10px; }
.patch-prose h3 { font-size: 20px; margin-top: 14px; color: var(--accent-soft); }
.patch-prose h4 { font-size: 16px; margin-top: 12px; letter-spacing: .08em; }
.patch-prose p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.patch-prose ul { margin: 0; padding-left: 22px; display: grid; gap: 6px; }
.patch-prose li { color: var(--muted); font-size: 15px; line-height: 1.6; }
.patch-prose b { color: var(--text); }

.sector-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.sector-card {
  background: var(--panel-2);
  border: 1px solid var(--line);
  padding: 26px 26px 30px;
  display: grid;
  gap: 12px;
  align-content: start;
}
.sector-kind { font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-soft); }
.sector-card h3 { font-size: 19px; }
.sector-body { color: var(--muted); font-size: 15px; line-height: 1.6; }
.sector-meta { color: var(--dim); font-size: 13px; }
.sector-card .btn { justify-self: start; margin-top: 4px; }
.sector-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.sector-list a {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 15px;
  color: var(--text);
  transition: color .15s linear;
}
.sector-list a:hover { color: var(--accent-soft); }
.sector-list a span { color: var(--dim); font-size: 12px; letter-spacing: .06em; white-space: nowrap; }
.sector-more { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.sector-more:hover { color: var(--text); }

/* ---------- footer ---------- */

.footer { background: var(--panel); border-top: 1px solid var(--line-soft); padding: 64px 0 40px; }
.footer-brands { display: flex; align-items: center; justify-content: center; gap: 36px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-brands img { height: 30px; width: auto; opacity: .85; }
.footer-brands-divider { width: 1px; height: 34px; background: var(--line); }
.footer-grid { display: grid; grid-template-columns: 200px 1fr auto; gap: 40px; align-items: center; }
.footer-esrb img { width: 88px; }
.footer-note { color: var(--dim); font-size: 13px; }
.footer-socials { display: flex; gap: 16px; align-items: center; }
.footer-socials img { width: 22px; height: 22px; opacity: .7; transition: opacity .15s linear; }
.footer-socials a:hover img { opacity: 1; }
.footer-bar {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.footer-links a:hover { color: var(--text); }

/* ---------- rankings ---------- */

.board-head {
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, var(--panel) 0%, var(--ink) 100%);
  padding: 52px 0 40px;
}
.board-head-inner { display: grid; gap: 12px; }

.filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.filter { display: grid; gap: 8px; }
/* the display grid above beats the browser default for hidden so a war board picker needs this to go away */
.filter[hidden] { display: none; }
.filter label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
}
.filter select {
  width: 100%;
  padding: 12px 14px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 19px) 22px, calc(100% - 14px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.filter select:focus { outline: none; border-color: var(--accent); }

.board-note { margin-top: 18px; color: var(--dim); font-size: 13px; min-height: 20px; }

/* desktop keeps no scroll box here, one would pin the sticky header over the first rows */

.board {
  width: 100%;
  border-collapse: collapse;
  min-width: 880px;
  font-family: 'Chakra Petch', 'Oxanium', sans-serif;
}
.board thead th {
  position: sticky;
  top: 74px;
  z-index: 5;
  background: var(--panel);
  text-align: left;
  padding: 14px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.board tbody td {
  padding: 12px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
  font-size: 15px;
}
.board tbody tr:hover td { background: var(--panel-2); }
.board tbody tr.is-viewer td { background: rgba(160, 0, 235, .14); }
.board tbody tr.is-viewer td:first-child { box-shadow: inset 3px 0 0 var(--accent); }

.col-pos { width: 72px; text-align: right; font-variant-numeric: tabular-nums; color: var(--muted); }
.col-num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.col-mmr { font-weight: 600; font-size: 17px; }

.pos-medal { color: var(--accent-soft); font-weight: 600; }

.who { display: flex; align-items: center; gap: 12px; min-width: 200px; }
.who-face { position: relative; width: 42px; height: 42px; flex: 0 0 auto; }
.who-face img.face { width: 100%; height: 100%; object-fit: cover; background: var(--panel-3); border: 1px solid var(--line); }
.who-face img.frame { position: absolute; inset: -5px; width: calc(100% + 10px); height: calc(100% + 10px); object-fit: contain; pointer-events: none; }
.who-name { font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 260px; }

.league { display: flex; align-items: center; gap: 10px; min-width: 128px; }
.league img { width: 30px; height: 30px; object-fit: contain; }
.league span { font-size: 14px; color: var(--muted); white-space: nowrap; }

.wr { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.wr-bar { width: 56px; height: 5px; background: var(--panel-3); overflow: hidden; }
/* block or the percent width and full height are thrown away on an inline span */
.wr-fill { display: block; height: 100%; background: var(--good); }
.wr-num { font-variant-numeric: tabular-nums; width: 44px; text-align: right; }

/* one capped column per faction so numbers line up and stay tight on a wide screen */
.chips { display: grid; grid-template-columns: repeat(5, minmax(0, 82px)); gap: 4px; min-width: 342px; }
.chip {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  font-size: 12px;
  padding: 3px 7px;
  background: var(--panel-3);
  border: 1px solid var(--line);
  color: var(--dim);
  white-space: nowrap;
}
.chip b { font-weight: 600; color: var(--muted); font-variant-numeric: tabular-nums; }
.chip.is-top { border-color: var(--accent); color: var(--text); }
.chip.is-top b { color: var(--text); }

.board-empty { padding: 60px 0; text-align: center; color: var(--dim); }

.pager { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 32px 0 8px; }
.pager span { color: var(--dim); font-size: 14px; }

.mine {
  margin-bottom: 26px;
  border: 1px solid var(--accent);
  background: rgba(160, 0, 235, .1);
}
.mine-label {
  padding: 8px 16px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.mine .board tbody tr.is-viewer td { background: transparent; }
.mine .board tbody tr.is-viewer td:first-child { box-shadow: none; }
.mine .board tbody td { border-bottom: 0; }

.signin-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  background: var(--panel-2);
}
.signin-copy { display: grid; gap: 4px; }
.signin-copy p:last-child { color: var(--muted); font-size: 15px; }

.board-unranked {
  margin-bottom: 26px;
  padding: 16px 24px;
  border: 1px solid var(--line-soft);
  background: var(--panel-2);
  color: var(--muted);
  font-size: 15px;
}

.is-loading { opacity: .45; transition: opacity .12s linear; }

/* ---------- wide screens ---------- */

/* the column above grows with the screen, these keep type and reading width sane while it does */
@media (min-width: 2000px) {
  body { font-size: 18px; }
  .lede { font-size: 19px; max-width: 68ch; }
  .hero2-logo { width: min(760px, 92%); }
  .hero2-tag { font-size: 21px; }
  .card-body { padding: 24px 24px 28px; }
  .card-body p { font-size: 15px; }
  .trailer-grid, .join-grid { max-width: 1720px; margin: 0 auto; }
  .board tbody td { font-size: 16px; padding: 14px; }
  .col-mmr { font-size: 19px; }
  .who-face { width: 48px; height: 48px; }
}

@media (min-width: 2560px) {
  body { font-size: 19px; }
  .hero2-logo { width: min(860px, 92%); }
  .trailer-grid, .join-grid { max-width: 1860px; }
  .feattile-body b { font-size: 23px; }
  .footer-brands img { height: 36px; }
}

/* wide but short monitor gets a tighter hero so the cta row stays above the fold */
@media (min-width: 1600px) and (max-height: 1600px) {
  .hero2-inner { padding: 110px var(--gutter) 72px; gap: 18px; }
  .hero2-logo { width: min(560px, 92%); }
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .trailer-grid { grid-template-columns: 1fr; gap: 36px; }
  .join-grid { grid-template-columns: 1fr; gap: 40px; }
  .feattiles { grid-template-columns: 1fr; }
  .filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sector-grid { grid-template-columns: 1fr; }
  .gcar-arrow--prev { left: 8px; }
  .gcar-arrow--next { right: 8px; }
}

/* narrow screens scroll the table sideways, so the header drops sticky and stays with its rows */
@media (max-width: 1180px) {
  .board-wrap { overflow-x: auto; }
  .board thead th { position: static; }
}

/* the full link row plus both buttons stop fitting well before the tablet layout does */
@media (max-width: 1180px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 14px var(--gutter); width: 100%; border-bottom: 0; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-actions { margin-left: 0; }
}

@media (max-width: 860px) {
  :root { --section-y: 68px; }
  .cards { grid-template-columns: 1fr; }
  .hero2-inner { padding: 110px var(--gutter) 84px; }
  .hero2-cta .btn--big { padding: 14px 22px; font-size: 14px; letter-spacing: .14em; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; justify-items: start; }
}

@media (max-width: 680px) {
  .nav-store, .nav-press { display: none; }
  .nav-brand img { height: 22px; }
}

@media (max-width: 560px) {
  .filters { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; align-items: flex-start; }
  .viewer-name { max-width: 92px; }
}

/* ---------- motion ---------- */

/* pages work with no script, the reveal styles only exist once site.js stamps the html tag */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16, .84, .32, 1);
}
html.js [data-reveal].is-in { opacity: 1; transform: none; }
html.js [data-tilt].is-in { transition: opacity .7s ease, box-shadow .2s linear, border-color .2s linear; }

.facgrid a:nth-child(2), .cards .card:nth-child(2), .traits .trait:nth-child(2), .mercgrid a:nth-child(2) { transition-delay: .08s; }
.facgrid a:nth-child(3), .cards .card:nth-child(3), .traits .trait:nth-child(3), .mercgrid a:nth-child(3) { transition-delay: .16s; }
.facgrid a:nth-child(4), .mercgrid a:nth-child(4) { transition-delay: .24s; }
.mercgrid a:nth-child(5) { transition-delay: .32s; }
.mercgrid a:nth-child(6) { transition-delay: .4s; }

.stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .55;
}

@keyframes zs-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 70, 85, .55); }
  70% { box-shadow: 0 0 0 9px rgba(255, 70, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 70, 85, 0); }
}

@keyframes zs-drift {
  from { transform: translateY(0); }
  to { transform: translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .stars { display: none; }
  .live-dot { animation: none; }
  .hero2-cue { display: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------- hero extras ---------- */

.btn--big { padding: 18px 38px; font-size: 16px; letter-spacing: .2em; }

/* ---------- live streams ---------- */

.streams { background: var(--panel); border-bottom: 1px solid var(--line-soft); }
.streams-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.streams-head h2 { font-size: clamp(22px, 2.6vw, 30px); }
.live-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff4655;
  align-self: center;
  animation: zs-pulse 1.8s ease-out infinite;
}
.streams-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.streams-row[data-count="1"] { grid-template-columns: minmax(0, 640px); justify-content: center; }
.streams-row[data-count="2"] { grid-template-columns: repeat(2, minmax(0, 560px)); justify-content: center; }
/* a lone stream sits beside the heading so the band never shows a card floating in empty space */
.streams .page:has(.streams-row[data-count="1"]) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 6vw, 90px);
}
.streams .page:has(.streams-row[data-count="1"]) .streams-head { margin-bottom: 0; max-width: 340px; row-gap: 10px; }
.streams .page:has(.streams-row[data-count="1"]) .streams-row { flex: 0 1 640px; }
.stream-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--panel-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s linear, box-shadow .2s linear;
}
.stream-card:hover { transform: translateY(-4px); border-color: #ff4655; box-shadow: 0 14px 34px rgba(0, 0, 0, .45); }
.stream-thumb { position: relative; aspect-ratio: 16 / 9; background: var(--panel-3); }
.stream-thumb img { width: 100%; height: 100%; object-fit: cover; }
.stream-live {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 9px;
  background: #ff4655;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.stream-viewers {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 3px 9px;
  background: rgba(10, 10, 14, .78);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.stream-body { display: grid; gap: 4px; padding: 14px 16px 18px; }
.stream-name { font-weight: 700; font-size: 16px; }
.stream-title {
  color: var(--muted);
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.stream-platform { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); }

/* ---------- faction cards ---------- */

.facgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.faccard {
  --fac: var(--accent);
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--panel-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .2s linear, box-shadow .25s linear;
  will-change: transform;
}
.faccard-art { display: block; aspect-ratio: 1 / 1; overflow: hidden; position: relative; }
.faccard-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 17, 22, .92) 100%);
}
.faccard-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16, .84, .32, 1), filter .3s linear; }
.faccard:hover .faccard-art img { transform: scale(1.07); filter: saturate(1.15); }
.faccard:hover { border-color: var(--fac); box-shadow: 0 18px 44px rgba(0, 0, 0, .5), 0 0 24px -6px var(--fac); }
.faccard-body { display: grid; gap: 6px; padding: 18px 20px 22px; position: relative; }
.faccard-body::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 42px;
  background: var(--fac);
}
.faccard-kind { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); }
.faccard-name { font-size: 24px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.faccard-tag { font-family: 'Chakra Petch', sans-serif; font-style: normal; font-size: 13px; color: var(--fac); }
.faccard-more {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .15s linear;
}
.faccard-more .arrow { transition: transform .2s ease; font-size: 16px; }
.faccard:hover .faccard-more { color: var(--text); }
.faccard:hover .faccard-more .arrow { transform: translateX(6px); }

.mercgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.merccard {
  --fac: var(--accent);
  position: relative;
  display: grid;
  background: var(--panel-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .2s linear, box-shadow .25s linear;
  will-change: transform;
}
.merccard-art { display: block; aspect-ratio: 5 / 4; overflow: hidden; position: relative; }
.merccard-art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(18, 17, 22, .9) 100%); }
.merccard-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16, .84, .32, 1); }
.merccard:hover .merccard-art img { transform: scale(1.08); }
.merccard:hover { border-color: var(--fac); box-shadow: 0 14px 34px rgba(0, 0, 0, .45), 0 0 18px -6px var(--fac); }
.merccard-body { display: grid; gap: 3px; padding: 14px 16px 18px; }
.merccard-body b { font-size: 16px; text-transform: uppercase; letter-spacing: .05em; }
.merccard-body i { font-family: 'Chakra Petch', sans-serif; font-style: normal; font-size: 12px; color: var(--fac); }

/* ---------- home faction tease ---------- */

.factions-tease { position: relative; overflow: hidden; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.factions-tease-bg { position: absolute; inset: -60px 0; }
.factions-tease-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .16; }
.factions-tease-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, var(--ink) 0%, rgba(23, 22, 27, .4) 30%, rgba(23, 22, 27, .55) 70%, var(--ink) 100%); }
.factions-tease .page { position: relative; }
.home-mercs { display: grid; gap: 22px; margin-top: 56px; }
.home-mercs-title { text-align: center; font-size: clamp(20px, 2.2vw, 26px); letter-spacing: .08em; }
.home-mercs-more { display: flex; justify-content: center; margin-top: 4px; }
/* the hire row sits a step under the main faction cards so it caps out narrower */
.home-mercs .mercgrid { width: 71%; margin: 0 auto; }

/* ---------- faction pages ---------- */

.facpage .eyebrow { color: var(--fac); }

.fac-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line-soft); min-height: 74vh; display: flex; align-items: flex-end; }
.fac-hero-bg { position: absolute; inset: -80px 0 0; }
.fac-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.fac-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 70% at 18% 38%, color-mix(in srgb, var(--fac) 22%, transparent) 0%, transparent 68%),
    linear-gradient(180deg, rgba(23, 22, 27, .5) 0%, rgba(23, 22, 27, .62) 55%, var(--ink) 100%);
}
.fac-hero .stars { z-index: 0; }
.fac-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: 140px var(--gutter) 84px;
  display: grid;
  gap: 16px;
  justify-items: start;
}
.fac-kind {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--fac);
  padding: 6px 14px;
  border: 1px solid color-mix(in srgb, var(--fac) 55%, transparent);
  background: rgba(18, 17, 22, .55);
}
.fac-name {
  font-size: clamp(54px, 9vw, 128px);
  line-height: .96;
  letter-spacing: .02em;
  text-shadow: 0 0 44px color-mix(in srgb, var(--fac) 45%, transparent);
}
.fac-tagline {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--fac);
}
.fac-summary { color: var(--muted); font-size: 17px; max-width: 62ch; }
.fac-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }
.facpage .btn:hover { background: var(--fac); border-color: var(--fac); color: var(--ink); }
.facpage .btn--ghost:hover { color: var(--text); }

.fac-lore { border-bottom: 1px solid var(--line-soft); }
.fac-lore-grid { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
.fac-lore-head { display: grid; gap: 12px; }
.fac-lore-text { color: var(--muted); font-size: 18px; line-height: 1.75; }

.traits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: trait; }
.trait {
  position: relative;
  padding: 30px 26px 34px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  display: grid;
  gap: 10px;
  align-content: start;
  overflow: hidden;
  transition: border-color .2s linear, transform .2s ease;
}
.trait:hover { border-color: var(--fac); transform: translateY(-4px); }
.trait::before {
  counter-increment: trait;
  content: '0' counter(trait);
  position: absolute;
  right: 14px;
  top: 2px;
  font-size: 64px;
  font-weight: 800;
  color: color-mix(in srgb, var(--fac) 16%, transparent);
  line-height: 1;
}
.trait h3 { font-size: 19px; }
.trait p { color: var(--muted); font-size: 15px; }

.cmdrs { display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; }
.cmdr { margin: 0; display: grid; gap: 14px; justify-items: center; width: 200px; }
.cmdr-face { position: relative; width: 180px; height: 180px; }
.cmdr-face img, .cmdr-blank {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: transform .25s ease;
  background: var(--panel-3);
}
.cmdr-blank { display: grid; place-items: center; font-size: 56px; font-weight: 800; color: var(--dim); }
.cmdr:hover .cmdr-face img { transform: scale(1.05); }
.cmdr-face::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid color-mix(in srgb, var(--fac) 45%, transparent);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  opacity: 0;
  transition: opacity .2s linear;
}
.cmdr:hover .cmdr-face::after { opacity: 1; }
.cmdr figcaption { display: grid; gap: 2px; text-align: center; }
.cmdr b { font-size: 17px; text-transform: uppercase; letter-spacing: .06em; }
.cmdr span { color: var(--fac); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-family: 'Chakra Petch', sans-serif; }

.units { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.unit { margin: 0; display: grid; gap: 10px; }
.unit img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: radial-gradient(60% 60% at 50% 40%, color-mix(in srgb, var(--fac) 14%, var(--panel-3)) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  transition: transform .25s ease, border-color .2s linear;
}
.unit:hover img { transform: translateY(-5px); border-color: var(--fac); }
.unit figcaption { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.shots .shot { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border: 1px solid var(--line); }
.shots .shot:only-child { grid-column: 1 / -1; }

.fac-flip { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-soft); }
.fac-flip-card {
  --fac: var(--accent);
  position: relative;
  min-height: 170px;
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 6vw, 90px);
  overflow: hidden;
  border-right: 1px solid var(--line-soft);
}
.fac-flip-card:last-child { border-right: 0; }
.fac-flip-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .18; transition: opacity .25s linear, transform .4s ease; }
.fac-flip-card:hover img { opacity: .34; transform: scale(1.05); }
.fac-flip-card--next { justify-content: flex-end; text-align: right; }
.fac-flip-copy { position: relative; display: grid; gap: 4px; }
.fac-flip-copy span { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--dim); }
.fac-flip-copy b { font-size: clamp(22px, 3vw, 34px); text-transform: uppercase; letter-spacing: .04em; }
.fac-flip-card:hover .fac-flip-copy b { color: var(--fac); }

/* ---------- factions index ---------- */

.fac-index-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.fac-index-hero .fac-hero-bg { inset: -60px 0 0; }
.fac-index-hero .fac-hero-bg::after { background: linear-gradient(180deg, rgba(23, 22, 27, .58) 0%, rgba(23, 22, 27, .72) 60%, var(--ink) 100%); }
.fac-index-head {
  position: relative;
  z-index: 1;
  max-width: var(--page);
  margin: 0 auto;
  padding: 120px var(--gutter) 90px;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}
.fac-index-head .lede { text-align: center; }

.fac-outro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 44px 48px;
  background: var(--panel-2);
  border: 1px solid var(--line);
}
.fac-outro h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.fac-outro-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- faction responsive ---------- */

@media (min-width: 2000px) {
  .fac-summary { font-size: 19px; }
  .fac-lore-text { font-size: 20px; }
  .streams-row { gap: 32px; }
}

@media (max-width: 1080px) {
  .facgrid { grid-template-columns: repeat(2, 1fr); }
  .mercgrid { grid-template-columns: repeat(2, 1fr); }
  .home-mercs .mercgrid { width: 100%; }
  .fac-lore-grid { grid-template-columns: 1fr; gap: 24px; }
  .traits { grid-template-columns: 1fr; }
  .units { grid-template-columns: repeat(2, 1fr); }
  .shots { grid-template-columns: 1fr; }
  .streams-row { grid-template-columns: 1fr; }
  .streams .page:has(.streams-row[data-count="1"]) { display: block; }
  .streams .page:has(.streams-row[data-count="1"]) .streams-head { margin-bottom: 26px; max-width: none; }
  .fac-hero { min-height: 60vh; }
  .fac-hero-inner { padding: 110px var(--gutter) 60px; }
}

@media (max-width: 640px) {
  .facgrid { grid-template-columns: 1fr; }
  .mercgrid { grid-template-columns: 1fr 1fr; }
  .fac-flip { grid-template-columns: 1fr; }
  .fac-flip-card { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .fac-outro { padding: 30px 24px; }
  .btn--big { padding: 15px 26px; font-size: 14px; }
}
