.home-page {
  --home-bg: #071018;
  --home-panel: rgba(13, 24, 36, .82);
  --home-panel-strong: rgba(16, 33, 49, .94);
  --home-border: rgba(66, 183, 255, .28);
  --home-text: #e7f0fb;
  --home-muted: #9fb1c6;
  --home-blue: #42b7ff;
  --home-green: #54f29d;
  --home-orange: #ff9b45;
  background:
    radial-gradient(circle at 16% 12%, rgba(66, 183, 255, .20), transparent 32%),
    radial-gradient(circle at 84% 20%, rgba(84, 242, 157, .13), transparent 28%),
    linear-gradient(145deg, #060a10 0%, var(--home-bg) 46%, #09141b 100%);
  color: var(--home-text);
}

.home-page main {
  max-width: 880px;
  gap: 16px;
  padding: 26px 18px 22px;
}

.home-page .logo {
  width: 100%;
  max-width: 268px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .30));
}

.home-page .home-hero {
  position: relative;
  max-width: 640px;
  padding: 18px 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(14, 28, 43, .92), rgba(9, 18, 28, .9));
  border-color: var(--home-border);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.home-page .home-hero::before,
.home-page .platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(66, 183, 255, .86), transparent);
}

.home-page .alert-icon {
  margin-bottom: 4px;
  color: var(--home-green);
  font-size: 1.12rem;
  text-shadow: 0 0 18px rgba(84, 242, 157, .38);
}

.home-page .hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 10px;
  margin-bottom: 7px;
  color: var(--home-green);
  background: rgba(84, 242, 157, .09);
  border: 1px solid rgba(84, 242, 157, .28);
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.home-page .alert-box h1 {
  font-size: clamp(1rem, 1.55vw, 1.20rem);
  margin-bottom: 6px;
}

.home-page .alert-box p {
  max-width: 520px;
  margin: 0 auto;
  color: var(--home-muted);
  font-size: .86rem;
  line-height: 1.42;
}

.home-page .platforms {
  max-width: 760px;
}

.home-page .platforms h2 {
  margin-bottom: 9px;
  color: var(--home-blue);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.home-page .platform-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-page .platform-card {
  position: relative;
  min-height: 116px;
  justify-content: center;
  padding: 14px 12px 12px;
  background: var(--home-panel);
  border-color: rgba(66, 183, 255, .18);
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .20);
}

.home-page .logo-frame {
  width: min(70vw, 300px);
  min-height: 0;
  padding: 12px 16px;
}

.home-page .platform-card:hover,
.home-page .platform-card:focus-visible {
  border-color: rgba(84, 242, 157, .62);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .30), 0 0 0 1px rgba(84, 242, 157, .18);
}

.home-page .card-icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: var(--home-blue);
  background: rgba(66, 183, 255, .09);
  border: 1px solid rgba(66, 183, 255, .22);
  border-radius: 12px;
  font-size: 1.24rem;
  line-height: 1;
}

.home-page .platform-card strong {
  color: #ffffff;
  font-size: .88rem;
}

.home-page .card-desc {
  color: var(--home-muted);
  font-size: .70rem;
  line-height: 1.32;
}

.home-page footer p {
  color: rgba(159, 177, 198, .72);
}

.printer-icon {
  position: relative;
}

.printer-paper {
  position: absolute;
  top: 6px;
  width: 15px;
  height: 12px;
  border: 2px solid var(--home-green);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  background: rgba(84, 242, 157, .08);
}

.printer-body {
  position: absolute;
  bottom: 7px;
  width: 23px;
  height: 15px;
  border: 2px solid var(--home-blue);
  border-radius: 5px;
  background: rgba(66, 183, 255, .14);
  box-shadow: inset 0 -6px 0 rgba(66, 183, 255, .16);
}

.printer-body::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--home-green);
}

.printer-body::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: -5px;
  height: 7px;
  border: 2px solid var(--home-green);
  border-top: 0;
  border-radius: 0 0 3px 3px;
  background: rgba(84, 242, 157, .08);
}

@media (max-width: 760px) {
  .home-page main {
    padding-top: 22px;
  }

  .home-page .platform-grid {
    grid-template-columns: 1fr;
  }

  .home-page .platform-card {
    min-height: 0;
    align-items: flex-start;
    text-align: left;
  }

  .home-page .home-hero {
    padding: 17px 18px;
  }
}
