:root {
  --amber2: #fef8f0;
  --gray2: #f5f5f3;
}
.dd-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--t2);
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}
.hero {
  padding: 140px 0 80px;
  position: relative;
  border-bottom: 1px solid var(--bd);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  background: linear-gradient(180deg, #edf7fb 0%, var(--bg) 100%);
  z-index: -1;
}
.h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  letter-spacing: -1.5px;
  line-height: 1.15;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--t3);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.back-btn {
  font-size: 13px;
  color: var(--t2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.back-btn:hover {
  color: var(--hd);
}
.tag-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.3px;
}
.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.filter-bar-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}
.jump-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.jump-divider {
  height: 1px;
  background: var(--bd);
  margin: 2px 0;
}
.filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 20px;
  cursor: pointer;
  border: 1px solid var(--bd);
  background: var(--sf);
  color: var(--t2);
  transition: all 0.2s;
}
.filter-btn.active {
  background: #2c2c2c;
  color: #fff;
  border-color: #2c2c2c;
}
.search-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--bd);
  background: var(--sf);
  width: 100%;
  max-width: 360px;
  outline: none;
  margin-bottom: 24px;
}
.tool-card {
  padding: 16px 20px;
  margin-bottom: 8px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 249, 246, 0.96) 100%);
  border: 1px solid var(--bd);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.tool-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--hover-shadow);
  border-color: var(--hover-ring);
}
.tool-label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}
.tool-logo-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.tool-logo {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid var(--bd);
  background: #fff;
  object-fit: contain;
  padding: 2px;
}
.tool-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  min-width: 0;
}
.rw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.rw-box {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.5;
}
.rw-read {
  background: #f0f7f3;
  border: 1px solid #dce8df;
  color: #3d5a45;
}
.rw-write {
  background: var(--amber2);
  border: 1px solid #f2e8d0;
  color: #6b5a3d;
}
.rw-na {
  background: var(--gray2);
  border: 1px solid #e8e6e1;
  color: var(--t3);
}
.rw-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cat-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 249, 246, 0.96) 100%);
  border: 1px solid var(--bd);
  border-top: 2.25px solid var(--hd);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
  scroll-margin-top: 90px;
}
.cat-header:hover {
  background: var(--bg2);
  transform: translateY(-2px);
  box-shadow: var(--hover-shadow);
  border-left-color: var(--hover-ring);
  border-right-color: var(--hover-ring);
  border-bottom-color: var(--hover-ring);
}
.cat-icon {
  font-size: 20px;
}
.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  margin-left: 12px;
}
.cat-dept {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 12px;
  margin-left: 8px;
  border: 1px solid;
}
.cat-count {
  font-size: 12px;
  color: var(--t3);
}
.cat-body {
  padding: 4px 12px 16px;
}
.chevron {
  color: #c0bdb6;
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.25s;
  display: inline-block;
}
.stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 249, 246, 0.96) 100%);
  border-radius: 14px;
  padding: 22px 20px;
  border: 1px solid var(--bd);
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--hover-shadow);
  border-color: var(--hover-ring);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 400;
  letter-spacing: -2.5px;
  line-height: 1;
  color: var(--tx);
}
.stat-label {
  font-size: 12px;
  color: var(--t2);
  margin-top: 8px;
  line-height: 1.35;
}
@media (max-width: 768px) {
  .rw-grid {
    grid-template-columns: 1fr;
  }
  .ct {
    padding: 0 20px;
  }
  .hero {
    padding: 124px 0 56px;
  }
}

.integrations-explanation {
  padding: 80px 0;
}
.integrations-benefits,
.integrations-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.integrations-benefits {
  margin-top: 40px;
}
.integrations-stats {
  margin-bottom: 32px;
}
.integrations-catalog {
  margin-top: 40px;
}
.integrations-note {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.6;
  margin-top: 12px;
}
.integrations-return {
  text-align: center;
  margin-top: 48px;
}
.integrations-benefits .cd,
.stat-card,
.cat-header,
.cat-body,
.tool-card {
  background: #fff;
}
.integrations-benefits .cd {
  border-top: 2.25px solid var(--hd);
}
.rw-label {
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .integrations-explanation {
    padding: 60px 0;
  }
  .integrations-benefits,
  .integrations-stats {
    grid-template-columns: 1fr;
  }
  .ct {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.rw-read,
.rw-write,
.rw-na,
.cat-header:hover {
  background: #fff;
}
