:root {
  --background: #ffffff;
  --text: #373932;
  --button-text: #373932;
  --button-hover: #f7f7f7;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  color: inherit;
  text-decoration: none;
}

.landing {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2rem);
}

.landing__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: min(72rem, 100%);
}

.logo {
  width: 100%;
  max-width: 45rem;
  height: auto;
  display: block;
}

.links {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 3vw, 1.75rem);
}

.link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(3.5rem, 5vw, 4rem);
  padding: 0 clamp(1.25rem, 3vw, 1.75rem);
  border: none;
  background-image: url('assets/btn.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--button-text);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.link:hover,
.link:focus-visible {
  filter: brightness(0.97);
  transform: translateY(-1px);
  outline: none;
}

.motto {
  margin: 0;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
}

@media (max-width: 768px) {
  body {
    padding: 0 0.25rem;
  }

  .landing {
    padding: clamp(1.75rem, 6vw, 2.5rem) clamp(1rem, 5vw, 1.5rem);
  }

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

@media (max-width: 480px) {
  .landing__content {
    gap: clamp(1.25rem, 4vw, 2rem);
  }

  .link {
    font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  }
}
