.live-products {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}

.official-store-block {
  margin: 26px 0 52px;
  padding: 34px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--lime);
}

.official-store-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 22px;
}

.official-store-head h3 { margin-top: 7px; font-size: 30px; letter-spacing: -.04em; }
.official-store-head p { max-width: 390px; margin: 0; color: var(--muted); }
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }

.store-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  align-items: center;
  min-height: 84px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  text-decoration: none;
  transition: transform .2s, border-color .2s;
}

.store-card:hover { transform: translateY(-2px); border-color: var(--ink); }
.store-badge { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 8px; color: white; font: 800 12px var(--serif); }
.store-badge.apple { background: var(--ink); }
.store-badge.play { background: #258463; }
.store-card b,.store-card small,.store-card i { display: block; }
.store-card b { font: 700 14px var(--serif); }
.store-card small { color: var(--muted); font-size: 11px; }
.store-card i { grid-column: 2; color: #258463; font-size: 11px; font-style: normal; font-weight: 800; }

@media (max-width: 920px) { .store-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .official-store-head { display: block; }
  .official-store-head p { margin-top: 10px; }
  .official-store-block { padding: 22px; }
  .store-grid { grid-template-columns: 1fr; }
}

.live-products-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 26px;
}

.live-products-head h3 {
  margin-top: 8px;
  font-size: 34px;
  letter-spacing: -.04em;
}

.live-products-head p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.product-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.product-links > a,
.product-links > .unverified {
  display: grid;
  grid-template-columns: 44px 1fr 22px;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition: transform .2s, border-color .2s;
}

.product-links > a:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}

.product-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background: var(--ink);
  color: var(--lime);
  font: 800 11px var(--serif);
}

.product-links b,
.product-links small {
  display: block;
}

.product-links b {
  font: 700 15px var(--serif);
}

.product-links small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.product-links i {
  font-style: normal;
  font-weight: 800;
}

.product-links > .unverified {
  background: transparent;
  opacity: .62;
}

.link-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 820px) {
  .live-products-head { display: block; }
  .live-products-head p { margin-top: 12px; }
  .product-links { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .live-products { margin-top: 55px; padding-top: 38px; }
  .product-links > a,
  .product-links > .unverified { grid-template-columns: 38px 1fr 18px; padding: 10px; }
  .product-icon { width: 36px; height: 36px; }
}

.project-archive {
  margin-top: 80px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ink);
  color: white;
}

.archive-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 28px;
}

.archive-head .eyebrow { color: var(--lime); }
.archive-head h3 { margin-top: 8px; font-size: 34px; letter-spacing: -.04em; }
.archive-head p { max-width: 480px; margin: 0; color: #aeb9b4; }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.archive-grid > a,
.archive-grid > span {
  min-height: 66px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
  color: white;
  font: 700 14px var(--serif);
  text-decoration: none;
}

.archive-grid > a { background: rgba(200,241,90,.09); border-color: rgba(200,241,90,.35); }
.archive-grid > a:hover { background: var(--lime); color: var(--ink); }
.archive-grid > span { opacity: .58; }
.archive-grid small { display: block; margin-top: 5px; color: #aeb9b4; font: 400 11px var(--sans); }
.archive-grid > a:hover small { color: var(--ink); }

@media (max-width: 960px) {
  .archive-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .archive-head { display: block; }
  .archive-head p { margin-top: 12px; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .project-archive { padding: 28px; }
}

@media (max-width: 440px) {
  .archive-grid { grid-template-columns: 1fr; }
}
