/* CoinWebHosting marketing site — self-hosted Inter + layout helpers */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter/inter-latin-400-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter/inter-latin-500-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter/inter-latin-600-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter/inter-latin-700-normal.woff2') format('woff2');
}

html {
  scroll-behavior: smooth;
}

.cwh-shot-wrap {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  background: #f8fafc;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cwh-shot-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

.cwh-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.cwh-badge-live {
  background: #dcfce7;
  color: #166534;
}

.cwh-badge-new {
  background: #dbeafe;
  color: #1e40af;
}

.cwh-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
}

.cwh-flow-step {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.25rem;
  height: 100%;
}

.cwh-flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cwh-flow-num i {
  font-size: 0.8rem;
  line-height: 1;
}

.cwh-chip {
  display: inline-block;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  margin: 0.15rem 0.2rem 0.15rem 0;
}

.cwh-preview {
  min-height: 140px;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}

.cwh-icon-lg {
  font-size: 1.35rem;
  line-height: 1;
}

.cwh-icon-xl {
  font-size: 1.5rem;
  line-height: 1;
}

.cwh-feature-icon {
  font-size: 1.35rem;
  line-height: 1;
  color: #1d4ed8;
}

.cwh-check-list i {
  width: 1.1rem;
  text-align: center;
}

.cwh-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cwh-modal.hidden {
  display: none;
}

.cwh-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
}

.cwh-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  padding: 1.5rem;
}

.cwh-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cwh-modal-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.cwh-modal-btn-secondary {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
}

.cwh-modal-btn-secondary:hover {
  background: #f8fafc;
}

.cwh-modal-btn-primary {
  border: 1px solid #0f172a;
  background: #0f172a;
  color: #fff;
}

.cwh-modal-btn-primary:hover {
  background: #000;
}

.cwh-guide-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cwh-guide-chip {
  display: inline-block;
  max-width: 100%;
  padding: 0.4rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  text-align: center;
}

.cwh-guide-chip:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}

@media (min-width: 480px) {
  .cwh-guide-chip {
    max-width: 11rem;
  }
}

#cpanel-help details {
  scroll-margin-top: 5rem;
}

.cwh-guide-chip.is-active {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #1e40af;
}