.home-all-catalog {
  display: none;
  background: linear-gradient(180deg, rgba(139, 123, 212, 0.18) 0%, #f5fcf8 22%, #eef8f3 100%);
  border-bottom: 1px solid rgba(26, 92, 58, 0.12);
  padding: 18px 16px 26px;
}
.home-all-catalog.is-open {
  display: block;
}
.home-all-catalog-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto 12px;
}
.home-all-catalog-title {
  margin: 0;
  font-size: clamp(0.95rem, 2.6vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #2a1d45;
  text-align: center;
}
.home-all-catalog-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.home-all-catalog.is-open .home-all-card {
  animation: homeDoorCardIn 0.45s ease both;
}
.home-all-catalog.is-open .home-all-card:nth-child(1) { animation-delay: 0.02s; }
.home-all-catalog.is-open .home-all-card:nth-child(2) { animation-delay: 0.04s; }
.home-all-catalog.is-open .home-all-card:nth-child(3) { animation-delay: 0.06s; }
.home-all-catalog.is-open .home-all-card:nth-child(4) { animation-delay: 0.08s; }
.home-all-catalog.is-open .home-all-card:nth-child(5) { animation-delay: 0.1s; }
.home-all-catalog.is-open .home-all-card:nth-child(6) { animation-delay: 0.12s; }
.home-all-catalog.is-open .home-all-card:nth-child(7) { animation-delay: 0.14s; }
.home-all-catalog.is-open .home-all-card:nth-child(8) { animation-delay: 0.16s; }
.home-all-catalog.is-open .home-all-card:nth-child(9) { animation-delay: 0.18s; }
.home-all-catalog.is-open .home-all-card:nth-child(10) { animation-delay: 0.2s; }
.home-all-catalog.is-open .home-all-card:nth-child(11) { animation-delay: 0.22s; }
.home-all-catalog.is-open .home-all-card:nth-child(12) { animation-delay: 0.24s; }
.home-all-catalog.is-open .home-all-card:nth-child(13) { animation-delay: 0.26s; }
.home-all-catalog.is-open .home-all-card:nth-child(14) { animation-delay: 0.28s; }
.home-all-catalog.is-open .home-all-card:nth-child(15) { animation-delay: 0.3s; }
.home-all-catalog.is-open .home-all-card:nth-child(16) { animation-delay: 0.32s; }
.home-all-catalog.is-open .home-all-card:nth-child(n+17) { animation-delay: 0.34s; }
@keyframes homeDoorCardIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.home-all-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .home-all-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .home-all-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 380px) {
  .home-all-grid { grid-template-columns: 1fr; }
}
.home-all-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-height: 148px;
  padding: 14px 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(106, 90, 205, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #f7f4ff 100%);
  color: #2a1d45;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 14px rgba(42, 29, 69, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-sizing: border-box;
  cursor: pointer;
  font-family: inherit;
}
.home-all-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(42, 29, 69, 0.12);
  border-color: rgba(106, 90, 205, 0.35);
}
.home-all-card:focus-visible {
  outline: 2px solid var(--purple, #a693ef);
  outline-offset: 2px;
}
.home-all-card > i,
.home-all-card__main > i {
  font-size: 1.25rem;
  line-height: 1;
  color: #6a5acd !important;
  -webkit-text-fill-color: #6a5acd !important;
}
.home-all-card > span,
.home-all-card__main > span {
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  /* Beat body.ios-theme a { color / -webkit-text-fill-color !important } */
  color: #2a1d45 !important;
  -webkit-text-fill-color: #2a1d45 !important;
}
a.home-all-card,
a.home-all-card:visited,
a.home-all-card:hover,
body.ios-theme a.home-all-card,
body.ios-theme a.home-all-card:visited,
body.ios-theme a.home-all-card:hover {
  color: #2a1d45 !important;
  -webkit-text-fill-color: #2a1d45 !important;
}
.home-all-card--card {
  background: linear-gradient(180deg, #5a4a78 0%, #6b5a8a 100%);
  border-color: rgba(255, 198, 75, 0.32);
  color: rgba(255, 255, 255, 0.94) !important;
}
.home-all-card--card > i {
  color: #ffc64b !important;
  -webkit-text-fill-color: #ffc64b !important;
}
.home-all-card--card > span {
  color: rgba(255, 255, 255, 0.96) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.96) !important;
}
a.home-all-card--card,
a.home-all-card--card:visited,
a.home-all-card--card:hover,
body.ios-theme a.home-all-card--card,
body.ios-theme a.home-all-card--card:visited,
body.ios-theme a.home-all-card--card:hover {
  color: rgba(255, 255, 255, 0.96) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.96) !important;
  background: linear-gradient(180deg, #5a4a78 0%, #6b5a8a 100%);
  border-color: rgba(255, 198, 75, 0.32);
}
/* Space + Book + Find Som — dark purple + yellow */
.home-all-card--space,
.home-all-card--instant,
.home-all-card--find,
a.home-all-card--space,
a.home-all-card--instant,
a.home-all-card--find,
a.home-all-card--space:visited,
a.home-all-card--instant:visited,
a.home-all-card--find:visited,
a.home-all-card--space:hover,
a.home-all-card--instant:hover,
a.home-all-card--find:hover,
body.ios-theme a.home-all-card--space,
body.ios-theme a.home-all-card--instant,
body.ios-theme a.home-all-card--find,
body.ios-theme a.home-all-card--space:visited,
body.ios-theme a.home-all-card--instant:visited,
body.ios-theme a.home-all-card--find:visited,
body.ios-theme a.home-all-card--space:hover,
body.ios-theme a.home-all-card--instant:hover,
body.ios-theme a.home-all-card--find:hover {
  background: linear-gradient(180deg, #1e1435 0%, #2a1d45 100%);
  border-color: rgba(255, 198, 75, 0.28);
  color: rgba(255, 255, 255, 0.94) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.94) !important;
}
.home-all-card--space > i,
.home-all-card--instant > i,
.home-all-card--find > i {
  color: #ffc64b !important;
  -webkit-text-fill-color: #ffc64b !important;
}
.home-all-card--space > span,
.home-all-card--instant > span,
.home-all-card--find > span {
  color: rgba(255, 255, 255, 0.94) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.94) !important;
}
.home-all-card--labels { background: linear-gradient(180deg, #fff4d6 0%, #ffe9a8 100%); border-color: rgba(255, 198, 75, 0.45); color: #3d2808 !important; }
.home-all-card--labels > i { color: #c48a12 !important; -webkit-text-fill-color: #c48a12 !important; }
.home-all-card--labels > span { color: #3d2808 !important; -webkit-text-fill-color: #3d2808 !important; }
.home-all-card--data { background: linear-gradient(180deg, #f3f0fa 0%, #e8e2f5 100%); border-color: rgba(122, 90, 168, 0.35); color: #2a1d45 !important; }
.home-all-card--data > i { color: #7a5aa8 !important; -webkit-text-fill-color: #7a5aa8 !important; }
.home-all-card--data > span { color: #2a1d45 !important; -webkit-text-fill-color: #2a1d45 !important; }
.home-all-card--air { background: linear-gradient(180deg, #fff8f6 0%, #ffece8 100%); border-color: rgba(240, 139, 131, 0.35); color: #4a2a28 !important; }
.home-all-card--air > i { color: #e06b5f !important; -webkit-text-fill-color: #e06b5f !important; }
.home-all-card--air > span { color: #4a2a28 !important; -webkit-text-fill-color: #4a2a28 !important; }
.home-all-card--money {
  background: linear-gradient(180deg, #fff5f5 0%, #ffe4e4 100%);
  border-color: rgba(200, 40, 40, 0.35);
  color: #9a1a1a !important;
}
.home-all-card--money > i {
  color: #c62828 !important;
  -webkit-text-fill-color: #c62828 !important;
}
.home-all-card--money > span {
  color: #b71c1c !important;
  -webkit-text-fill-color: #b71c1c !important;
}
a.home-all-card--money,
a.home-all-card--money:visited,
a.home-all-card--money:hover,
body.ios-theme a.home-all-card--money,
body.ios-theme a.home-all-card--money:visited,
body.ios-theme a.home-all-card--money:hover {
  color: #b71c1c !important;
  -webkit-text-fill-color: #b71c1c !important;
}
.home-all-card--software { background: linear-gradient(180deg, #eef8f4 0%, #d8f0e6 100%); border-color: rgba(40, 140, 90, 0.35); color: #1a3d2a !important; }
.home-all-card--software > i { color: #288c5a !important; -webkit-text-fill-color: #288c5a !important; }
.home-all-card--software > span { color: #1a3d2a !important; -webkit-text-fill-color: #1a3d2a !important; }
a.home-all-card--software,
a.home-all-card--software:visited,
a.home-all-card--software:hover,
body.ios-theme a.home-all-card--software,
body.ios-theme a.home-all-card--software:visited,
body.ios-theme a.home-all-card--software:hover {
  color: #1a3d2a !important;
  -webkit-text-fill-color: #1a3d2a !important;
}
.home-all-card--ext .home-all-card__main > i { color: #c48a12 !important; -webkit-text-fill-color: #c48a12 !important; }
.home-all-card--ext .home-all-card__main > span { color: #3d2808 !important; -webkit-text-fill-color: #3d2808 !important; }
.home-all-card--ext .home-all-card__dl {
  background: #c48a12;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.home-all-card--trust { background: linear-gradient(180deg, #eef4ff 0%, #dde8ff 100%); border-color: rgba(44, 100, 180, 0.3); color: #1a2d4a !important; }
.home-all-card--trust > i { color: #2c64b4 !important; -webkit-text-fill-color: #2c64b4 !important; }
.home-all-card--trust > span { color: #1a2d4a !important; -webkit-text-fill-color: #1a2d4a !important; }
.home-all-card--protect { background: linear-gradient(180deg, #eefaf4 0%, #ddf5ea 100%); border-color: rgba(40, 140, 90, 0.3); color: #1a3d2a !important; }
.home-all-card--protect > i { color: #288c5a !important; -webkit-text-fill-color: #288c5a !important; }
.home-all-card--protect > span { color: #1a3d2a !important; -webkit-text-fill-color: #1a3d2a !important; }
.home-all-card--together { background: linear-gradient(180deg, #fff6ee 0%, #ffe8d4 100%); border-color: rgba(180, 90, 42, 0.3); color: #3d2410 !important; }
.home-all-card--together > i { color: #b45a2a !important; -webkit-text-fill-color: #b45a2a !important; }
.home-all-card--together > span { color: #3d2410 !important; -webkit-text-fill-color: #3d2410 !important; }
.home-all-card--build { background: linear-gradient(180deg, #f5f2ff 0%, #ebe4ff 100%); border-color: rgba(106, 90, 205, 0.32); color: #2a1d45 !important; }
.home-all-card--build > i { color: #6a5acd !important; -webkit-text-fill-color: #6a5acd !important; }
.home-all-card--build > span { color: #2a1d45 !important; -webkit-text-fill-color: #2a1d45 !important; }

/* Standalone /all.html — catalog always visible */
.home-all-catalog {
  display: block !important;
  visibility: visible !important;
  margin: 0 auto;
  max-width: 1100px;
  padding: 12px 16px 40px;
}
.home-all-catalog .home-all-card {
  animation: homeDoorCardIn 0.45s ease both;
}
.page-all-back {
  display: block;
  text-align: center;
  margin: 10px 0 0;
  font-size: 0.88rem;
}
.page-all-back a {
  color: #5a4a8a;
  font-weight: 700;
  text-decoration: none;
}
.page-all-back a:hover { text-decoration: underline; }
.page-all-hero {
  text-align: center;
  padding: 14px 16px 12px;
  margin: 0;
  background: linear-gradient(180deg, rgba(139, 123, 212, 0.2) 0%, #f7fbf9 55%, #eef8f3 100%);
  border-bottom: 1px solid rgba(26, 92, 58, 0.1);
}
.page-all-hero h1 {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 3.2vw, 1.72rem);
  font-weight: 800;
  color: #2a1d45;
  letter-spacing: -0.02em;
}
.page-all-hero p {
  margin: 0 auto;
  max-width: 36em;
  color: #4a5070;
  font-size: 0.92rem;
  line-height: 1.42;
}
body.ios-theme.page-all .page-all-hero h1 {
  color: #2a1d45 !important;
  -webkit-text-fill-color: #2a1d45 !important;
}
body.ios-theme.page-all .page-all-hero p {
  color: #4a5070 !important;
  -webkit-text-fill-color: #4a5070 !important;
}
body.ios-theme.page-all .page-all-back a {
  color: #5b4d9a !important;
}

.home-all-card__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  text-decoration: none;
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}
button.home-all-card__main {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
}
.home-all-card small {
  display: block;
  margin: 0;
  max-width: 14em;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.25;
  color: #3a3348 !important;
  -webkit-text-fill-color: #3a3348 !important;
}
.home-all-card--space small,
.home-all-card--find small,
.home-all-card--card small,
.home-all-card--instant small {
  color: rgba(255, 255, 255, 0.88) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.88) !important;
}
.home-all-card__dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #2a1d45;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  border: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}
.home-all-card__dl i {
  font-size: 0.86rem;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.home-all-card__dl span {
  font-size: 0.88rem !important;
  font-weight: 800;
  letter-spacing: 0;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.home-all-card--space .home-all-card__dl,
.home-all-card--find .home-all-card__dl,
.home-all-card--card .home-all-card__dl {
  background: #ffc64b;
  color: #2a1d45 !important;
  -webkit-text-fill-color: #2a1d45 !important;
}
.home-all-card--space .home-all-card__dl i,
.home-all-card--find .home-all-card__dl i,
.home-all-card--card .home-all-card__dl i,
.home-all-card--space .home-all-card__dl span,
.home-all-card--find .home-all-card__dl span,
.home-all-card--card .home-all-card__dl span {
  color: #2a1d45 !important;
  -webkit-text-fill-color: #2a1d45 !important;
}

.home-all-card--space .home-all-card__main > i,
.home-all-card--find .home-all-card__main > i,
.home-all-card--card .home-all-card__main > i {
  color: #ffc64b !important;
  -webkit-text-fill-color: #ffc64b !important;
}
.home-all-card--space .home-all-card__main > span,
.home-all-card--find .home-all-card__main > span,
.home-all-card--card .home-all-card__main > span {
  color: rgba(255, 255, 255, 0.96) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.96) !important;
}
.home-all-card--air .home-all-card__main > i {
  color: #e06b5f !important;
  -webkit-text-fill-color: #e06b5f !important;
}
.home-all-card--air .home-all-card__main > span {
  color: #4a2a28 !important;
  -webkit-text-fill-color: #4a2a28 !important;
}
.home-all-card--protect .home-all-card__main > i {
  color: #288c5a !important;
  -webkit-text-fill-color: #288c5a !important;
}
.home-all-card--protect .home-all-card__main > span {
  color: #1a3d2a !important;
  -webkit-text-fill-color: #1a3d2a !important;
}

/* Beat body.ios-theme yellow/light links on pastel tickets */
body.ios-theme.page-all .home-all-card,
body.ios-theme.page-all .home-all-card__main,
body.ios-theme.page-all a.home-all-card,
body.ios-theme.page-all a.home-all-card:visited,
body.ios-theme.page-all a.home-all-card:hover {
  -webkit-text-fill-color: inherit !important;
}
body.ios-theme.page-all .home-all-card small {
  color: #3a3348 !important;
  -webkit-text-fill-color: #3a3348 !important;
}
body.ios-theme.page-all .home-all-card--space small,
body.ios-theme.page-all .home-all-card--find small,
body.ios-theme.page-all .home-all-card--card small {
  color: rgba(255, 255, 255, 0.88) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.88) !important;
}
body.ios-theme.page-all .home-all-card__dl,
body.ios-theme.page-all .home-all-card__dl:visited,
body.ios-theme.page-all .home-all-card__dl:hover,
body.ios-theme.page-all .home-all-card__dl span,
body.ios-theme.page-all .home-all-card__dl i {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
body.ios-theme.page-all .home-all-card--space .home-all-card__dl,
body.ios-theme.page-all .home-all-card--find .home-all-card__dl,
body.ios-theme.page-all .home-all-card--card .home-all-card__dl,
body.ios-theme.page-all .home-all-card--space .home-all-card__dl span,
body.ios-theme.page-all .home-all-card--find .home-all-card__dl span,
body.ios-theme.page-all .home-all-card--card .home-all-card__dl span,
body.ios-theme.page-all .home-all-card--space .home-all-card__dl i,
body.ios-theme.page-all .home-all-card--find .home-all-card__dl i,
body.ios-theme.page-all .home-all-card--card .home-all-card__dl i {
  color: #2a1d45 !important;
  -webkit-text-fill-color: #2a1d45 !important;
}
body.ios-theme.page-all .home-all-card--labels span,
body.ios-theme.page-all .home-all-card--ext span { color: #3d2808 !important; -webkit-text-fill-color: #3d2808 !important; }
body.ios-theme.page-all .home-all-card--data span { color: #2a1d45 !important; -webkit-text-fill-color: #2a1d45 !important; }
body.ios-theme.page-all .home-all-card--air > span,
body.ios-theme.page-all .home-all-card--air .home-all-card__main > span { color: #4a2a28 !important; -webkit-text-fill-color: #4a2a28 !important; }
body.ios-theme.page-all .home-all-card--money span { color: #7a1414 !important; -webkit-text-fill-color: #7a1414 !important; }
body.ios-theme.page-all .home-all-card--software span { color: #1a3d2a !important; -webkit-text-fill-color: #1a3d2a !important; }
body.ios-theme.page-all .home-all-card--trust span { color: #1a2d4a !important; -webkit-text-fill-color: #1a2d4a !important; }
body.ios-theme.page-all .home-all-card--protect > span,
body.ios-theme.page-all .home-all-card--protect .home-all-card__main > span { color: #1a3d2a !important; -webkit-text-fill-color: #1a3d2a !important; }
body.ios-theme.page-all .home-all-card--together span { color: #3d2410 !important; -webkit-text-fill-color: #3d2410 !important; }
body.ios-theme.page-all .home-all-card--build span { color: #2a1d45 !important; -webkit-text-fill-color: #2a1d45 !important; }
body.ios-theme.page-all .home-all-card--space > span,
body.ios-theme.page-all .home-all-card--find > span,
body.ios-theme.page-all .home-all-card--card > span,
body.ios-theme.page-all .home-all-card--space .home-all-card__main > span,
body.ios-theme.page-all .home-all-card--find .home-all-card__main > span,
body.ios-theme.page-all .home-all-card--card .home-all-card__main > span {
  color: rgba(255, 255, 255, 0.96) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.96) !important;
}
