:root {
  --shci-bg: #ffffff;
  --shci-soft: #f6f8fc;
  --shci-text: #141824;
  --shci-muted: #606a78;
  --shci-border: #dfe4ec;
  --shci-primary: #111827;
  --shci-accent: #ff006c;
  --shci-accent-soft: #fff0f6;
  --shci-success: #067647;
  --shci-radius: 20px;
  --shci-shadow: 0 12px 34px rgba(17, 24, 39, 0.07);
}

.shci-page {
  color: var(--shci-text);
  background: var(--shci-bg);
  font-family: inherit;
}

.shci-page * {
  box-sizing: border-box;
}

.shci-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.shci-hero {
  padding: 82px 0 66px;
  border-bottom: 1px solid var(--shci-border);
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 0, 108, 0.13), transparent 28%),
    linear-gradient(135deg, #f9fbff, #ffffff 56%, #fff6fa);
}

.shci-methodology-hero {
  padding-bottom: 58px;
}

.shci-compact-hero {
  padding: 44px 0;
  border-bottom: 1px solid var(--shci-border);
  background: var(--shci-soft);
}

.shci-compact-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.035em;
}

.shci-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 30px;
  color: var(--shci-muted);
  font-size: 0.86rem;
}

.shci-breadcrumbs a {
  color: var(--shci-muted);
  text-decoration: none;
}

.shci-eyebrow {
  margin: 0 0 12px;
  color: var(--shci-accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.shci-hero h1,
.shci-private-hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(2.35rem, 5.3vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.shci-lead {
  max-width: 880px;
  margin: 24px 0 0;
  color: var(--shci-muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.shci-updated {
  margin: 18px 0 0;
  color: var(--shci-muted);
  font-size: 0.86rem;
}

.shci-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.shci-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.shci-btn:hover {
  transform: translateY(-1px);
}

.shci-btn-primary {
  color: #ffffff;
  background: var(--shci-primary);
}

.shci-btn-secondary {
  color: var(--shci-primary);
  background: #ffffff;
  border-color: var(--shci-border);
}

.shci-btn-light {
  color: var(--shci-primary);
  background: #ffffff;
}

.shci-full-button {
  width: 100%;
  margin-top: 10px;
}

.shci-text-link,
.shci-back-link {
  font-weight: 800;
  color: var(--shci-primary);
  text-decoration: none;
}

.shci-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.shci-stats div {
  padding: 18px;
  border: 1px solid rgba(223, 228, 236, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
}

.shci-stats strong,
.shci-stats span {
  display: block;
}

.shci-stats strong {
  font-size: 1.18rem;
}

.shci-stats span {
  margin-top: 5px;
  color: var(--shci-muted);
  font-size: 0.84rem;
}

.shci-section {
  padding: 70px 0;
}

.shci-soft-section {
  background: var(--shci-soft);
}

.shci-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.shci-content-card,
.shci-related-box,
.shci-insight-card {
  padding: 32px;
  border: 1px solid var(--shci-border);
  border-radius: var(--shci-radius);
  background: #ffffff;
  box-shadow: var(--shci-shadow);
}

.shci-section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.shci-section h3 {
  margin: 0 0 14px;
  font-size: 1.22rem;
}

.shci-section p,
.shci-section li {
  color: var(--shci-muted);
  line-height: 1.75;
}

.shci-related-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.shci-related-box a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--shci-border);
  color: var(--shci-primary);
  font-weight: 750;
  text-decoration: none;
}

.shci-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.shci-heading-row > p {
  max-width: 460px;
  margin: 0;
  text-align: right;
}

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

.shci-distribution-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--shci-border);
}

.shci-distribution-row:last-child {
  border-bottom: 0;
}

.shci-distribution-row span {
  color: var(--shci-muted);
}

.shci-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 34px;
}

.shci-link-grid a,
.shci-size-grid a {
  padding: 17px;
  border: 1px solid var(--shci-border);
  border-radius: 14px;
  background: #ffffff;
  color: var(--shci-text);
  text-decoration: none;
}

.shci-link-grid strong,
.shci-link-grid span,
.shci-size-grid strong,
.shci-size-grid span,
.shci-size-grid small {
  display: block;
}

.shci-link-grid span,
.shci-size-grid span {
  margin-top: 4px;
  color: var(--shci-muted);
  font-size: 0.83rem;
}

.shci-size-grid small {
  margin-top: 6px;
  color: var(--shci-muted);
  font-size: 0.72rem;
}

.shci-size-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.shci-filter,
.shci-private-filter {
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid var(--shci-border);
  border-radius: var(--shci-radius);
  background: var(--shci-soft);
}

.shci-filter label {
  flex: 1;
}

.shci-filter label span,
.shci-private-filter label span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.84rem;
  font-weight: 800;
}

.shci-filter input,
.shci-private-filter input,
.shci-private-filter select {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--shci-border);
  border-radius: 12px;
  background: #ffffff;
  font: inherit;
}

.shci-clear-link {
  padding: 12px 4px;
  color: var(--shci-muted);
  font-weight: 700;
  text-decoration: none;
}

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

.shci-company-card {
  display: flex;
  min-height: 335px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--shci-border);
  border-radius: var(--shci-radius);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.shci-company-card[data-active="true"] {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.1);
}

.shci-company-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.shci-private-name {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  background: repeating-linear-gradient(135deg, #e5e7eb, #e5e7eb 7px, #f3f4f6 7px, #f3f4f6 14px);
  color: #4b5563;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.shci-badge {
  color: #b4004c;
  font-size: 0.73rem;
  font-weight: 800;
  text-align: right;
}

.shci-company-card h3 {
  margin: 18px 0 12px;
  font-size: 1.26rem;
}

.shci-company-card > p {
  font-size: 0.94rem;
}

.shci-company-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 15px;
}

.shci-company-meta span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--shci-soft);
  color: var(--shci-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.shci-card-link {
  margin-top: auto;
  padding-top: 20px;
  color: var(--shci-primary);
  font-weight: 800;
  text-decoration: none;
}

.shci-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.shci-pagination a,
.shci-pagination span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--shci-border);
  border-radius: 11px;
  background: #ffffff;
  color: var(--shci-primary);
  text-decoration: none;
}

.shci-pagination .current {
  color: #ffffff;
  background: var(--shci-primary);
}

.shci-dark {
  color: #ffffff;
  background: var(--shci-primary);
}

.shci-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.shci-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}

.shci-cta-actions > a:not(.shci-btn) {
  color: #ffffff;
  font-weight: 800;
}

.shci-faq details {
  margin-bottom: 12px;
  padding: 21px 22px;
  border: 1px solid var(--shci-border);
  border-radius: 14px;
  background: #ffffff;
}

.shci-faq summary {
  font-weight: 800;
  cursor: pointer;
}

.shci-private-page {
  background: #f8fafc;
}

.shci-private-hero {
  padding: 64px 0 52px;
  border-bottom: 1px solid var(--shci-border);
  background: linear-gradient(135deg, #f9fbff, #fff6fa);
}

.shci-private-hero p {
  max-width: 900px;
  color: var(--shci-muted);
  line-height: 1.7;
}

.shci-private-filter {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto auto;
}

.shci-private-results-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  margin: 28px 0 18px;
}

.shci-private-results-heading h2,
.shci-private-results-heading p {
  margin: 0;
}

.shci-private-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--shci-border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shci-shadow);
}

.shci-private-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 960px;
}

.shci-private-table th,
.shci-private-table td {
  padding: 15px;
  border-bottom: 1px solid var(--shci-border);
  text-align: left;
  vertical-align: top;
}

.shci-private-table th {
  background: var(--shci-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shci-private-table td small {
  display: block;
  margin-top: 5px;
  color: var(--shci-muted);
  line-height: 1.45;
}

.shci-private-table a {
  font-weight: 750;
}

.shci-details {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 12px;
}

.shci-details dt {
  font-weight: 800;
}

.shci-details dd {
  margin: 0;
  color: var(--shci-muted);
  overflow-wrap: anywhere;
}

.shci-disclaimer {
  padding: 24px 0;
  border-top: 1px solid var(--shci-border);
  background: #ffffff;
}

.shci-disclaimer p {
  margin: 0;
  color: var(--shci-muted);
  font-size: 0.84rem;
}

.shci-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: start;
}

.shci-prose h2 {
  margin-top: 40px;
}

.shci-prose h2:first-child {
  margin-top: 0;
}

.shci-prose code {
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--shci-soft);
}

.shci-methodology-sidebar {
  position: sticky;
  top: 30px;
}

.shci-methodology-sidebar .shci-content-card + .shci-content-card {
  margin-top: 16px;
}

.shci-integration-panel {
  padding: 54px 0;
  border-top: 1px solid #ffd3e5;
  background: #fff6fa;
}

.shci-shortcode-panel,
.shci-conversion-block {
  padding: 30px;
  border: 1px solid var(--shci-border);
  border-radius: var(--shci-radius);
  background: #ffffff;
  box-shadow: var(--shci-shadow);
}

.shci-conversion-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 40px 0;
}

.shci-conversion-block h2 {
  margin-top: 0;
}

.shci-conversion-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
}

.shci-empty-state {
  padding: 40px;
  border: 1px dashed var(--shci-border);
  border-radius: var(--shci-radius);
  background: #ffffff;
  text-align: center;
}

@media (max-width: 1040px) {
  .shci-company-grid,
  .shci-link-grid,
  .shci-insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shci-private-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shci-article-layout {
    grid-template-columns: 1fr;
  }

  .shci-methodology-sidebar {
    position: static;
  }
}

@media (max-width: 780px) {
  .shci-grid-2,
  .shci-company-grid,
  .shci-link-grid,
  .shci-insight-grid,
  .shci-stats,
  .shci-size-grid,
  .shci-conversion-block,
  .shci-private-filter {
    grid-template-columns: 1fr;
  }

  .shci-heading-row,
  .shci-private-results-heading {
    display: block;
  }

  .shci-heading-row > p {
    margin-top: 10px;
    text-align: left;
  }

  .shci-filter {
    display: block;
  }

  .shci-filter .shci-btn,
  .shci-filter .shci-clear-link {
    margin-top: 12px;
  }

  .shci-details {
    grid-template-columns: 1fr;
  }

  .shci-conversion-actions {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .shci-container {
    width: min(100% - 28px, 1180px);
  }

  .shci-hero {
    padding: 58px 0 48px;
  }

  .shci-section {
    padding: 52px 0;
  }

  .shci-content-card,
  .shci-related-box,
  .shci-insight-card,
  .shci-company-card,
  .shci-shortcode-panel,
  .shci-conversion-block {
    padding: 23px;
  }
}
