/* Shared trust / proof pages — emerald & gold luxury theme */

:root {
  --tp-gold: #d4c4a0;
  --tp-gold-muted: #b8975e;
  --tp-bg: #071a18;
  --tp-bg-elevated: #0c2824;
  --tp-border: rgba(184, 151, 94, 0.22);
  --tp-text: rgba(235, 248, 245, 0.92);
  --tp-muted: rgba(235, 248, 245, 0.62);
}

body.trust-page {
  background: var(--tp-bg);
  color: var(--tp-text);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
  margin: 0;
}

.trust-header {
  border-bottom: 1px solid var(--tp-border);
  background: rgba(4, 15, 14, 0.92);
  padding: 1rem 1.5rem;
}

.trust-header-inner {
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tp-gold);
  text-decoration: none;
}

.trust-logo span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--tp-muted);
}

.trust-nav a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tp-muted);
  text-decoration: none;
  margin-left: 1rem;
}

.trust-nav a:hover {
  color: var(--tp-gold);
}

.trust-main {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.trust-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tp-gold);
}

.trust-main h1 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.12;
}

.trust-lede {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  color: var(--tp-muted);
  max-width: 42rem;
}

.trust-steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  counter-reset: step;
}

.trust-steps li {
  counter-increment: step;
  margin-bottom: 1rem;
  padding: 1.15rem 1.2rem 1.15rem 3.25rem;
  border: 1px solid var(--tp-border);
  border-radius: 4px;
  background: rgba(12, 40, 36, 0.45);
  position: relative;
}

.trust-steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  border: 1px solid var(--tp-gold-muted);
  color: var(--tp-gold);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-steps strong {
  display: block;
  color: #fff;
  margin-bottom: 0.25rem;
}

.trust-steps p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--tp-muted);
}

.trust-callout {
  margin: 2rem 0;
  padding: 1.15rem 1.25rem;
  border-left: 3px solid var(--tp-gold-muted);
  background: rgba(184, 151, 94, 0.08);
  font-size: 0.9rem;
  color: var(--tp-muted);
}

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 2rem 0;
}

.trust-btn-primary {
  display: inline-block;
  padding: 0.7rem 1.25rem;
  background: linear-gradient(180deg, #d4c4a0 0%, var(--tp-gold-muted) 100%);
  color: #0c2824;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.trust-btn-ghost {
  display: inline-block;
  padding: 0.7rem 1.25rem;
  border: 1px solid rgba(184, 151, 94, 0.45);
  color: var(--tp-gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.trust-disclaimer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--tp-border);
  font-size: 0.78rem;
  color: rgba(235, 248, 245, 0.48);
}

.trust-disclaimer a {
  color: #9ee0d4;
  font-weight: 600;
  text-decoration: none;
}

.trust-disclaimer a:hover {
  color: var(--tp-gold);
}

.trust-site-footer {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  text-align: center;
  border-top: 1px solid var(--tp-border);
}

.trust-site-footer p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--tp-muted);
}

.trust-site-footer a {
  color: #9ee0d4;
  font-weight: 600;
  text-decoration: none;
}

.trust-site-footer a:hover {
  color: var(--tp-gold);
}

.trust-site-footer-note {
  margin-top: 0.4rem !important;
  font-size: 0.76rem !important;
  color: rgba(235, 248, 245, 0.42) !important;
}

/* Sample report table */
.report-panel {
  margin: 1.5rem 0;
  border: 1px solid var(--tp-border);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(4, 15, 14, 0.55);
}

.report-panel-header {
  padding: 0.75rem 1rem;
  background: rgba(184, 151, 94, 0.1);
  border-bottom: 1px solid var(--tp-border);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-gold);
}

.report-grid {
  display: grid;
  grid-template-columns: minmax(8rem, 32%) 1fr;
  gap: 0;
  font-size: 0.86rem;
}

.report-grid > div {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(184, 151, 94, 0.12);
}

.report-grid > div:nth-child(odd) {
  color: var(--tp-muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.report-grid > div:nth-child(even) {
  color: var(--tp-text);
}

.brand-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.brand-split-card {
  padding: 1.25rem;
  border: 1px solid var(--tp-border);
  border-radius: 4px;
  background: rgba(12, 40, 36, 0.45);
}

.brand-split-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: var(--tp-gold);
}

.brand-split-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--tp-muted);
}

.brand-split-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(235, 248, 245, 0.45);
  margin-bottom: 0.35rem;
}

/* Self-serve trial funnel */
.trial-path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.trial-path-card {
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--tp-border);
  border-radius: 4px;
  background: rgba(12, 40, 36, 0.45);
}

.trial-path-card--primary {
  border-color: rgba(184, 151, 94, 0.45);
  box-shadow: 0 0 0 1px rgba(184, 151, 94, 0.12);
}

.trial-path-tag {
  margin: 0 0 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-gold-muted);
}

.trial-path-card h2 {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  color: var(--tp-gold);
}

.trial-path-card > p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--tp-muted);
}

.trial-path-steps {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  font-size: 0.86rem;
  color: var(--tp-text);
}

.trial-path-steps li {
  margin-bottom: 0.45rem;
}

.trial-path-time {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--tp-muted);
}

.trial-path-cta {
  display: inline-block;
  margin-bottom: 0.65rem;
}

.trial-path-note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--tp-muted);
}

.trial-subhead {
  margin: 2rem 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  color: var(--tp-gold);
}

.message-widget-trial {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(184, 151, 94, 0.35);
  border-radius: 4px;
  background: rgba(184, 151, 94, 0.08);
  font-size: 0.86rem;
  line-height: 1.5;
}

.message-widget-trial a {
  color: var(--tp-gold);
  font-weight: 700;
}

/* Security & compliance detail page (RevOptix navy theme) */
body.security-detail-page {
  background: #00091e;
  color: rgba(247, 250, 255, 0.92);
}

.trust-header--rev {
  background: rgba(0, 9, 30, 0.95);
  border-bottom-color: rgba(200, 155, 63, 0.22);
}

.trust-logo--rev {
  color: #d9b769;
}

.trust-eyebrow--rev {
  color: #d9b769;
}

.security-detail-page .trust-lede strong {
  color: #fff;
}

.security-detail-main {
  max-width: 56rem;
}

.security-detail-boundary {
  margin: 2rem 0;
}

.security-detail-boundary h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  color: #fff;
}

.security-detail-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.security-detail-card {
  padding: 1.15rem 1.2rem;
  border-radius: 4px;
  border: 1px solid rgba(200, 155, 63, 0.22);
  background: rgba(0, 23, 55, 0.45);
}

.security-detail-card--yes {
  border-color: rgba(200, 155, 63, 0.35);
}

.security-detail-card--no {
  border-color: rgba(143, 212, 197, 0.2);
  background: rgba(0, 15, 35, 0.55);
}

.security-detail-card-tag {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200, 210, 230, 0.55);
}

.security-detail-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  color: #fff;
}

.security-detail-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(200, 210, 230, 0.62);
}

.security-detail-badges {
  margin: 2rem -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.security-detail-section {
  margin: 2rem 0;
}

.security-detail-faq details {
  margin-bottom: 0.65rem;
  border: 1px solid rgba(200, 155, 63, 0.18);
  border-radius: 4px;
  background: rgba(0, 23, 55, 0.35);
}

.security-detail-faq summary {
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.security-detail-faq summary::-webkit-details-marker {
  display: none;
}

.security-detail-faq p {
  margin: 0;
  padding: 0 1rem 1rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(200, 210, 230, 0.62);
}

.security-detail-faq a {
  color: #d9b769;
  font-weight: 600;
  text-decoration: none;
}

.security-detail-faq a:hover {
  text-decoration: underline;
}

.security-detail-site-footer {
  padding: 1.25rem 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(200, 155, 63, 0.12);
}

.security-detail-site-footer p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(200, 210, 230, 0.45);
}

.security-detail-site-footer a {
  color: #d9b769;
  text-decoration: none;
}

.security-detail-site-footer-note {
  margin-top: 0.35rem !important;
  font-size: 0.76rem !important;
}

@media (max-width: 640px) {
  .security-detail-split {
    grid-template-columns: 1fr;
  }
}
