* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.5;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.profile {
  text-align: center;
  margin-bottom: 2.5rem;
}

.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem;
}

.profile h1 {
  font-size: 1.75rem;
  font-weight: 600;
}

.about {
  margin-bottom: 2.5rem;
}

.about h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.25rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}

.tile-icon {
  width: 28px;
  height: 28px;
}

.tile:hover {
  border-color: #111;
  transform: translateY(-2px);
}

.tile h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.tile p {
  font-size: 0.875rem;
  color: #666;
}

.checkout {
  margin-top: 3rem;
}

.checkout h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 200px));
  gap: 1.25rem;
}

.checkout-item {
  margin: 0;
}

.checkout-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.checkout-item figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.checkout-item figcaption span {
  color: #666;
}
