/* Compass click-through disclosure + persuasion card */

.cx-card {
  margin: 22px 0 16px;
  padding: 22px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-left: 3px solid var(--terra);
  border-radius: 14px;
  box-shadow: 0 8px 28px -16px rgba(15, 53, 32, 0.18);
}
.cx-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 6px;
}
.cx-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 14px 0;
  text-wrap: pretty;
}
.cx-list {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.cx-list li {
  position: relative;
  padding-left: 26px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.cx-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--terra);
  background: var(--terra-soft);
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cx-list li strong { color: var(--ink); font-weight: 600; }

/* Anchor word toggle */
.cx-toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  margin-bottom: 14px;
  transition: border-color 160ms ease, background 160ms ease;
}
.cx-toggle:hover { border-color: var(--terra); }
.cx-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.cx-toggle-track {
  display: inline-block;
  width: 40px;
  height: 22px;
  background: var(--line-strong);
  border-radius: 99px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 200ms ease;
}
.cx-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 99px;
  background: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transition: transform 200ms cubic-bezier(.4,0,.2,1);
}
.cx-toggle input:checked ~ .cx-toggle-track { background: var(--terra); }
.cx-toggle input:checked ~ .cx-toggle-track .cx-toggle-thumb { transform: translateX(18px); }
.cx-toggle-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cx-toggle-title {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.cx-toggle-sub {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-3);
}
.cx-toggle-sub em {
  color: var(--terra-deep);
  font-style: italic;
  font-family: var(--serif);
}

/* Soft nudge line */
.cx-nudge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #FEFDF9 0%, #F4FAF0 100%);
  border-radius: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: var(--terra-deep);
}
.cx-nudge-mark {
  font-style: normal;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--terra);
  flex-shrink: 0;
}

/* Skip-is-okay reassurance under CTA */
.cx-skip {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-3);
  text-align: center;
  font-style: italic;
}
