:root {
  --steel: #1e3a5f;
  --steel-lift: #2a4f7c;
  --steel-bright: #4a7bb8;
  --steel-deep: #122740;
  --steel-soft: rgba(74, 123, 184, 0.12);

  --amber: #d4a24c;
  --amber-bright: #e8b85f;
  --amber-deep: #8c6e2e;

  --black: #000000;
  --ink: #07070c;
  --surface: #0e0e14;
  --surface-1: #14141c;
  --surface-2: #1b1b26;
  --surface-3: #242432;

  --white: #ffffff;
  --text: #e8e8ee;
  --text-mid: #a8a8b5;
  --text-mute: #6e6e7c;
  --text-faint: #4a4a56;

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --line-steel: rgba(74, 123, 184, 0.32);
  --line-amber: rgba(212, 162, 76, 0.32);

  --sans:
    "Sora", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: var(--black);
}
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection {
  background: var(--steel);
  color: var(--white);
}

.wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ============ Top utility bar ============ */
.topbar {
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.topbar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 9px 40px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar a {
  color: var(--text-mute);
  text-decoration: none;
}
.topbar a:hover {
  color: var(--white);
}
.topbar .tags {
  display: flex;
  gap: 24px;
}
.topbar .tags span:not(:first-child)::before {
  content: "·";
  margin-right: 24px;
  color: var(--text-faint);
}
.topbar .right {
  display: flex;
  gap: 24px;
  align-items: center;
}
.topbar .right span:not(:last-child)::after {
  content: "·";
  margin-left: 24px;
  color: var(--text-faint);
}

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 56px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
}
.header-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
.header-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
}
.header-nav a:hover {
  color: var(--white);
}
.header-nav a.is-active {
  color: var(--white);
}
.header-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--amber);
}
.header-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--line-strong);
  padding: 11px 20px;
  transition: all 0.2s;
}
.header-cta:hover {
  border-color: var(--steel-bright);
  background: var(--steel);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -10%;
  width: 900px;
  height: 700px;
  background: radial-gradient(
    ellipse at center,
    rgba(74, 123, 184, 0.18) 0%,
    rgba(30, 58, 95, 0.06) 30%,
    transparent 65%
  );
  pointer-events: none;
  filter: blur(40px);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center top, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(
    ellipse at center top,
    black 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 20px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-eyebrow .left {
  color: var(--steel-bright);
}
.hero-eyebrow .left b {
  color: var(--white);
  font-weight: 600;
}
.hero-eyebrow .right {
  color: var(--text-mute);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}

.hero h1 {
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 22ch;
  margin-bottom: 28px;
}
.hero h1 .accent {
  color: var(--steel-bright);
  font-weight: 600;
}

.hero-lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 56ch;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-lede strong {
  color: var(--white);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--steel);
  color: var(--white);
  border-color: var(--steel-bright);
}
.btn-primary:hover {
  background: var(--steel-lift);
  border-color: var(--steel-bright);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber-bright);
}
.btn .arrow {
  transition: transform 0.25s;
}
.btn:hover .arrow {
  transform: translateX(3px);
}

/* Hero side panel — at-a-glance facts */
.hero-facts {
  border: 1px solid var(--line-strong);
  background: rgba(74, 123, 184, 0.04);
  padding: 24px 26px;
  position: relative;
}
.hero-facts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--steel-bright);
}
.hero-facts h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-bright);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero-facts dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.hero-facts dl > div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.hero-facts dt {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 4px;
}
.hero-facts dd {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.005em;
}
.hero-facts dd em {
  font-style: normal;
  color: var(--amber-bright);
}

/* ============ Section base ============ */
.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.section-marker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-marker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--steel-bright);
}
.section-marker b {
  color: var(--steel-bright);
  font-weight: 600;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}
.section-title {
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 18ch;
}
.section-title .accent {
  color: var(--steel-bright);
}
.section-lede {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 60ch;
  font-weight: 300;
}
.section-lede strong {
  color: var(--white);
  font-weight: 500;
}

/* ============ Divisions: dense table ============ */
.divisions {
  border-top: 1px solid var(--line-strong);
}
.division-row {
  display: grid;
  grid-template-columns: 60px 1.3fr 1.4fr 200px 32px;
  gap: 32px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--white);
  transition:
    background 0.2s,
    padding 0.25s;
}
.division-row:hover {
  background: linear-gradient(90deg, var(--steel-soft), transparent);
  padding-left: 12px;
}
.division-row .num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  font-weight: 500;
}
.division-row .name {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.division-row .desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-mid);
  font-weight: 300;
}
.division-row .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  text-align: right;
}
.division-row .arrow {
  font-size: 16px;
  color: var(--text-mute);
  text-align: right;
  transition: all 0.2s;
}
.division-row:hover .arrow {
  color: var(--steel-bright);
  transform: translate(4px, -2px);
}
.division-row.is-vaxelrod {
  background: linear-gradient(90deg, rgba(212, 162, 76, 0.04), transparent);
  border-left: 2px solid var(--amber);
  padding-left: 12px;
}
.division-row.is-vaxelrod:hover {
  background: linear-gradient(90deg, rgba(212, 162, 76, 0.08), transparent);
  padding-left: 22px;
}
.division-row.is-vaxelrod .num {
  color: var(--amber-bright);
}
.division-row.is-vaxelrod:hover .arrow {
  color: var(--amber-bright);
}

.divisions-headrow {
  display: grid;
  grid-template-columns: 60px 1.3fr 1.4fr 200px 32px;
  gap: 32px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.divisions-headrow .right {
  text-align: right;
}

/* ============ Pillars (3-col, denser) ============ */
.pillars-section {
  background: var(--ink);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.pillar {
  padding: 36px 36px 36px 0;
  border-right: 1px solid var(--line);
}
.pillar:last-child {
  border-right: 0;
  padding-right: 0;
}
.pillar:not(:first-child) {
  padding-left: 36px;
}
.pillar .step {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--steel-bright);
  margin-bottom: 20px;
  font-weight: 500;
}
.pillar h3 {
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 14px;
  max-width: 22ch;
}
.pillar p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 42ch;
}
.pillar p strong {
  color: var(--white);
  font-weight: 500;
}

/* ============ Vaxelrod feature ============ */
.vax-feature {
  border: 1px solid var(--line-amber);
  background: linear-gradient(
    135deg,
    rgba(212, 162, 76, 0.04),
    rgba(30, 58, 95, 0.06)
  );
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.vax-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--amber);
}
.vax-feature::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.1), transparent 70%);
  pointer-events: none;
}

.vax-mark-block {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.vax-mark {
  width: 56px;
  height: 56px;
  background: var(--steel-deep);
  display: grid;
  place-items: center;
  border: 1px solid var(--amber);
  flex-shrink: 0;
}
.vax-mark svg {
  width: 32px;
  height: 32px;
}
.vax-mark-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.2;
}
.vax-mark-text .label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-bright);
}
.vax-mark-text .name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
}
.vax-mark-text .sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-mute);
}

.vax-copy {
  position: relative;
  z-index: 1;
}
.vax-copy h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 10px;
  max-width: 32ch;
}
.vax-copy h3 .accent {
  color: var(--amber-bright);
}
.vax-copy p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 56ch;
}
.vax-copy p strong {
  color: var(--white);
  font-weight: 500;
}

.vax-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: transparent;
  color: var(--amber-bright);
  border: 1px solid var(--amber);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.vax-cta:hover {
  background: var(--amber);
  color: var(--black);
}

/* ============ Partners strip ============ */
.partners-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}
.partners-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.partners-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.partners-label b {
  color: var(--steel-bright);
  font-weight: 600;
}
.partners-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partner-cell {
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  text-decoration: none;
  transition: background 0.2s;
}
.partner-cell:last-child {
  border-right: 0;
}
.partner-cell:hover {
  background: var(--steel-soft);
}
.partner-cell .pname {
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.005em;
}
.partner-cell .ptype {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ============ Engagement / CTA ============ */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: end;
}
.cta-headline {
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 18ch;
}
.cta-headline .accent {
  color: var(--steel-bright);
}
.cta-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.cta-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  transition: padding 0.25s;
}
.cta-item:hover {
  padding-left: 12px;
}
.cta-item h5 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.cta-item span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.cta-item .arrow {
  font-size: 18px;
  color: var(--steel-bright);
  transition: transform 0.25s;
  line-height: 1;
}
.cta-item:hover .arrow {
  transform: translate(6px, -3px);
}

/* ============ Support strip ============ */
.support-strip {
  background: var(--steel-deep);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 36px 0;
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.support-cell .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-bright);
  margin-bottom: 8px;
  display: block;
}
.support-cell .value {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}
.support-cell .value a {
  color: var(--white);
  text-decoration: none;
}
.support-cell .value a:hover {
  color: var(--amber-bright);
}
.support-cell .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 4px;
}

/* ============ Footer ============ */
footer {
  background: var(--ink);
  color: var(--text-mute);
  padding: 64px 0 28px;
  border-top: 1px solid var(--line-strong);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.footer-col p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 38ch;
  font-weight: 300;
}
.footer-col h6 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-bright);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-tag {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  line-height: 2;
}
.footer-tag b {
  color: var(--white);
  font-weight: 600;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto 1fr;
    gap: 24px;
  }
  .header-nav {
    display: none;
  }
  .section-head,
  .hero-grid,
  .vax-feature,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .division-row,
  .divisions-headrow {
    grid-template-columns: 50px 1fr 32px;
  }
  .division-row .desc,
  .division-row .tag,
  .divisions-headrow .col-desc,
  .divisions-headrow .col-tag {
    display: none;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .pillar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
  }
  .pillar:last-child {
    border-bottom: 0;
  }
  .pillar:not(:first-child) {
    padding-left: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vax-cta {
    justify-self: start;
  }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-cell {
    border-bottom: 1px solid var(--line);
  }
  .partner-cell:nth-child(2n) {
    border-right: 0;
  }
  .support-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .wrap {
    padding: 0 24px;
  }
  .header-inner {
    padding: 14px 24px;
  }
  .brand-logo {
    height: 40px;
  }
  .topbar-inner {
    padding: 8px 24px;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .topbar .tags,
  .topbar .right {
    flex-wrap: wrap;
  }
  .hero {
    padding: 56px 0 64px;
  }
  .section {
    padding: 64px 0;
  }
  .vax-feature {
    padding: 28px 24px;
  }
  .hero-facts dl {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .partner-cell {
    border-right: 0;
  }
}
