/* =========================================================================
   Security page. Loaded after styles.css, so every token, the nav, buttons and
   footer come for free. Laid out as a scannable index rather than a legal
   document: someone lands here because a colleague asked "what's their data
   policy" and needs to find one specific answer, not read prose top to bottom.
   ========================================================================= */

.trustpage__head { padding-block: clamp(44px, 7vh, 84px) clamp(26px, 3.5vw, 40px); }
.trustpage__head .eyebrow { margin-top: clamp(20px, 3vw, 30px); margin-bottom: 14px; }

.trustpage__title {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.trustpage__standfirst {
  margin-top: clamp(18px, 2.4vw, 26px);
  font-size: clamp(16.5px, 1.8vw, 19px);
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 62ch;
}
.trustpage__meta {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.trustpage__body {
  padding-block: clamp(30px, 4vw, 48px) clamp(56px, 8vw, 96px);
  border-top: 1px solid var(--border);
}

/* --- The eight ------------------------------------------------------------
   Two columns on a wide screen so the whole set is visible at once; the number
   is a real index here, since people refer to these by position when they come
   back with questions. ---------------------------------------------------- */
.commitments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 34px) clamp(28px, 4vw, 56px);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
.commitment {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding-top: clamp(18px, 2.2vw, 24px);
  border-top: 1px solid var(--border);
}
.commitment__num {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  padding-top: 3px;
}
.commitment__text { min-width: 0; }
.commitment h2 {
  font-family: var(--display);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.01em;
  margin-bottom: 9px;
}
.commitment p {
  color: var(--text-dim);
  font-size: clamp(15px, 1.5vw, 16.5px);
  line-height: 1.6;
}
/* The second paragraph is the "how this actually works" layer — the reason the
   page exists rather than just the home-page strip. Set quieter so the
   commitment itself still reads first. */
.commitment__detail {
  margin-top: 10px;
  padding-left: 14px;
  border-left: 1px solid var(--border);
  color: var(--text-soft) !important;
  font-size: 14.5px !important;
  line-height: 1.6;
}

/* --- What we don't claim -------------------------------------------------- */
.trustpage__note {
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--border-2);
  border-radius: var(--r-card-lg);
  background: var(--sheen), var(--surface);
  box-shadow: var(--edge-light);
  max-width: 78ch;
}
.trustpage__note h2 {
  font-family: var(--display);
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.trustpage__note p { color: var(--text-dim); font-size: clamp(15.5px, 1.6vw, 17px); line-height: 1.65; }
.trustpage__note p + p { margin-top: 12px; }

/* --- Closing CTA ---------------------------------------------------------- */
.trustpage__cta {
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(26px, 3.4vw, 40px);
  border: 1px solid rgba(129,137,242,0.22);
  border-radius: var(--r-block);
  background:
    radial-gradient(90% 140% at 8% 0%, rgba(129,137,242,0.11), transparent 62%),
    var(--sheen),
    var(--surface);
  box-shadow: var(--edge-light), var(--shadow-1);
}
.trustpage__cta h2 {
  font-family: var(--display);
  font-size: clamp(21px, 2.8vw, 30px);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.trustpage__cta p { margin-top: 10px; color: var(--text-dim); font-size: clamp(15.5px, 1.6vw, 17px); }
.trustpage__ctarow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
  margin-top: 24px;
}

@media (max-width: 860px) {
  .commitments { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .commitment { gap: 12px; padding-top: 16px; }
  .commitment__detail { padding-left: 12px; font-size: 14px !important; }
  .trustpage__ctarow .btn { width: 100%; justify-content: center; }
}
