:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: #d7e4e8;
}

.landing {
  position: relative;
  width: 100vw;
  height: 100svh;
  min-height: 100vh;
  overflow: hidden;
}

.landing__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.landing__links {
  position: absolute;
  right: max(18px, 3vw);
  bottom: max(18px, 3vw);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(34, 48, 52, 0.22);
  border-radius: 999px;
  color: #223034;
  background: rgba(255, 253, 248, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(20, 36, 42, 0.16);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0;
  text-decoration: none;
}

.pill:focus-visible {
  outline: 3px solid rgba(34, 48, 52, 0.42);
  outline-offset: 3px;
}
