* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: #fffef7;
  color: #111111;
  -webkit-font-smoothing: antialiased;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 2.5rem) 1rem;
  overflow-x: hidden;
}

.page {
  width: min(760px, calc(100vw - 2rem));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 2.5rem);
}

.main-logo {
  display: block;
  width: min(620px, 100%);
  height: auto;
  object-fit: contain;
  transform: translateX(-2rem);
}

.brand-row {
  width: min(620px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 4vw, 1.75rem);
  transform: translateX(-2rem);
}

.logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  padding: clamp(0.75rem, 3vw, 1.5rem);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  text-decoration: none;
}

.logo-slot img {
  max-width: 100%;
  max-height: min(168px, 28vw);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.site-note {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(0.82rem, 2.5vw, 0.98rem);
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.68);
  text-align: center;
  max-width: 36rem;
}

@media (max-width: 480px) {
  .main-logo {
    width: min(320px, 100%);
    transform: none;
  }

  .brand-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(340px, 100%);
    gap: 0.7rem;
    transform: none;
  }

  .logo-slot {
    aspect-ratio: 1 / 1;
    padding: 0.55rem;
    border-radius: 12px;
  }

  .logo-slot img {
    max-height: 82px;
  }
}
