:root {
  --bg: #ffffff;
  --text: #202124;
  --muted: #5f6368;
  --line: #e6e8eb;
  --line-strong: #d5d9de;
  --button-bg: #f8fafd;
  --button-hover: #eef5ff;
  --blue: #1a73e8;
  --disabled: #9aa0a6;
  --tile-width: 180px;
  font-family: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.35;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.topbar nav a:hover,
.topbar nav a[aria-current="page"] {
  color: var(--text);
}

.page {
  max-width: 1320px;
  margin: 0 auto;
  padding: 36px 32px 72px;
}

.intro {
  margin-bottom: 36px;
}

.intro h1 {
  margin: 0 0 4px;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
}

.intro p {
  margin: 0;
  color: var(--muted);
}

.shelf {
  margin-top: 34px;
}

.shelf h2 {
  margin: 0 0 22px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--tile-width), 1fr));
  gap: 38px 24px;
  align-items: start;
}

.app-grid-coming {
  max-width: var(--tile-width);
}

.app-tile {
  width: min(100%, var(--tile-width));
}

.app-icon {
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.18), 0 1px 3px rgba(60, 64, 67, 0.12);
}

.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.app-icon-mc {
  background: #050505;
}

.app-icon-mc img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.app-icon-sir img {
  width: 82%;
  height: 82%;
}

.app-icon-tropical {
  padding: 12px;
}

.app-icon-tropical img {
  width: 112%;
  height: 112%;
  max-width: none;
}

.app-icon-las {
  padding: 12px;
}

.app-copy {
  width: 142px;
  margin-top: 13px;
}

.app-copy h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0;
}

.app-copy p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  width: 168px;
  margin-top: 12px;
}

.download-row a,
.download-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--blue);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.download-row a:hover {
  background: var(--button-hover);
  border-color: #c6dafc;
}

.download-row button {
  color: var(--disabled);
  cursor: not-allowed;
}

@media (max-width: 720px) {
  .topbar {
    padding: 0 18px;
  }

  .page {
    padding: 28px 18px 56px;
  }

  .app-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 34px 18px;
  }

  .app-tile,
  .app-grid-coming {
    width: 100%;
    max-width: none;
  }

  .app-icon {
    width: min(142px, 100%);
    aspect-ratio: 1;
    height: auto;
  }

  .app-copy,
  .download-row {
    width: min(168px, 100%);
  }
}

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