:root {
  --bg: #f7f7fb;
  --surface: #ffffff;
  --surface-soft: #f3f2f8;
  --text: #16131d;
  --muted: #6d667a;
  --line: #e7e2ee;
  --primary: #5a2982;
  --primary-dark: #4a226c;
  --accent: #fcaf1a;
  --shadow: 0 10px 30px rgba(21, 15, 34, 0.05);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1240px;
}

h1 {
  font-size: 2.7rem;
  margin: 0.5em 0;
  font-weight: 700;
}

h2 {
  margin: 8px 0 0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.03em;
}
.eyebrow {

  font-size: 1rem;
  margin: 1.5rem 0;
  color: #6d667a;
  /* letter-spacing: 0.12em; */
  text-transform: uppercase;
  /* color: var(--muted);*/
  font-weight: 700;
}

.hero__panel {
  background: linear-gradient(180deg, #fff, #faf8fd);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 22px;
}

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

.stat {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  text-align: center;
}

.stat__label {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 6px;
}

.stat__value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero__grid {
  padding-bottom: 15px;
  border-bottom: #e3e3e3 1px dashed;
}

.featured-vendors {
  margin: 40px 0;
  padding-bottom: 30px;
  border-bottom: #e3e3e3 1px dashed;
  border-top: #e3e3e3 1px dashed;
}

.toolbar__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 30px 0;
  box-shadow: var(--shadow);
}

.field label {
  display: inline;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.filters {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 16px;
  align-items: center;
}

.filters__label,
.filters__btn {
  flex: 0 0 auto;
}

.filters__input {
  flex: 1 1 auto;
}

.input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0 16px;
  font: inherit;
  color: var(--text);
  outline: none;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}
.btn {
  height: 52px;
  border: 0;
  border-radius: 14px;
  padding: 0 20px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: 0.18s ease;
}

.alpha-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.alpha-nav a {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background: #fff;
  color: var(--muted);
}

.alpha-nav a.is-active,
.alpha-nav a:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.featured-grid,
.vendors-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.vendor-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  height: 100%;
}

.vendor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(24, 18, 40, 0.08);
  border-color: rgba(90, 41, 130, 0.2);
}

.vendor-card__inner {
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.vendor-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

.vendor-card__name {
  margin: 0 0 5px;
  font-size: 22px;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--text);
}

.vendor-card__country {
  color: var(--muted);
  font-size: 14px;
}

.vendor-card__logo {
  min-width: 74px;
  height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #faf8fd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
}

.vendor-card__desc {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.vendor-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.metric {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  font-size: 13px;
  color: var(--muted);
}

.metric strong {
  color: var(--text);
}

.vendor-card__domains-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tag {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #faf8fd;
  border: 1px solid var(--line);
  color: #4f4760;
}

.vendor-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(90, 41, 130, 0.18);
  color: var(--primary);
  background: rgba(90, 41, 130, 0.04);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.link-btn:hover {
  background: rgba(90, 41, 130, 0.08);
}

.vendor-card__note {
  font-size: 13px;
  color: var(--muted);
}

.seo-copy {
  margin: 20px 0;
  padding: 15px 0;
  border-top: #e3e3e3 1px dashed;
}

.seo-copy h2 {
  margin: 8px 0 16px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.03em;
}

.seo-copy p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 16px;
}

.pagination {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.pagination a {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--muted);
  font-size: 14px;
}

.pagination a.is-current,
.pagination a:hover {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

.site-footer {
  padding: 36px 0 48px;
  color: var(--muted);
  font-size: 14px;
}

.section__head {
  align-items: start;
  flex-direction: column;
}

.pagination {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.pagination a {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.pagination a.is-current,
.pagination a:hover {
  background: var(--text);
  color: white;
  border-color: var(--text);
}
@media (min-width: 1080px) {
  .hero__grid {
    display: grid;
    grid-template-columns: 1.55fr 0.9fr;
    gap: 28px;
    align-items: stretch;
  }

  .featured-grid,
  .vendors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    flex-direction: row;
  }

  .section__head h2 {
    margin: 8px 0 0;
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -0.03em;
  }
}
