/* 旧 public/server/registrars.html のインラインstyleを外部化したもの */
.reg-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 36px 24px 28px;
  width: 100%;
}
.reg-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.reg-hero h1 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}
.reg-hero p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.reg-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 80px;
  width: 100%;
}
.reg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}

.brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.brand-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  border-color: var(--accent);
}

.brand-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  font-size: 32px;
  width: 48px;
  height: 48px;
  background: var(--surface2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px var(--border);
}
.brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.brand-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.brand-features {
  background: var(--surface2);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 12.5px;
}
.brand-features-title {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.brand-features-list {
  padding-left: 16px;
  margin: 0;
  color: var(--text);
}
.brand-features-list li {
  margin-bottom: 4px;
}

.brand-services {
  border-top: 1px dashed var(--border);
  padding-top: 14px;
}
.services-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.service-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.service-pill {
  font-size: 11.5px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  color: var(--text);
}

/* ─── 公式サイトボタン ─── */
.reg-actions { display: flex; gap: 8px; margin-top: 2px; }
.reg-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 5px; font-size: 12px; font-weight: 600; font-family: var(--body); padding: 7px 10px; border-radius: 7px; text-decoration: none; transition: background .15s, color .15s, border-color .15s; cursor: pointer; border: none; }
.reg-btn-primary { background: var(--accent); color: #fff; }
.reg-btn-primary:hover { background: #1558cc; }
.reg-btn-secondary { background: var(--bg); color: var(--text); border: 1.5px solid var(--border); }
.reg-btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
