:root {
  --navy-deep: #050c33;
  --navy: #0b1668;
  --blue-mid: #0e3fd6;
  --blue-bright: #1c6dff;
  --blue-light: #7fb4ff;
  --ink-white: #f4f8ff;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--navy-deep);
  overflow-x: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  /* 100vh on mobile is the URL-bar-less height, so the footer sits below the
     visible area while the bar is showing. svh is the smallest guaranteed box. */
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 6vw, 64px);
  padding-top: calc(clamp(24px, 6vw, 64px) + env(safe-area-inset-top));
  padding-right: calc(clamp(24px, 6vw, 64px) + env(safe-area-inset-right));
  padding-bottom: calc(clamp(24px, 6vw, 64px) + env(safe-area-inset-bottom));
  padding-left: calc(clamp(24px, 6vw, 64px) + env(safe-area-inset-left));
  overflow: hidden;
  background-color: var(--navy-deep);
  background-image: url("assets/glass-bg.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo {
  display: block;
  width: clamp(16rem, 78vw, 94rem);
  height: auto;
}

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: clamp(0.86rem, 1.3vw, 0.98rem);
  color: var(--navy);
  flex-wrap: wrap;
}

.footer a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.footer a:hover {
  color: var(--navy-deep);
}

.footer .made {
  color: var(--navy);
}

@media (max-width: 560px) {
  .footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
