:root {
  color-scheme: dark;
  font-family: ui-rounded, "SF Pro Rounded", system-ui, sans-serif;
  background: #090d18;
  color: #f5f7ff;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  background:
    radial-gradient(circle at 20% 10%, #27356a 0, transparent 35%),
    radial-gradient(circle at 90% 80%, #4a214a 0, transparent 30%),
    #090d18;
}

main { width: min(920px, calc(100% - 40px)); margin: auto; padding: 72px 0; }
.eyebrow { color: #a8b5ff; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
h1 { max-width: 760px; margin: 12px 0; font-size: clamp(2.4rem, 7vw, 5rem); line-height: 1; }
.intro { max-width: 720px; color: #c6cbe0; font-size: 1.15rem; line-height: 1.6; }
.intro--secondary { color: #aeb5cc; }
.apps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 42px; }
.app {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  border: 1px solid #ffffff22;
  border-radius: 24px;
  background: #ffffff0d;
  transition: transform .2s ease, background .2s ease;
}
.app:hover, .app:focus-visible { transform: translateY(-3px); background: #ffffff18; }
.app img { border-radius: 20px; box-shadow: 0 12px 30px #0008; }
.app span { display: grid; gap: 7px; }
.app strong { font-size: 1.35rem; }
.app small { color: #c6cbe0; font-size: .95rem; line-height: 1.4; }
footer { padding: 24px; color: #9299b2; text-align: center; }
