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

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

body {
  background: #0a0a0a;
  color: #fff;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.page {
  min-height: 100dvh;
  padding: 16px;
}

.frame {
  min-height: calc(100dvh - 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.stack {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.tagline {
  margin-top: 28px;
  max-width: 280px;
  color: #cfcfcf;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background 0.15s ease;
}

.cta:hover {
  background: #242424;
}

.section {
  margin-top: 56px;
  width: 100%;
}

.section-label {
  margin-bottom: 14px;
  color: #737373;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.logos {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}

.logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 8px;
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.logo-wrap:hover .tooltip,
.logo-wrap:focus-within .tooltip {
  opacity: 1;
}

.logo {
  display: block;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.logo.hop {
  height: 14px;
}

.logo.param {
  height: 9px;
}

.logo.ts {
  height: 22px;
}

.logo.upu {
  height: 16px;
}

.logo.efes {
  height: 21px;
}

.logo.apollo {
  height: 15px;
}

.logo.tf {
  height: 16px;
}

.socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 14px 0 16px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background 0.15s ease;
}

.chip:hover {
  background: #242424;
}

.chip svg {
  width: 11px;
  height: 11px;
}

@media (max-width: 560px) {
  .frame {
    min-height: calc(100dvh - 32px);
    padding: 32px 20px;
    align-items: flex-start;
  }

  .tagline {
    margin-top: 24px;
  }

  .section {
    margin-top: 40px;
  }

  .logos {
    flex-wrap: wrap;
    gap: 16px 18px;
  }
}
