:root {
  color-scheme: dark;
  --ink: #06111b;
  --night: #071829;
  --deep: #092b55;
  --blue: #0d5fbb;
  --cyan: #24e8ff;
  --lime: #b9ff1f;
  --yellow: #ffd92f;
  --gold: #f5a90b;
  --cream: #fff6cf;
  --white: #ffffff;
  --muted: #afd0ec;
  --line: rgba(255, 255, 255, 0.2);
  --panel: rgba(255, 255, 255, 0.075);
  --shadow: 0 24px 70px rgba(0, 8, 24, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: #06111b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a,
button {
  font: inherit;
}

a {
  color: inherit;
}

button {
  cursor: pointer;
}

.wrap {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: 84px;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  border-bottom: 2px solid rgba(36, 232, 255, 0.4);
  background:
    linear-gradient(120deg, rgba(255, 217, 47, 0.13), transparent 34%),
    linear-gradient(145deg, #1058a8 0%, #0a3978 36%, #071829 75%, #06111b 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -310px;
  width: 760px;
  height: 760px;
  border: 2px solid rgba(36, 232, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(36, 232, 255, 0.04), 0 0 0 118px rgba(185, 255, 31, 0.035);
}

.nav {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-block: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  color: var(--white);
  font-size: 22px;
  line-height: 1;
}

.brand em {
  color: var(--cyan);
  font-size: 12px;
  font-style: normal;
  font-weight: 1000;
}

.brand-avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border: 3px solid var(--ink);
  border-radius: 17px;
  object-fit: cover;
  object-position: center 24%;
  background: #fff;
  box-shadow: 0 5px 0 var(--ink);
  transform: rotate(-5deg);
}

.nav-menu,
.nav-social {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-menu a {
  padding: 10px 9px;
  color: #d9edff;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--cyan);
}

.nav-social a,
.button,
.contract-card button {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 5px 0 var(--ink);
  font-weight: 1000;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
}

.nav-social a {
  padding: 10px 14px;
  border-radius: 999px;
}

.nav-social a:hover,
.button:hover,
.contract-card button:hover {
  filter: brightness(1.07);
  transform: translateY(-2px);
}

.nav-social a:active,
.button:active,
.contract-card button:active {
  box-shadow: 0 1px 0 var(--ink);
  transform: translateY(4px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  gap: 36px;
  align-items: center;
  min-height: 730px;
  padding-block: 46px 86px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  color: #fff;
  font-size: 154px;
  line-height: 0.78;
  text-transform: uppercase;
  text-shadow: 0 8px 0 rgba(0, 0, 0, 0.28);
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #ecf7ff;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.27;
}

.actions,
.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: 12px;
}

.button-primary {
  background: linear-gradient(180deg, #fff28a, var(--yellow));
}

.button-quiet {
  color: #dbf6ff;
  border-color: rgba(219, 246, 255, 0.72);
  background: rgba(4, 18, 34, 0.34);
  box-shadow: 0 5px 0 rgba(4, 18, 34, 0.62);
}

.contract-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px 12px;
  align-items: center;
  max-width: 680px;
  margin-top: 23px;
  padding: 13px;
  border: 2px dashed rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  background: rgba(2, 14, 28, 0.56);
}

.contract-card span {
  grid-column: 1 / -1;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
}

.contract-card code {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #fff7b5;
  font-size: 12px;
}

.contract-card button {
  padding: 9px 13px;
  border-radius: 8px;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-photo {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: min(550px, 92%);
  aspect-ratio: 0.93;
  border: 5px solid var(--ink);
  border-radius: 34px;
  object-fit: cover;
  object-position: center 46%;
  box-shadow: 0 16px 0 var(--ink), 0 42px 80px rgba(0, 0, 0, 0.35);
  transform: translateX(-50%) rotate(1.5deg);
}

.photo-note {
  position: absolute;
  z-index: 2;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 5px 0 var(--ink);
  font-size: 13px;
  font-weight: 1000;
}

.note-top {
  top: 66px;
  left: 1%;
  transform: rotate(-6deg);
}

.note-bottom {
  right: 1%;
  bottom: 88px;
  transform: rotate(5deg);
}

.banana {
  position: absolute;
  z-index: 3;
  width: 82px;
  height: 46px;
  border-bottom: 15px solid var(--yellow);
  border-radius: 0 0 80px 80px;
  filter: drop-shadow(0 5px 0 var(--ink));
  animation: spinBanana 4s linear infinite;
}

.banana::before,
.banana::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--ink);
}

.banana::before {
  left: 8px;
}

.banana::after {
  right: 8px;
}

.b1 {
  top: 138px;
  left: -2%;
}

.b2 {
  right: -3%;
  bottom: 130px;
  animation-delay: -1.3s;
}

.b3 {
  bottom: 2px;
  left: 20%;
  animation-delay: -2.1s;
}

.hero-bottom {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-bottom span {
  padding: 19px 14px;
  color: #d7edff;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 1000;
  text-align: center;
  text-transform: uppercase;
}

.hero-bottom span:last-child {
  border-right: 0;
}

.ticker {
  width: 100%;
  overflow: hidden;
  border-block: 2px solid rgba(36, 232, 255, 0.24);
  background: #092b55;
}

.ticker div {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  padding-inline: 26px;
  color: var(--cyan);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 1000;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::before {
  content: "*";
  margin-right: 23px;
  color: var(--yellow);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.identity-copy h2,
.game-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 88px;
  line-height: 0.91;
  text-transform: uppercase;
}

.section-heading > p:last-child,
.identity-copy > p,
.game-heading > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
}

.stats-band {
  display: grid;
  grid-template-columns: minmax(230px, 1.25fr) repeat(3, minmax(170px, 0.8fr));
  gap: 12px;
  margin-top: 28px;
}

.stats-band article,
.trust-grid a,
.roadmap-grid article,
.buy-steps article,
.resource-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.stats-band article {
  min-height: 158px;
  padding: 20px;
}

.stats-band span,
.score-pill span {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.stats-band strong,
.score-pill strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 44px;
  line-height: 1;
}

.stats-band small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.progress {
  height: 16px;
  margin-top: 20px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
}

.progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--lime), var(--cyan));
}

.chart-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(36, 232, 255, 0.3);
  border-radius: 8px;
  color: #d9f9ff;
  background: #092b55;
  text-decoration: none;
}

.chart-banner span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 1000;
}

.chart-banner strong {
  color: var(--yellow);
}

.transparency,
.resources {
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: #081f37;
}

.trust-grid,
.roadmap-grid,
.buy-steps,
.resource-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid a {
  min-height: 228px;
  padding: 22px;
  text-decoration: none;
}

.trust-grid b,
.buy-steps b {
  color: var(--yellow);
  font-size: 27px;
}

.trust-grid strong,
.resource-grid strong {
  display: block;
  margin-top: 36px;
  color: #fff;
  font-size: 22px;
}

.trust-grid span,
.resource-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.identity {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  gap: 34px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--yellow);
  font-weight: 1000;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.photo-strip article {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.photo-strip img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.photo-strip .photo-statue {
  object-position: center center;
}

.photo-strip .photo-overalls {
  object-position: center center;
}

.photo-strip span {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 10px 13px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 4px 0 var(--ink);
  font-weight: 1000;
}

.roadmap {
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #08203a, #071829);
}

.roadmap-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.roadmap-grid article {
  position: relative;
  min-height: 300px;
  padding: 22px;
  overflow: hidden;
}

.roadmap-grid article::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.roadmap-grid span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 1000;
}

.roadmap-grid h3,
.buy-steps h3 {
  margin: 32px 0 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
}

.roadmap-grid p,
.buy-steps p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.roadmap-grid b {
  display: inline-flex;
  margin-top: 8px;
  color: #d7edff;
  font-size: 13px;
  text-transform: uppercase;
}

.roadmap-grid .is-complete b {
  color: var(--lime);
}

.roadmap-grid .is-active {
  border-color: rgba(255, 217, 47, 0.78);
  background: rgba(255, 217, 47, 0.1);
}

.roadmap-grid .is-active b {
  color: var(--yellow);
}

.buy-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.buy-steps article {
  min-height: 220px;
  padding: 22px;
}

.resource-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.resource-grid a {
  min-height: 116px;
  padding: 18px;
  text-decoration: none;
}

.resource-grid strong {
  margin-top: 0;
  font-size: 19px;
}

.resource-grid span {
  margin-top: 7px;
  font-size: 14px;
}

.game-section {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(155deg, rgba(13, 95, 187, 0.16), transparent 44%),
    #050f19;
}

.game-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.52fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 24px;
}

.game-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 88px;
  line-height: 0.86;
  text-transform: uppercase;
}

.game-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
}

.game-shell {
  padding: 14px;
  border: 1px solid rgba(36, 232, 255, 0.24);
  border-radius: 8px;
  background: rgba(7, 24, 41, 0.86);
  box-shadow: var(--shadow);
}

.game-top {
  display: grid;
  grid-template-columns: minmax(158px, 1.25fr) repeat(4, minmax(110px, 0.75fr));
  gap: 8px;
  margin-bottom: 8px;
}

.score-pill {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(36, 232, 255, 0.22);
  border-radius: 6px;
  background: #092743;
}

.score-pill strong {
  margin-top: 6px;
  font-size: 27px;
}

.mission-bar {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(180px, 1.3fr) minmax(84px, 0.42fr) minmax(110px, 0.55fr) auto auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 9px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(4, 18, 31, 0.84);
}

.mission-bar span {
  display: block;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 1000;
  text-transform: uppercase;
}

.mission-bar strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 14px;
  line-height: 1.1;
}

.mission-progress {
  height: 14px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
}

.mission-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--lime), var(--cyan));
  transition: width 180ms ease;
}

.game-control {
  min-height: 40px;
  padding: 8px 11px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 3px 0 var(--ink);
  font-size: 12px;
  font-weight: 1000;
  cursor: pointer;
}

.game-control:active {
  box-shadow: 0 1px 0 var(--ink);
  transform: translateY(2px);
}

.canvas-frame {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 7px;
  background: #13284a;
  aspect-ratio: 1200 / 680;
  user-select: none;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
  user-select: none;
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  padding: 22px;
  text-align: center;
  background: rgba(4, 18, 34, 0.48);
  backdrop-filter: blur(3px);
}

.game-overlay p {
  margin: 0;
  color: var(--lime);
  font-size: 14px;
  font-weight: 1000;
}

.game-overlay strong {
  color: var(--yellow);
  font-size: 82px;
  line-height: 0.9;
  text-shadow: 0 6px 0 var(--ink);
}

.game-overlay span {
  color: #fff;
  font-size: 20px;
  font-weight: 1000;
}

.game-overlay small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.game-overlay small b {
  color: var(--yellow);
}

.game-overlay.is-hidden {
  display: none;
}

.footer {
  padding-block: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #040d15;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.8fr);
  gap: 40px;
  align-items: end;
}

.footer p {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.disclaimer {
  justify-self: end;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes spinBanana {
  from { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(14deg) translateY(-18px); }
  to { transform: rotate(360deg) translateY(0); }
}

@media (max-width: 1040px) {
  .hero {
    min-height: 0;
  }

  .nav-menu {
    display: none;
  }

  .hero-grid,
  .identity,
  .game-heading {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 118px;
  }

  .hero-lead {
    font-size: 24px;
  }

  .section-heading h2,
  .identity-copy h2,
  .game-heading h2 {
    font-size: 72px;
  }

  .stats-band strong {
    font-size: 38px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .stats-band,
  .trust-grid,
  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-heading {
    gap: 16px;
  }

  .mission-bar {
    grid-template-columns: minmax(180px, 1fr) minmax(160px, 1.1fr) minmax(82px, 0.42fr) minmax(106px, 0.55fr);
  }

  .game-control {
    min-height: 36px;
  }
}

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 20px, 1240px);
  }

  .section {
    padding-block: 58px;
  }

  .nav {
    gap: 8px;
    padding-block: 13px;
  }

  .brand-avatar {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 19px;
  }

  .nav-social {
    gap: 6px;
  }

  .nav-social a {
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero-grid {
    gap: 12px;
    min-height: 0;
    padding-block: 46px 30px;
  }

  h1 {
    font-size: 68px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .actions .button-primary {
    grid-column: 1 / -1;
  }

  .contract-card {
    grid-template-columns: 1fr;
  }

  .contract-card button {
    justify-self: start;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-photo {
    bottom: 20px;
    width: min(340px, 90%);
    border-radius: 24px;
  }

  .note-top {
    top: 32px;
    left: 0;
  }

  .note-bottom {
    right: 0;
    bottom: 56px;
  }

  .banana {
    width: 62px;
    height: 36px;
    border-bottom-width: 12px;
  }

  .b1 {
    top: 110px;
  }

  .b2 {
    bottom: 95px;
  }

  .b3 {
    bottom: 0;
  }

  .hero-bottom,
  .stats-band,
  .trust-grid,
  .roadmap-grid,
  .buy-steps,
  .resource-grid,
  .game-top {
    grid-template-columns: 1fr;
  }

  .hero-bottom span {
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .ticker span {
    min-height: 54px;
    padding-inline: 17px;
  }

  .ticker span::before {
    margin-right: 14px;
  }

  .section-heading h2,
  .identity-copy h2,
  .game-heading h2 {
    font-size: 48px;
  }

  .stats-band article {
    min-height: 132px;
  }

  .chart-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-grid a {
    min-height: 176px;
  }

  .trust-grid strong {
    margin-top: 20px;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .photo-strip article,
  .photo-strip img {
    min-height: 380px;
  }

  .game-heading > p {
    font-size: 17px;
  }

  .game-shell {
    padding: 8px;
  }

  .score-pill {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 9px 11px;
  }

  .game-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .score-pill-wide {
    grid-column: 1 / -1;
  }

  .score-pill strong {
    margin-top: 0;
    font-size: 22px;
  }

  .mission-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px;
  }

  .mission-bar > div:first-child,
  .mission-progress {
    grid-column: 1 / -1;
  }

  .game-control {
    width: 100%;
  }

  .canvas-frame {
    aspect-ratio: 0.78;
  }

  .game-overlay strong {
    font-size: 48px;
  }

  .game-overlay span {
    font-size: 17px;
  }

  .roadmap-grid article {
    min-height: 220px;
  }

  .resource-grid a {
    min-height: 94px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.hero-copy,
.hero-visual,
.identity-copy,
.game-heading,
.game-shell,
.stats-band article,
.trust-grid a,
.roadmap-grid article,
.buy-steps article,
.resource-grid a {
  min-width: 0;
}
