
/* DISCLOSURE */
.disclosure {
  background: var(--bg-secondary);
  border: 1px dashed var(--border);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 0 0 40px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.disclosure strong { color: var(--text-primary); }


/* NEGATION LIST */
.negation {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  margin: 36px 0;
}
.negation-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 22px;
  font-weight: 500;
}
.negation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.negation li {
  font-size: 0.97rem;
  color: var(--text-primary);
  padding-left: 28px;
  position: relative;
  margin-bottom: 0;
}
.negation li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='5' y1='5' x2='19' y2='19'/%3E%3Cline x1='19' y1='5' x2='5' y2='19'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.negation li::marker { content: none; }


/* FEATURES */
.features {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  margin: 36px 0;
}
.features-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 22px;
  font-weight: 500;
}
.features ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.features li {
  font-size: 0.97rem;
  color: var(--text-primary);
  padding-left: 26px;
  position: relative;
  margin-bottom: 0;
}
.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.features li::marker { content: none; }


/* PRICING */
.pricing {
  margin: 36px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
}
.pricing-label {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 14px;
}
.pricing-amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.3rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}
.pricing-unit {
  font-size: 0.95rem;
  color: var(--text-secondary);
}


@media (max-width: 768px) {
  .features, .negation { padding: 24px 22px; }
  .features ul, .negation ul { grid-template-columns: 1fr; gap: 12px; }
  .pricing { grid-template-columns: 1fr; }
  .pricing-amount { font-size: 2rem; }
}