/* ---------- Landing / idle upgrades (reference v3) ---------- */

.hero {
  text-align: center;
  padding: 12px 0 8px;
}

.hero .eyebrow {
  color: var(--scan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0 0 14px;
}

.hero h1 span {
  /* keep solid text per reference — no gradient fill on full line */
  color: var(--text);
  background: none;
  -webkit-text-fill-color: unset;
}

.hero p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto 28px;
  padding: 0 4px;
}

/* Scan card — glass shell around URL row */
.scan-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(98, 230, 255, 0.35);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  margin-bottom: 12px;
}

.scan-card .scan-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.scan-card .url-bar {
  margin: 0;
}

.scan-card .url-bar input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
}

.scan-card .url-bar input::placeholder {
  color: #8a8f98;
  opacity: 1;
}

/* Compact scan button — not oversized */
.scan-card .url-bar .scan-btn {
  padding: 0 16px;
  min-height: 44px;
  font-size: 13px;
  border-radius: 10px;
  gap: 4px;
  box-shadow: 0 0 16px rgba(98, 230, 255, 0.28);
}

.scan-card .url-bar .scan-btn svg {
  width: 14px;
  height: 14px;
}

.hint {
  text-align: center;
  font-size: 11.5px;
  color: var(--muted);
  margin: 0 0 36px;
}

/* Section labels */
.section-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

/* Category 2×2 grid — unique class names to avoid clash with results .cat-card */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 36px;
  width: 100%;
}

.site-type-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: left;
  min-width: 0;
  overflow: hidden;
}

.site-type-card .icon-box {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  border-radius: 9px;
  background: rgba(98, 230, 255, 0.08);
  border: 1px solid rgba(98, 230, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.site-type-card .icon-box svg {
  width: 17px !important;
  height: 17px !important;
  max-width: 17px;
  max-height: 17px;
  stroke: var(--scan);
  fill: none;
  display: block;
  flex-shrink: 0;
}

.site-type-card .name {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 3px;
  color: var(--text);
}

.site-type-card .desc {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(98, 230, 255, 0.1);
  border: 1px solid rgba(98, 230, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 19px !important;
  height: 19px !important;
  max-width: 19px;
  max-height: 19px;
  stroke: var(--scan);
  fill: none;
  display: block;
  flex-shrink: 0;
}

.feature-text .name {
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 3px;
  color: var(--text);
}

.feature-text .desc {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.badge-new {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  color: var(--scan);
  border: 1px solid rgba(98, 230, 255, 0.35);
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}

/* Header BETA pill */
.header-pill {
  font-size: 10px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (min-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
}
