/* Privacy-bargain surface — see docs/UX.md page 3 (Onboarding
 * step 4: the plain-language trade screen),
 * docs/STYLE-GUIDE.md §9.3 (bounded-exception treatment for the
 * relay-exception callout), §10 (component contracts).
 *
 * Mirrors the welcome / capture / choose hero-shell shape. The three
 * named sections (you / choice / relay) read as a single column;
 * the closing contrast callout uses the lapis bounded-exception
 * border per STYLE-GUIDE §9.3, reserved for considered-disclosure
 * surfaces. */

.bargain-hero {
  min-height: 100dvh;
  padding: var(--space-12) var(--space-6);
  color: var(--color-text-body);
  display: grid;
  place-content: center;
}

.bargain-column {
  display: grid;
  grid-template-columns: minmax(0, 56ch);
  gap: var(--space-5);
  text-align: left;
}

.bargain-back-link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-primary-text);
  text-decoration: none;
  display: inline-block;
  justify-self: start;
  margin-block-end: var(--space-2);
}

.bargain-back-link:hover {
  text-decoration: underline;
}

/* Each named section reads as a small grouping of title + paragraph,
 * separated by `gap` rather than borders. Borders would over-claim the
 * structure here — the page is plain-language, not a contract. */
.bargain-section {
  display: grid;
  gap: var(--space-2);
}

.bargain-section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-text-heading);
  margin: 0;
}

.bargain-section-body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text-body);
  margin: 0;
}

/* Closing contrast callout. Lapis bounded-exception treatment — this
 * is the single visually-elevated moment on the page where Olocus
 * names what it is in relation to what platforms are. */
.bargain-contrast {
  background: var(--color-accent-bounded-subtle);
  border-inline-start: 3px solid var(--color-accent-bounded);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  display: grid;
  gap: var(--space-2);
}

.bargain-contrast-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-bounded);
  margin: 0;
}

.bargain-contrast-body {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text-body);
  margin: 0;
}

.bargain-footer {
  display: flex;
  justify-content: flex-start;
  margin-block-start: var(--space-3);
}

@media (max-width: 480px) {
  .bargain-hero {
    padding: var(--space-8) var(--space-4);
  }
}
