/* Trust Center marketing page: full showcase + compare */

.trust-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
  max-width: none;
}

.trust-hero-stat {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 36px rgba(10, 15, 24, 0.07);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.trust-hero-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--trust-stat-accent, var(--accent-gradient));
}

.trust-hero-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(10, 15, 24, 0.1);
}

.trust-hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
  color: var(--trust-stat-ink, var(--ink));
}

.trust-hero-stat strong em {
  font-style: normal;
  color: var(--lime-deep);
}

.trust-hero-stat span {
  font-size: 0.72rem;
  color: var(--ink-2);
  line-height: 1.45;
}

.trust-hero-stat--live {
  --trust-stat-accent: linear-gradient(90deg, var(--cyan) 0%, #25d7c8 100%);
  --trust-stat-ink: var(--cyan-deep);
  border-color: rgba(0, 196, 204, 0.38);
  background: linear-gradient(165deg, rgba(0, 196, 204, 0.14) 0%, rgba(255, 255, 255, 0.88) 58%);
}

.trust-hero-stat--live strong {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-hero-stat__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(154, 226, 52, 0.65);
  animation: trust-stat-pulse 2.2s ease-in-out infinite;
}

.trust-hero-stat--tiers {
  --trust-stat-accent: linear-gradient(90deg, var(--lime) 0%, var(--lime-2) 100%);
  --trust-stat-ink: var(--lime-deep);
  border-color: rgba(154, 226, 52, 0.4);
  background: linear-gradient(165deg, rgba(154, 226, 52, 0.12) 0%, rgba(255, 255, 255, 0.88) 58%);
}

.trust-hero-stat--graph {
  --trust-stat-accent: var(--accent-gradient);
  border-color: rgba(0, 151, 167, 0.32);
  background: linear-gradient(165deg, rgba(0, 196, 204, 0.08) 0%, rgba(154, 226, 52, 0.08) 48%, rgba(255, 255, 255, 0.9) 100%);
}

.trust-hero-stat--graph strong {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-hero-stat--silos {
  --trust-stat-accent: linear-gradient(90deg, var(--onyx) 0%, var(--cyan-deep) 100%);
  border-color: rgba(10, 15, 24, 0.14);
  background: linear-gradient(165deg, rgba(10, 15, 24, 0.04) 0%, rgba(255, 255, 255, 0.9) 62%);
}

.trust-hero-stat--silos strong em {
  font-size: 1.15em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes trust-stat-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.92); }
}

/* Full trust center app mock */
.trust-showcase {
  padding: clamp(48px, 8vw, 88px) 0;
  background: linear-gradient(180deg, rgba(0, 196, 204, 0.04) 0%, transparent 40%);
}
.trust-showcase-head {
  text-align: center;
  max-width: 42em;
  margin: 0 auto 36px;
}
.trust-showcase-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.trust-showcase-head p {
  margin: 0;
  color: var(--ink-2);
  font-size: 1.02rem;
}

.trust-app {
  border-radius: 20px;
  border: 1px solid rgba(10, 15, 24, 0.12);
  background: var(--onyx);
  color: var(--parchment);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(10, 15, 24, 0.22);
}
.trust-app-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-inv);
  background: rgba(0, 0, 0, 0.35);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: rgba(245, 242, 232, 0.55);
}
.trust-app-dots {
  display: flex;
  gap: 6px;
}
.trust-app-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  background: rgba(245, 242, 232, 0.2);
}
.trust-app-dots i:first-child { background: #ff6b6b; }
.trust-app-dots i:nth-child(2) { background: #ffb547; }
.trust-app-dots i:nth-child(3) { background: var(--lime); }
.trust-app-url {
  flex: 1;
  text-align: center;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 242, 232, 0.75);
}
.trust-app-live {
  color: var(--lime);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-app-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line-inv);
  background: rgba(0, 0, 0, 0.2);
}
.trust-app-tab {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(245, 242, 232, 0.55);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.trust-app-tab:hover {
  color: rgba(245, 242, 232, 0.85);
  background: rgba(255, 255, 255, 0.05);
}
.trust-app-tab.active {
  background: rgba(154, 226, 52, 0.12);
  border-color: rgba(154, 226, 52, 0.35);
  color: var(--lime);
}

.trust-app-body {
  padding: clamp(20px, 3vw, 28px);
  min-height: 340px;
}
.trust-app-panel { display: none; animation: trustFade 0.35s ease; }
.trust-app-panel.active { display: block; }
@keyframes trustFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.trust-app-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  align-items: start;
}
.trust-app-score-ring {
  text-align: center;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--line-inv);
  background: rgba(255, 255, 255, 0.04);
}
.trust-app-score-ring .big {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 500;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.trust-app-score-ring .sub {
  font-size: 0.72rem;
  color: rgba(245, 242, 232, 0.55);
  margin-top: 6px;
}
.trust-app-score-ring .grade {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(154, 226, 52, 0.15);
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.trust-app-rows { display: flex; flex-direction: column; gap: 0; }
.trust-app-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(245, 242, 232, 0.08);
  font-size: 0.82rem;
}
.trust-app-row span:first-child { flex: 1; min-width: 0; color: rgba(245, 242, 232, 0.85); }
.trust-app-row span:last-child {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
}

.trust-tier {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-tier.public { background: rgba(0, 196, 204, 0.2); color: var(--cyan); }
.trust-tier.nda { background: rgba(255, 181, 71, 0.2); color: #ffb547; }
.trust-tier.customer { background: rgba(154, 226, 52, 0.15); color: var(--lime); }

.trust-doc-list { list-style: none; margin: 0; padding: 0; }
.trust-doc-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--line-inv);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 8px;
  font-size: 0.85rem;
}
.trust-doc-list li strong { font-weight: 500; color: var(--parchment); }
.trust-doc-list li span.meta { font-size: 0.72rem; color: rgba(245, 242, 232, 0.5); }

.trust-analytics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.trust-analytic {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line-inv);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}
.trust-analytic .n {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--lime);
  line-height: 1;
}
.trust-analytic .l {
  font-size: 0.62rem;
  color: rgba(245, 242, 232, 0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}

.trust-embed-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line-inv);
}
.trust-embed-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #0a0f18;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  border: 1px solid rgba(154, 226, 52, 0.35);
}
.trust-embed-note {
  font-size: 0.78rem;
  color: rgba(245, 242, 232, 0.55);
  max-width: 28em;
}

/* Access tiers explainer */
.trust-tiers-band {
  padding: clamp(48px, 7vw, 72px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.trust-tier-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}
.trust-tier-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.trust-tier-card.t-public::before { background: var(--cyan); }
.trust-tier-card.t-nda::before { background: #ffb547; }
.trust-tier-card.t-customer::before { background: var(--lime); }
.trust-tier-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 8px 0 10px;
}
.trust-tier-card p { margin: 0; font-size: 0.88rem; color: var(--ink-2); line-height: 1.55; }
.trust-tier-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  font-size: 0.82rem;
  color: var(--ink-2);
}

/* Compare band */
.trust-compare {
  padding: clamp(56px, 9vw, 96px) 0;
  background: var(--onyx);
  color: var(--parchment);
}
.trust-compare h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.trust-compare h2 em { font-style: italic; color: var(--cyan); }
.trust-compare-lede {
  color: rgba(245, 242, 232, 0.72);
  max-width: 40em;
  margin: 0 0 36px;
  font-size: 1rem;
}
.trust-compare-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--line-inv);
}
.trust-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 640px;
}
.trust-compare-table th,
.trust-compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(245, 242, 232, 0.08);
  vertical-align: top;
}
.trust-compare-table thead th {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 242, 232, 0.5);
  background: rgba(0, 0, 0, 0.25);
}
.trust-compare-table tbody td:first-child {
  font-weight: 500;
  color: rgba(245, 242, 232, 0.9);
  width: 28%;
}
.trust-compare-table tbody td:nth-child(2) {
  color: rgba(245, 242, 232, 0.45);
  width: 36%;
}
.trust-compare-table tbody td:last-child {
  color: var(--lime);
  width: 36%;
}
.trust-compare-table tr:last-child td { border-bottom: none; }
.trust-compare-foot {
  margin-top: 20px;
  font-size: 0.72rem;
  color: rgba(245, 242, 232, 0.4);
  font-family: var(--font-mono);
}

/* Journey */
.trust-journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.trust-journey-step {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}
.trust-journey-step .step-n {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--cyan-deep);
  margin-bottom: 8px;
}
.trust-journey-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 8px;
}
.trust-journey-step p { margin: 0; font-size: 0.88rem; color: var(--ink-2); line-height: 1.55; }

.trust-gtm-band {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.02) 0%, rgba(12, 18, 28, 0) 100%);
}
.trust-gtm-band .sub { max-width: 640px; }

.quote-sec {
  padding: 48px 0 64px;
  text-align: center;
}
.quote-sec blockquote {
  margin: 0 auto 16px;
  max-width: 720px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.45;
  color: var(--ink);
}
.quote-sec cite {
  display: block;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--ink-2);
}

.trust-app-cta { padding-bottom: 64px; }
.trust-app-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px;
  border-radius: 20px;
  border: 1px solid rgba(12, 18, 28, 0.08);
  background: linear-gradient(135deg, rgba(204, 255, 0, 0.08) 0%, rgba(255, 255, 255, 0.9) 55%);
}
.trust-app-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .trust-hero-stats { grid-template-columns: 1fr 1fr; max-width: none; }
  .trust-app-grid { grid-template-columns: 1fr; }
  .trust-tier-cards { grid-template-columns: 1fr; }
  .trust-journey { grid-template-columns: 1fr; }
  .trust-analytics-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .trust-hero-stats { grid-template-columns: 1fr; }
  .trust-app-nav { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .trust-app-panel { animation: none; }
  .trust-hero-stat__dot { animation: none; }
  .trust-hero-stat:hover { transform: none; }
}
