:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #17202a;
  background: #eef3f0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.site-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(19, 91, 102, 0.18), transparent 42%),
    linear-gradient(315deg, rgba(131, 88, 59, 0.14), transparent 44%),
    #eef3f0;
}

.hero {
  width: min(920px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: #496057;
  font-size: 0.86rem;
  font-weight: 750;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 28px;
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  line-height: 0.95;
}

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

.app-link {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(23, 32, 42, 0.14);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(23, 32, 42, 0.08);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.app-link:hover,
.app-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(23, 32, 42, 0.32);
  box-shadow: 0 24px 52px rgba(23, 32, 42, 0.14);
  outline: none;
}

.app-link span {
  color: #4f665f;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.app-link strong {
  font-size: clamp(1.45rem, 4vw, 2.2rem);
  line-height: 1;
}

.app-link small {
  max-width: 28rem;
  color: #4f5c63;
  font-size: 0.98rem;
  line-height: 1.45;
}

.stocks {
  border-top: 5px solid #176b73;
}

.flag {
  border-top: 5px solid #b65332;
}

@media (max-width: 720px) {
  .site-shell {
    align-items: start;
    padding: 24px 16px;
  }

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

  .app-link {
    min-height: 176px;
  }
}
