/* --- THE HERO TYPOGRAPHY WRAPPER --- */
.hero-text-container {
  max-width: 1100px;
  width: 100%;
  text-align: left;
  padding: 0px 0 120px 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/* Oversized H1 Headline Architecture */
.narrative-headline {
  font-size: 2.6em;
  font-weight: 500;
  color: rgb(0 0 0 / 85%);
  text-align: center;
  margin: 0 auto;
  line-height: 1.2em;
}

@media (max-width: 768px) {
  .narrative-headline {
    font-size: 1.85rem;
    line-height: 1.5;
  }
}

/* --- INTERACTIVE TOKEN TRIGGER SYSTEMS --- */
.token-trigger {
  color: #0079fa;
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding: 0 6px;
  border-radius: 12px;
  transition: all 0.2s ease;
  font-weight: bolder;
}

.token-trigger:hover {
  color: #005bb5;
  border-bottom-color: #005bb5;
  background: rgba(0, 121, 250, 0.05);
}

/* --- HARD OUTCOME TOOLTIP OVERLAY --- */
.metric-tooltip {
  position: absolute;
  bottom: 140%;
  /* Floats perfectly above the target text line */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 320px;
  background: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 0 15px 0px rgb(0 0 0 / 15%);
  text-align: left;
  z-index: 100;
  white-space: normal;

  /* Hidden State Default Properties */
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Smooth hover pop-up visibility engine logic */
.token-trigger:hover .metric-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Tooltip Brand Header Row */
.tooltip-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 12px;
}

.brand-logo-wrapper {
  width: auto;
  height: 24px;
  background: transparent;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
}

.brand-logo-wrapper svg {
  width: 16px;
  height: 16px;
}

.brand-domain {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: #202228;
  display: none;
}

/* Massive Metric Stat Display */
.tooltip-stat-hero {
  font-size: 2.25rem;
  font-weight: 900;
  color: #0079fa;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
  display: none;
}

.tooltip-stat-label {
  font-family: inherit;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #777777;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: none;
}

.metric-tooltip p {
  font-size: 0.85rem;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

/* Tooltip Bottom Center Arrow Anchor */
.metric-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}