:root {
  color-scheme: light;
  --bg: #eef3f7;
  --text: #15202b;
  --muted: #637383;
  --accent: #0f766e;
  --accent-2: #265478;
  --shadow: 0 18px 48px rgba(25, 43, 58, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.14), transparent 34%),
    linear-gradient(315deg, rgba(38, 84, 120, 0.14), transparent 40%),
    var(--bg);
}

.launcher {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 72px;
  display: grid;
  gap: 28px;
}

.launcher-header {
  display: grid;
  gap: 10px;
}

.launcher-eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launcher-header h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  line-height: 1.04;
}

.launcher-apps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.launcher-app {
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.launcher-app:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(25, 43, 58, 0.16);
}

.launcher-app-label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launcher-app-2 .launcher-app-label {
  color: var(--accent-2);
}

.launcher-app strong {
  font-size: 1.35rem;
  line-height: 1.15;
}

.launcher-app small {
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 640px) {
  .launcher {
    width: min(100% - 20px, 760px);
    padding: 32px 0 48px;
  }

  .launcher-apps {
    grid-template-columns: 1fr;
  }
}
