.trx-hero { position: relative; isolation: isolate; overflow: hidden; padding: clamp(80px, 12vh, 140px) 0 0; min-height: 92vh; min-height: 92dvh; display: flex; flex-direction: column; color: var(--bg-base); background: var(--brand-primary); }

.trx-hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.trx-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.46; transform: scale(1.04); transition: transform 1.4s var(--ease-out); }
.trx-hero[data-loaded="true"] .trx-hero__bg img { transform: scale(1); }
.trx-hero__bg-grade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,42,74,0.65) 0%, rgba(11,42,74,0.82) 60%, rgba(10,26,47,0.96) 100%); }
.trx-hero__bg-grid {
  position: absolute; inset: 0; opacity: 0.08; pointer-events: none;
  background-image:
    linear-gradient(rgba(245,241,234,0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,241,234,0.6) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 30% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 40%, #000 30%, transparent 75%);
}

.trx-hero__inner {
  position: relative; flex: 1;
  display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(var(--space-6), 4vw, var(--space-9));
  padding-block: var(--space-8) var(--space-7);
  align-items: end;
}
@media (max-width: 1024px) { .trx-hero__inner { grid-template-columns: 1fr; gap: var(--space-7); padding-block: var(--space-7); } }

/* ── Copy ────────────────────────────────────────────────────────────── */
.trx-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: var(--fs-100); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--secondary-soft); margin: 0 0 var(--space-5);
  padding: 6px 14px; border: 1px solid rgba(245,241,234,0.22); border-radius: var(--radius-pill);
  background: rgba(11,42,74,0.4); backdrop-filter: blur(6px);
}
.trx-hero__eyebrow-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 4px rgba(232,117,26,0.18); animation: trx-hero-pulse 2.6s var(--ease-in-out) infinite; }
@keyframes trx-hero-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }
@media (prefers-reduced-motion: reduce) { .trx-hero__eyebrow-dot { animation: none; } }

.trx-hero__title { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.025em; line-height: 0.95; margin: 0; font-size: clamp(2.6rem, 6.4vw, 5.6rem); color: var(--bg-base); }
.trx-hero__title-line { display: block; opacity: 0; transform: translateY(24px); animation: trx-hero-rise 700ms var(--ease-out) forwards; animation-delay: calc(120ms + var(--i, 0) * 110ms); }
.trx-hero__title-line:nth-child(2) { color: var(--accent); font-style: italic; }
@keyframes trx-hero-rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .trx-hero__title-line { opacity: 1; transform: none; animation: none; } }

.trx-hero__lede {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.55; max-width: 56ch;
  color: rgba(245,241,234,0.86);
  margin: var(--space-5) 0 var(--space-6);
}
.trx-hero__lede::before { content: ''; display: inline-block; width: 36px; height: 1px; background: var(--accent); vertical-align: middle; margin-right: var(--space-3); }

.trx-hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4); margin-bottom: var(--space-7); }
.trx-hero__cta-primary { padding: 14px 22px; font-size: var(--fs-300); box-shadow: 0 12px 30px rgba(232,117,26,0.35); }
.trx-hero__cta-primary:hover { box-shadow: 0 16px 36px rgba(232,117,26,0.45); }
.trx-hero__cta-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--bg-base); text-decoration: none;
  font-family: var(--font-mono); font-size: var(--fs-200); letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 0; border-bottom: 1px solid rgba(245,241,234,0.4);
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.trx-hero__cta-secondary:hover { color: var(--accent); border-color: var(--accent); }
.trx-hero__cta-secondary svg { transition: transform var(--dur-fast) var(--ease-out); }
.trx-hero__cta-secondary:hover svg { transform: translateX(3px); }

.trx-hero__facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-5); margin: 0; padding-top: var(--space-5); border-top: 1px solid rgba(245,241,234,0.18); max-width: 560px; }
.trx-hero__fact { display: flex; flex-direction: column; gap: 4px; }
.trx-hero__fact-value { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1; color: var(--bg-base); letter-spacing: -0.02em; margin: 0; }
.trx-hero__fact-label { font-family: var(--font-mono); font-size: var(--fs-100); letter-spacing: 0.1em; text-transform: uppercase; color: var(--secondary-soft); margin: 0; }
@media (max-width: 540px) { .trx-hero__facts { grid-template-columns: 1fr; gap: var(--space-3); } }

/* ── Proof card ──────────────────────────────────────────────────────── */
.trx-hero__proof { position: relative; align-self: end; }
.trx-hero__proof-card {
  display: flex; flex-direction: column;
  background: var(--bg-base); color: var(--ink-primary);
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: 0 30px 60px rgba(10,26,47,0.35), 0 0 0 1px rgba(245,241,234,0.12);
  text-decoration: none;
  transform: translateY(0) rotate(-0.4deg);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
a.trx-hero__proof-card:hover { transform: translateY(-4px) rotate(0); box-shadow: 0 40px 70px rgba(10,26,47,0.45), 0 0 0 1px var(--accent); }

.trx-hero__proof-stamp {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-primary); color: var(--bg-base);
  font-family: var(--font-mono); font-size: var(--fs-100); letter-spacing: 0.14em; text-transform: uppercase;
  padding: 10px 16px;
}
.trx-hero__proof-stamp-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); animation: trx-hero-pulse 2.6s var(--ease-in-out) infinite; }
.trx-hero__proof-stamp-sep { opacity: 0.4; }

.trx-hero__proof-media { margin: 0; aspect-ratio: 4/3; overflow: hidden; background: var(--secondary-soft); }
.trx-hero__proof-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease-out); }
a.trx-hero__proof-card:hover .trx-hero__proof-media img { transform: scale(1.04); }

.trx-hero__proof-body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); }
.trx-hero__proof-meta { font-family: var(--font-mono); font-size: var(--fs-100); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); margin: 0; }
.trx-hero__proof-title { font-family: var(--font-display); font-size: var(--fs-500); line-height: 1.2; margin: 0; color: var(--ink-primary); }
.trx-hero__proof-outcome { color: var(--ink-muted); font-size: var(--fs-200); margin: 0; line-height: 1.55; }

.trx-hero__proof-footer { display: flex; align-items: end; justify-content: space-between; gap: var(--space-3); margin-top: var(--space-3); padding-top: var(--space-4); border-top: 1px dashed var(--line); }
.trx-hero__proof-metric { display: flex; flex-direction: column; gap: 2px; }
.trx-hero__proof-metric-value { font-family: var(--font-display); font-size: var(--fs-600); line-height: 1; color: var(--brand-primary); }
.trx-hero__proof-metric-label { font-family: var(--font-mono); font-size: var(--fs-100); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }
.trx-hero__proof-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: var(--fs-100); letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
a.trx-hero__proof-card:hover .trx-hero__proof-link span { transform: translateX(3px); }
.trx-hero__proof-link span { transition: transform var(--dur-fast) var(--ease-out); display: inline-block; }

.trx-hero__proof--placeholder .trx-hero__proof-card { transform: none; }

@media (max-width: 1024px) {
  .trx-hero__proof-card { transform: none; max-width: 520px; }
}

/* ── Marquee ─────────────────────────────────────────────────────────── */
.trx-hero__marquee { border-top: 1px solid rgba(245,241,234,0.16); border-bottom: 1px solid rgba(245,241,234,0.16); margin-top: var(--space-6); background: rgba(10,26,47,0.42); overflow: hidden; }
.trx-hero__marquee-track { display: flex; gap: 0; animation: trx-hero-marquee 38s linear infinite; width: max-content; }
.trx-hero__marquee-list { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--space-7); padding: var(--space-4) var(--space-6); flex-shrink: 0; }
.trx-hero__marquee-list li {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: var(--fs-200); letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--secondary-soft); white-space: nowrap;
}
.trx-hero__marquee-dot { width: 6px; height: 6px; border-radius: 1px; background: var(--accent); transform: rotate(45deg); }
@keyframes trx-hero-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .trx-hero__marquee-track { animation: none; } }
.trx-hero__marquee:hover .trx-hero__marquee-track { animation-play-state: paused; }

/* ── Scroll indicator ────────────────────────────────────────────────── */
.trx-hero__scroll {
  position: absolute; right: var(--space-5); bottom: var(--space-9);
  display: inline-flex; flex-direction: column; align-items: center; gap: var(--space-2);
  text-decoration: none; color: var(--secondary-soft);
  font-family: var(--font-mono); font-size: var(--fs-100); letter-spacing: 0.16em; text-transform: uppercase;
  z-index: 2;
}
.trx-hero__scroll-label { writing-mode: vertical-rl; transform: rotate(180deg); }
.trx-hero__scroll-line { width: 1px; height: 56px; background: linear-gradient(180deg, var(--accent), transparent); display: inline-block; position: relative; overflow: hidden; }
.trx-hero__scroll-line::after { content: ''; position: absolute; left: 0; right: 0; top: -40%; height: 40%; background: var(--accent); animation: trx-hero-scroll 1.8s var(--ease-in-out) infinite; }
@keyframes trx-hero-scroll { 0% { transform: translateY(0); } 100% { transform: translateY(280%); } }
@media (prefers-reduced-motion: reduce) { .trx-hero__scroll-line::after { animation: none; } }
@media (max-width: 880px) { .trx-hero__scroll { display: none; } }

.trx-hero__scroll:hover { color: var(--accent); }
