:root {
  --bg: #070b14;
  --bg-secondary: #0a0f1e;
  --surface: #0d1424;
  --surface-hover: #131b30;
  --surface-elevated: #162038;
  --border: #1a2744;
  --border-glow: #1e3a5f;
  --primary: #00d4ff;
  --primary-dim: #0088aa;
  --secondary: #7c3aed;
  --secondary-dim: #5b21b6;
  --success: #10b981;
  --success-dim: #065f46;
  --warning: #f59e0b;
  --warning-dim: #78350f;
  --danger: #ef4444;
  --danger-dim: #7f1d1d;
  --text: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --glow-primary: rgba(0, 212, 255, 0.15);
  --glow-success: rgba(16, 185, 129, 0.15);
  --glow-warning: rgba(245, 158, 11, 0.15);
  --glow-danger: rgba(239, 68, 68, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  font-size: 14px;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(0, 212, 255, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(124, 58, 237, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Scan line effect */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 212, 255, 0.008) 2px,
    rgba(0, 212, 255, 0.008) 4px
  );
  pointer-events: none;
  z-index: 9999;
  animation: scanMove 8s linear infinite;
}

@keyframes scanMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(7, 11, 20, 0.85);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.logo .accent {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-mono);
  transition: all 0.2s;
  letter-spacing: 1px;
}

.lang-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 12px var(--glow-primary);
}

/* Hero */
.hero {
  padding: 36px 0 24px;
  text-align: center;
}

.hero-title {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #8b5cf6, var(--primary));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* IP Input Group */
.ip-input-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 20px;
}

.ip-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 16px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s;
}

.ip-input::placeholder {
  color: var(--text-muted);
}

.ip-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--glow-primary), 0 0 20px var(--glow-primary);
}

.check-btn {
  background: linear-gradient(135deg, var(--primary-dim), var(--primary));
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
}

.check-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
}

.check-btn:active {
  transform: translateY(0);
}

.check-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auto-ip-hint {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: var(--font-mono);
}

.auto-ip-hint a {
  color: var(--primary);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

.auto-ip-hint a:hover {
  color: #fff;
}

/* Loading */
.loading-section {
  padding: 24px 0;
  text-align: center;
}

.scan-animation {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  animation: spin 1s linear infinite;
  position: relative;
}

.scan-animation::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: var(--secondary);
  animation: spin 1.5s linear infinite reverse;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-text {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Score Dashboard */
.dashboard {
  padding: 12px 0;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  align-items: start;
}

/* Score Ring */
.score-ring-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.score-ring-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.score-ring-card.loaded::before {
  opacity: 1;
}

.score-ring-container {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0 auto 12px;
}

.score-ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-ring-bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 8;
}

.score-ring-fg {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.5s;
  filter: drop-shadow(0 0 8px var(--primary));
}

.score-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.score-number {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
}

.score-max {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.score-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.score-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Quick Stats Grid */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  border-color: var(--border-glow);
  background: var(--surface-hover);
  transform: translateY(-2px);
}

.stat-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.stat-card-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.stat-card-icon.type { background: rgba(0, 212, 255, 0.12); color: var(--primary); }
.stat-card-icon.location { background: rgba(124, 58, 237, 0.12); color: var(--secondary); }
.stat-card-icon.isp { background: rgba(16, 185, 129, 0.12); color: var(--success); }
.stat-card-icon.risk { background: rgba(245, 158, 11, 0.12); color: var(--warning); }
.stat-card-icon.proxy { background: rgba(239, 68, 68, 0.12); color: var(--danger); }
.stat-card-icon.hosting { background: rgba(239, 68, 68, 0.12); color: var(--danger); }

.stat-card-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.stat-card-value {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 2px;
  word-break: break-word;
}

.stat-card-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Status Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-success {
  background: var(--success-dim);
  color: var(--success);
}

.badge-warning {
  background: var(--warning-dim);
  color: var(--warning);
}

.badge-danger {
  background: var(--danger-dim);
  color: var(--danger);
}

.badge-info {
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary);
}

.badge-neutral {
  background: rgba(100, 116, 139, 0.15);
  color: var(--text-muted);
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Tab Navigation */
.tab-section {
  margin-top: 20px;
}

.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tab-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 12px 20px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-sans);
  transition: all 0.2s;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tab-btn:hover {
  color: var(--text-secondary);
}

.tab-btn.active {
  color: var(--primary);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 8px var(--glow-primary);
}

.tab-icon {
  font-size: 1rem;
}

/* Tab Content */
.tab-panel {
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.info-item:hover {
  background: var(--surface-hover);
}

.info-key {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.info-value {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  text-align: right;
  word-break: break-all;
}

/* Check Items (for Purity, Leak, etc.) */
.check-list {
  display: grid;
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.check-item:hover {
  background: var(--surface-hover);
}

.check-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.check-item-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.check-item-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Score Breakdown */
.score-breakdown {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 16px;
}

.score-breakdown h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.breakdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 39, 68, 0.5);
}

.breakdown-item:last-child {
  border-bottom: none;
}

.breakdown-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.breakdown-value {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
}

.breakdown-value.positive { color: var(--success); }
.breakdown-value.negative { color: var(--danger); }
.breakdown-value.neutral { color: var(--text-muted); }

/* Leak Test Section */
.leak-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
}

.leak-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.leak-header h3 {
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.leak-header p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.leak-btn {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s;
  font-family: var(--font-sans);
}

.leak-btn:hover {
  border-color: var(--primary);
  box-shadow: 0 0 12px var(--glow-primary);
}

.leak-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.leak-results {
  margin-top: 16px;
}

.leak-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.leak-ip-type {
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.leak-ip-type.local {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.leak-ip-type.public {
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary);
}

/* AI Service Cards */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.ai-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}

.ai-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.ai-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.ai-card-icon.claude { background: rgba(204, 120, 50, 0.12); }
.ai-card-icon.chatgpt { background: rgba(16, 185, 129, 0.12); }
.ai-card-icon.gemini { background: rgba(66, 133, 244, 0.12); }
.ai-card-icon.copilot { background: rgba(0, 120, 212, 0.12); }

.ai-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.ai-card-status {
  margin-top: 8px;
}

.ai-check-btn {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s;
  margin-top: 12px;
  font-family: var(--font-sans);
}

.ai-check-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Fingerprint Section */
.fingerprint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 12px;
}

.fp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.fp-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.fp-icon.match {
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
}

.fp-icon.mismatch {
  background: rgba(239, 68, 68, 0.12);
  color: var(--danger);
}

.fp-icon.info {
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary);
}

.fp-content {
  flex: 1;
  min-width: 0;
}

.fp-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.fp-value {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text);
  word-break: break-all;
  line-height: 1.4;
}

.fp-status {
  font-size: 0.72rem;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Footer */
.site-footer {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Version */
.version-tag {
  display: inline-block;
  padding: 1px 6px;
  background: var(--border);
  color: var(--primary);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  margin-left: 4px;
  vertical-align: middle;
}

.site-footer a {
  color: var(--primary);
  text-decoration: none;
}

/* Utility */
[x-cloak] { display: none !important; }

.text-primary { color: var(--primary); }
.text-secondary-color { color: var(--secondary); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-muted { color: var(--text-muted); }

.mono { font-family: var(--font-mono); }

/* Animations */
.slide-up {
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 1.75rem; }
  .ip-input-group { flex-direction: column; }
  .ip-input { width: 100%; }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .ai-grid {
    grid-template-columns: 1fr;
  }
  .fingerprint-grid {
    grid-template-columns: 1fr;
  }
  .tab-btn {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero { padding: 24px 0 16px; }
  .hero-title { font-size: 1.5rem; }
  .quick-stats { grid-template-columns: 1fr; }
  .score-ring-container { width: 140px; height: 140px; }
  .score-number { font-size: 2.2rem; }
}

/* Help / Glossary Panel */
.help-panel {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.help-content {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 680px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.help-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.help-header h2 {
  font-size: 1.05rem;
  font-weight: 600;
}

.help-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.help-close:hover {
  color: var(--text);
}

.help-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
}

.help-list {
  display: grid;
  gap: 16px;
}

.help-item {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(26, 39, 68, 0.4);
}

.help-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.help-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.help-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.help-item p strong {
  color: var(--text);
}
