/* intercept-privacy.css — Intercept Health (WhatsApp screening) privacy notice.
   Extends legal.css; adds only the product-specific furniture. Everything here
   is prefixed `ihp-` so it can never leak into the other legal pages. */

/* ---------- hero product lockup ---------- */

.ihp-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}

.ihp-lockup__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--white);
}

.ihp-lockup__by {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--deep-tint);
  padding-left: 12px;
  border-left: 1px solid var(--deep-hair);
}

.ihp-lockup__dot {
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

/* legal.css sets `.legal-hero__meta span{display:block}`, which also catches the
   nested .legal-todo and stretches the highlight across the hero. Keep it inline. */
.legal-hero__meta .legal-todo { display: inline; }

/* ---------- numbered conversation flow ---------- */

.ihp-flow {
  list-style: none !important;
  margin: 0 0 30px !important;
  padding: 0 !important;
  display: grid;
  gap: 12px;
  counter-reset: ihp-step;
}

.ihp-flow li {
  counter-increment: ihp-step;
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 16px 20px 16px 60px;
  margin: 0 !important;
  font-size: 16px;
  line-height: 1.6;
}

.ihp-flow li::before {
  content: counter(ihp-step);
  position: absolute;
  left: 18px;
  top: 16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ihp-flow strong { display: block; margin-bottom: 2px; }

/* ---------- "at a glance" data table ---------- */

.ihp-table-scroll { overflow-x: auto; margin: 0 0 28px; }

.ihp-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  font-family: var(--font-body);
}

.ihp-table th,
.ihp-table td {
  text-align: left;
  padding: 13px 18px;
  font-size: 15.5px;
  line-height: 1.6;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}

.ihp-table th {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--tint);
}

.ihp-table tr:last-child td { border-bottom: 0; }
.ihp-table td:first-child { color: var(--ink); font-weight: 600; }

/* ---------- score band chips ---------- */

.ihp-bands {
  list-style: none !important;
  margin: 0 0 26px !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ihp-bands li {
  margin: 0 !important;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.6;
}

.ihp-bands b {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  color: var(--ink);
  margin-bottom: 4px;
}

.ihp-bands b::before {
  content: '';
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
}

.ihp-bands li[data-band="green"] b { color: #1f7a4d; }
.ihp-bands li[data-band="amber"] b { color: #9a6a00; }
.ihp-bands li[data-band="red"]   b { color: var(--peach-text); }

/* ---------- keyword pills (STOP / DELETE) ---------- */

.ihp-kw {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  background: var(--soft-blue);
  color: var(--accent-dark);
  border-radius: var(--r-pill);
  padding: 2px 10px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .ihp-bands { grid-template-columns: 1fr; }
  .ihp-flow li { padding: 14px 16px 14px 54px; }
  .ihp-lockup { flex-wrap: wrap; gap: 8px; }
}
