/* TRINITI — Albedo accent
   Universal consciousness development app
   Dark layout throughout
   Local styles: all shared components come from core.css */
:root {
  --platform-accent: var(--hh-accent);
  --platform-accent-shadow: var(--hh-accent-dark);
  --triniti-deep: #3d4a2e;  /* deep olive — follows albedo → albedo-dark → deep */
}

/* Hero watermark — TRINITI logo, massively inflated, ultra-faint */
.hh-hero-section.hh-section--accent-bg {
  position: relative;
}

.hh-hero-section.hh-section--accent-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20%;
  transform: translateY(-50%);
  width: 90%;
  height: 160%;
  background: url('/assets/logo-TRINITI.svg') no-repeat center / contain;
  filter: brightness(10);
  opacity: 0.04;
  pointer-events: none;
}

/* Albedo is too light for white text — force dark text on ALL buttons */
.hh-btn--light,
.hh-btn-primary,
.hh-btn--primary {
  color: var(--hh-bg-dark);
}

.hh-btn-primary:hover,
.hh-btn--primary:hover,
.hh-btn--light:hover {
  color: var(--hh-bg-dark);
}

/* Albedo is too pale for light backgrounds — deep olive override on header */
.hh-header .hh-nav-link--nexus {
  background-color: var(--triniti-deep);
  color: var(--hh-text-light);
  border-color: var(--triniti-deep);
}

.hh-header .hh-nav-link--nexus:hover {
  background-color: var(--hh-bg-dark);
}

.hh-header .hh-nav-link--active,
.hh-header .hh-nav-link:hover {
  color: var(--triniti-deep);
}

/* NEXUS modal: albedo invisible on white — use deep olive */
.hh-nexus-modal {
  --hh-accent: var(--triniti-deep);
}

/* Ghost buttons on dark bg need albedo border + text */
.hh-btn--ghost {
  color: var(--hh-accent);
  border-color: var(--hh-accent);
}

/* TRINITI stat blocks — large hero numbers */
.triniti-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.triniti-stat__value {
  font-family: var(--hh-font-serif);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--hh-accent);
}

.triniti-stat__label {
  font-family: var(--hh-font-sans);
  font-size: var(--hh-fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hh-text-muted-light);
  margin-top: 0.35rem;
}

/* TRINITI feature row — icon + text horizontal layout */
.triniti-feature-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--hh-border-dark);
}

.triniti-feature-row:last-child {
  border-bottom: none;
}

.triniti-feature-row__num {
  font-family: var(--hh-font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--hh-accent);
  min-width: 2rem;
  line-height: 1;
  margin-top: -0.15em;
}

.triniti-feature-row h4 {
  font-family: var(--hh-font-sans);
  font-size: var(--hh-fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hh-text-light);
  margin: 0 0 0.4rem;
}

.triniti-feature-row p {
  font-size: var(--hh-fs-sm);
  color: var(--hh-text-muted-light);
  line-height: 1.65;
  margin: 0;
}

/* TRINITI free badge */
.triniti-free-badge {
  display: inline-block;
  font-family: var(--hh-font-sans);
  font-size: var(--hh-fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border: 1px solid var(--hh-accent);
  color: var(--hh-accent);
  margin-bottom: 1.5rem;
}

/* TRINITI stats row — horizontal metrics */
.triniti-stats-row {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hh-border-dark);
}

@media (max-width: 1024px) {
  .triniti-stats-row {
    flex-wrap: wrap;
    gap: 1rem 2rem;
    width: 100%;
  }
  .triniti-stat__value {
    font-size: 2rem;
  }
  .hh-hero-section.hh-section--accent-bg::after {
    right: -40%;
    width: 120%;
    opacity: 0.03;
  }
}

@media (max-width: 480px) {
  .hh-hero-section.hh-section--accent-bg::after {
    right: -10%;
    width: 80%;
    opacity: 0.035;
  }
}
