:root {
  --bg: #070a12;
  --bg-soft: #0a0e18;
  --sidebar: #080b13;
  --panel: #0d111d;
  --panel-2: #111625;
  --border: rgba(158, 171, 205, 0.14);
  --border-strong: rgba(158, 171, 205, 0.22);
  --text: #f5f7ff;
  --muted: #9299ad;
  --muted-2: #6f778c;
  --blue: #3a5df5;
  --blue-bright: #4d73ff;
  --purple: #8a48f5;
  --cyan: #27c4ff;
  --green: #26cd72;
  --red: #f24765;
  --sidebar-width: 248px;
  --topbar-height: 70px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 70% 8%, rgba(48, 57, 126, 0.08), transparent 28%),
    var(--bg);
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

.app-shell {
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  z-index: 30;
  inset: 0 auto 0 0;
  display: flex;
  width: var(--sidebar-width);
  padding: 0 14px 20px;
  border-right: 1px solid var(--border);
  background:
    radial-gradient(circle at 20% 9%, rgba(44, 80, 209, 0.12), transparent 27%),
    rgba(7, 10, 18, 0.97);
  flex-direction: column;
}

.sidebar-top {
  display: flex;
  min-height: var(--topbar-height);
  padding: 0 12px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--text);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  box-shadow: 0 7px 24px rgba(65, 81, 255, 0.3);
}

.sidebar-close,
.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: 11px;
  color: var(--text);
  background: var(--panel);
  cursor: pointer;
}

.sidebar-close svg,
.menu-button svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.main-nav {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.nav-link {
  display: flex;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 12px;
  align-items: center;
  gap: 14px;
  color: #a9b0c2;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  transform: translateX(2px);
}

.nav-link.active {
  color: #f8f9ff;
  border-color: rgba(91, 98, 245, 0.13);
  background: linear-gradient(90deg, rgba(48, 55, 184, 0.48), rgba(66, 43, 184, 0.36));
  box-shadow: inset 0 0 34px rgba(88, 52, 242, 0.08);
}

.nav-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sidebar-note {
  display: grid;
  gap: 16px;
  margin-top: auto;
  padding: 18px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  background: linear-gradient(145deg, rgba(18, 23, 39, 0.9), rgba(10, 13, 24, 0.8));
}

.sidebar-note strong {
  color: #e9ecf7;
  font-size: 14px;
  font-weight: 600;
}

.sidebar-note > span:last-child {
  color: #8165e8;
}

.note-icon {
  color: #f7cf4d;
  font-size: 18px;
}

.sidebar-footer {
  display: grid;
  gap: 5px;
  padding: 22px 10px 0;
  color: #747b8e;
  font-size: 11px;
}

.page {
  min-height: 100vh;
  margin-left: var(--sidebar-width);
}

.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  height: var(--topbar-height);
  padding: 0 clamp(18px, 2.6vw, 34px);
  border-bottom: 1px solid var(--border);
  align-items: center;
  gap: 16px;
  background: rgba(7, 10, 18, 0.88);
  backdrop-filter: blur(18px);
}

.search-box {
  display: flex;
  width: min(390px, 47vw);
  height: 44px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  background: #111522;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.search-box:focus-within {
  border-color: rgba(75, 100, 255, 0.66);
  box-shadow: 0 0 0 3px rgba(63, 84, 238, 0.11);
}

.search-box svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.search-box input {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.search-box input::placeholder {
  color: #858da2;
}

.search-box kbd {
  padding: 3px 7px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  color: #6f778b;
  font-family: inherit;
  font-size: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.top-status {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(38, 205, 114, 0.5);
}

main {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0 28px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 240px;
  border: 1px solid rgba(86, 104, 255, 0.22);
  border-radius: 18px;
  grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 55%, rgba(54, 95, 255, 0.34), transparent 33%),
    radial-gradient(circle at 102% -20%, rgba(185, 30, 255, 0.58), transparent 47%),
    linear-gradient(118deg, #062548 0%, #111353 48%, #260059 100%);
  box-shadow: inset 0 0 100px rgba(7, 10, 32, 0.3), 0 22px 65px rgba(0, 0, 0, 0.18);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.14;
  pointer-events: none;
  background-image:
    radial-gradient(circle, #fff 0 1px, transparent 1.3px),
    radial-gradient(circle, #fff 0 0.8px, transparent 1px);
  background-position: 0 0, 30px 15px;
  background-size: 70px 70px, 90px 90px;
  mask-image: linear-gradient(90deg, transparent 15%, #000 50%, #000);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 34px clamp(28px, 4vw, 44px);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: #8dd7ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(28px, 3.3vw, 43px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero p {
  margin: 12px 0 0;
  color: #bec8dc;
  font-size: 15px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 43px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.launch-button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #4c51ef, #5c36ea);
  box-shadow: 0 9px 24px rgba(73, 48, 223, 0.35);
}

.button-primary:hover {
  box-shadow: 0 12px 30px rgba(73, 48, 223, 0.48);
}

.button-secondary {
  border-color: rgba(181, 197, 255, 0.2);
  color: #e7eafd;
  background: rgba(8, 13, 34, 0.46);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  border-color: rgba(181, 197, 255, 0.38);
  background: rgba(15, 21, 50, 0.66);
}

.hero-art {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 240px;
}

.hero-art::before {
  position: absolute;
  right: 11%;
  bottom: 23px;
  width: 220px;
  height: 32px;
  border-radius: 50%;
  content: "";
  background: rgba(3, 6, 24, 0.75);
  filter: blur(13px);
  transform: rotate(-4deg);
}

.hero-art > img {
  position: absolute;
  z-index: 3;
  display: block;
  right: 17%;
  top: 22px;
  width: 174px;
  height: 174px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 35px;
  object-fit: cover;
  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.45),
    0 0 0 5px rgba(112, 44, 235, 0.1),
    0 0 40px rgba(45, 201, 255, 0.38);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: rotate(8deg);
  transform-origin: center;
}

.back-tile {
  position: absolute;
  top: 78px;
  display: grid;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  place-items: center;
  background: linear-gradient(145deg, rgba(23, 45, 112, 0.78), rgba(35, 10, 90, 0.8));
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.38);
}

.back-tile svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: rgba(66, 120, 255, 0.5);
  stroke-linejoin: round;
  stroke-width: 2;
}

.back-tile-left {
  z-index: 1;
  right: 47%;
  transform: rotate(-15deg);
}

.back-tile-right {
  right: -1%;
  transform: rotate(17deg);
}

.back-tile-right svg {
  stroke: rgba(135, 52, 236, 0.52);
}

.spark {
  position: absolute;
  z-index: 4;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.spark-one {
  top: 42px;
  left: 15%;
}

.spark-two {
  right: 8%;
  top: 28px;
  color: #af7cff;
}

.spark-three {
  left: 5%;
  bottom: 34px;
  font-size: 28px;
}

.apps-section {
  padding: 25px 0 20px;
  scroll-margin-top: calc(var(--topbar-height) + 12px);
}

.section-heading {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
  justify-content: space-between;
}

.section-heading > div,
.panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-heading h2,
.panel-title h2 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.section-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #c9d0e2;
  stroke-width: 1.7;
}

.app-count {
  color: #7662f1;
  font-size: 11px;
  font-weight: 600;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 13px;
}

.app-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 270px;
  padding: 22px 18px 17px;
  border: 1px solid var(--border);
  border-radius: 15px;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(17, 22, 37, 0.95), rgba(10, 14, 24, 0.95));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.app-card:hover {
  border-color: rgba(108, 117, 255, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.app-card[hidden] {
  display: none;
}

.favorite {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 32px;
  height: 32px;
  padding: 7px;
  border: 0;
  border-radius: 9px;
  color: #555d70;
  background: transparent;
  cursor: pointer;
  transition: color 150ms ease, transform 150ms ease, background 150ms ease;
}

.release-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 8px;
  border: 1px solid rgba(79, 183, 255, 0.25);
  border-radius: 999px;
  color: #71cfff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(21, 120, 207, 0.1);
}

.new-release.reveal-pulse {
  animation: reveal-pulse 850ms ease-out;
}

@keyframes reveal-pulse {
  0% {
    border-color: rgba(74, 183, 255, 0.8);
    box-shadow: 0 0 0 0 rgba(51, 152, 255, 0.35);
    transform: translateY(-4px);
  }

  100% {
    border-color: var(--border);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    transform: translateY(0);
  }
}

.favorite:hover {
  color: #b06cff;
  background: rgba(255, 255, 255, 0.04);
  transform: scale(1.08);
}

.favorite.active {
  color: #8e55ff;
}

.favorite svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.app-icon {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  margin-bottom: 15px;
  border-radius: 17px;
  object-fit: cover;
  box-shadow: 0 14px 31px rgba(0, 0, 0, 0.35);
}

.icon-monopolite {
  box-shadow: 0 14px 31px rgba(255, 139, 22, 0.2);
}

.icon-streamly {
  box-shadow: 0 14px 31px rgba(158, 47, 255, 0.24);
}

.icon-halo {
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #20bafa, #1768de 58%, #092383);
  box-shadow: 0 14px 31px rgba(23, 127, 225, 0.24);
}

.icon-halo::before,
.icon-halo span {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 5px solid #e9fbff;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.icon-halo::before {
  width: 36px;
  height: 36px;
}

.icon-halo span {
  width: 17px;
  height: 17px;
}

.app-card h3 {
  margin: 0 0 14px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.app-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
}

.live-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.meta-purple {
  color: #9d67fa;
}

.meta-red {
  color: #f34a66;
}

.meta-blue {
  color: #42a5f5;
}

.card-actions {
  display: grid;
  width: 100%;
  margin-top: auto;
  padding-top: 17px;
  grid-template-columns: 1fr 40px;
  gap: 8px;
}

.launch-button,
.more-button {
  display: flex;
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 9px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.launch-button {
  gap: 7px;
  text-decoration: none;
  background: linear-gradient(135deg, #473edc, #4e2cd2);
  box-shadow: 0 8px 18px rgba(55, 36, 186, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.launch-button:hover {
  box-shadow: 0 10px 24px rgba(55, 36, 186, 0.35);
}

.more-button {
  border-color: var(--border);
  color: #98a0b3;
  letter-spacing: 0.08em;
  background: #151a29;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.more-button:hover {
  border-color: rgba(112, 120, 255, 0.35);
  color: var(--text);
  background: #1b2133;
}

.empty-state {
  padding: 46px 20px;
  border: 1px dashed var(--border-strong);
  border-radius: 15px;
  color: var(--muted);
  text-align: center;
}

.empty-state strong,
.empty-state span {
  display: block;
}

.empty-state strong {
  margin-bottom: 7px;
  color: var(--text);
}

.bottom-grid {
  display: grid;
  padding-top: 1px;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.75fr);
  gap: 14px;
}

.panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(15, 20, 34, 0.96), rgba(9, 13, 22, 0.96));
}

.updates-panel,
.status-panel {
  scroll-margin-top: calc(var(--topbar-height) + 12px);
}

.panel-title h2 {
  font-size: 12px;
}

.panel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.panel-dot.purple {
  background: #7449f5;
  box-shadow: 0 0 10px rgba(116, 73, 245, 0.55);
}

.panel-star {
  color: var(--green);
  font-size: 14px;
}

.update-list {
  display: grid;
  margin-top: 15px;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
}

.update-item {
  display: grid;
  min-width: 0;
  padding: 8px 15px;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  text-decoration: none;
}

.update-item + .update-item {
  border-left: 1px solid var(--border);
}

.update-item[hidden] {
  display: none;
}

.update-item > span:nth-child(2) {
  min-width: 0;
}

.update-item strong,
.update-item small,
.update-item time {
  display: block;
}

.update-item strong {
  margin-top: 1px;
  overflow: hidden;
  font-size: 11px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.update-item small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.update-item time {
  grid-column: 2;
  color: #60687b;
  font-size: 9px;
}

.mini-icon {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  place-items: center;
  object-fit: cover;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.mini-icon svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}

.mini-monopolite {
  background: linear-gradient(135deg, #6d5df0, #6425cd);
}

.mini-streamly {
  background: linear-gradient(145deg, #ff384a, #ed001d);
}

.mini-halo {
  background: linear-gradient(145deg, #25bdfb, #1766da 60%, #11258e);
}

.mini-halo::before,
.mini-halo i {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 3px solid #e9fbff;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.mini-halo::before {
  width: 23px;
  height: 23px;
}

.mini-halo i {
  width: 10px;
  height: 10px;
}

.status-content {
  display: flex;
  margin-top: 28px;
  align-items: flex-start;
  gap: 13px;
}

.status-orb {
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--green);
  box-shadow: 0 0 10px rgba(38, 205, 114, 0.58);
}

.status-content strong {
  font-size: 11px;
}

.status-content p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.status-line {
  height: 2px;
  margin-top: 25px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.status-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #22c96c);
}

.about-strip {
  display: flex;
  padding: 24px 3px 0;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 10px;
  scroll-margin-top: calc(var(--topbar-height) + 12px);
}

.about-strip a {
  color: #8170f0;
  text-decoration: none;
}

.sidebar-scrim {
  position: fixed;
  z-index: 25;
  inset: 0;
  background: rgba(2, 4, 10, 0.7);
  backdrop-filter: blur(3px);
}

.toast {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: flex;
  max-width: min(380px, calc(100vw - 32px));
  padding: 13px 13px 13px 16px;
  border: 1px solid rgba(112, 120, 255, 0.35);
  border-radius: 12px;
  align-items: center;
  gap: 16px;
  color: #dce0ee;
  font-size: 12px;
  line-height: 1.5;
  background: rgba(17, 22, 37, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 7px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid #6f7cff;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  :root {
    --sidebar-width: 220px;
  }

  main {
    width: min(100% - 36px, 900px);
  }

  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(225px, 0.9fr);
  }

  .hero-art > img {
    right: 12%;
    width: 150px;
    height: 150px;
    border-radius: 30px;
  }

  .back-tile {
    width: 106px;
    height: 106px;
  }

  .app-card {
    min-height: 265px;
  }

  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .top-status span:last-child {
    display: none;
  }
}

@media (max-width: 760px) {
  .sidebar {
    width: min(300px, 86vw);
    box-shadow: 24px 0 70px rgba(0, 0, 0, 0.54);
    transform: translateX(-105%);
    transition: transform 200ms ease;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-close,
  .menu-button {
    display: block;
  }

  .page {
    margin-left: 0;
  }

  .topbar {
    padding: 0 16px;
  }

  .search-box {
    width: 100%;
  }

  .search-box kbd {
    display: none;
  }

  main {
    width: min(100% - 28px, 680px);
    padding-top: 15px;
  }

  .hero {
    min-height: 395px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 28px 24px 8px;
  }

  .hero-art {
    min-height: 170px;
  }

  .hero-art > img {
    top: 5px;
    right: 50%;
    width: 125px;
    height: 125px;
    border-radius: 25px;
    transform: translateX(50%) rotate(8deg);
  }

  .hero-art::before {
    right: 50%;
    bottom: 20px;
    width: 150px;
    transform: translateX(50%);
  }

  .back-tile {
    top: 33px;
    width: 94px;
    height: 94px;
    border-radius: 22px;
  }

  .back-tile-left {
    right: calc(50% + 67px);
  }

  .back-tile-right {
    right: calc(50% - 158px);
  }

  .app-grid {
    grid-template-columns: 1fr;
  }

  .app-card {
    min-height: 260px;
  }
}

@media (max-width: 540px) {
  .top-status {
    display: none;
  }

  .hero h1 {
    font-size: 29px;
  }

  .hero p {
    font-size: 13px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    justify-content: center;
  }

  .update-list {
    grid-template-columns: 1fr;
  }

  .update-item {
    padding: 12px 4px;
  }

  .update-item + .update-item {
    border-top: 1px solid var(--border);
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
