:root {
  color-scheme: light;
  --ink: #16202a;
  --muted: #5d6975;
  --line: #d8dee6;
  --panel: #ffffff;
  --blue: #0a6fb8;
  --green: #1f8a70;
  --gold: #b86b00;
}

* {
  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(--ink);
  background:
    linear-gradient(135deg, rgba(10, 111, 184, 0.12), transparent 32%),
    linear-gradient(45deg, rgba(31, 138, 112, 0.12), transparent 36%),
    #f7f9fb;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 36px;
  padding: 56px 0;
}

.intro {
  display: grid;
  grid-template-columns: 128px minmax(0, 760px);
  gap: 32px;
  align-items: center;
}

.brand-mark {
  width: 128px;
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.brand-mark span {
  border: 2px solid var(--line);
  background: var(--panel);
}

.brand-mark span:nth-child(1) {
  grid-column: span 2;
  border-color: rgba(10, 111, 184, 0.4);
}

.brand-mark span:nth-child(2) {
  border-color: rgba(31, 138, 112, 0.4);
}

.brand-mark span:nth-child(3) {
  border-color: rgba(184, 107, 0, 0.4);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
}

.apps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.app-link {
  min-height: 150px;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.app-link:hover,
.app-link:focus-visible {
  border-color: var(--blue);
  outline: none;
}

.app-link span {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.app-link strong {
  font-size: 1.08rem;
  line-height: 1.35;
}

.app-link.muted {
  color: var(--muted);
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 560px);
    align-content: start;
    padding-top: 36px;
  }

  .intro,
  .apps {
    grid-template-columns: 1fr;
  }

  .brand-mark {
    width: 92px;
  }

  h1 {
    font-size: 3rem;
  }
}
