* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: #ffffff;
  color: #111111;
}

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

.wrap {
  min-height: 100vh;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 16px 0;
  display: flex;
  flex-direction: column;
}

.top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 2px 18px;
}

.logo-slot {
  width: 760px;
  max-width: 100%;
  height: 300px;
  background: transparent;
  background-image: url('/logo.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.card {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  background: #ffffff;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

a.btn:hover {
  background: rgba(0,0,0,.03);
}

.placeholder {
  cursor: default;
  color: rgba(0,0,0,.55);
}

.placeholder:hover {
  background: #ffffff;
}

.icon {
  display: inline-block;
  width: 1.6em;
  text-align: center;
  margin-right: 6px;
}
.label { display: inline-block; }

.foot {
  margin-top: auto;
  padding: 18px 0 22px;
  font-size: 12px;
  color: rgba(0,0,0,.70);
  text-align: center;
}
