/* ============================================
   Noor — Tagline component
   Centered stacked layout — editorial statement
   ============================================ */

.landing-tagline {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.landing-tagline__inner {
  width: min(100% - 2 * var(--edge-margin), var(--wide-max));
  margin-inline: auto;
}

/* --- Stacked centered layout --- */

.landing-tagline__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}

/* --- Visual (logo-iso seal) --- */

.landing-tagline__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-tagline__plaque {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.landing-tagline__iso {
  width: 100%;
  height: auto;
  opacity: 0.7;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.04));
}

/* --- Content column --- */

.landing-tagline__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

/* --- Heading — display font + size for impact --- */

.landing-tagline__heading {
  font-family: var(--font-display-current);
  font-size: var(--text-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.landing-tagline__word {
  display: inline-block;
}

.landing-tagline__accent {
  color: var(--accent-current);
}

/* --- Interaction row (keywords · panel) --- */

.landing-tagline__interaction {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.landing-tagline__pillars {
  display: flex;
  gap: var(--space-md);
  list-style: none;
  font-family: var(--font-ui);
  font-size: var(--text-small);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- Keyword buttons --- */

.landing-tagline__keyword {
  all: unset;
  position: relative;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 999px;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.landing-tagline__keyword.is-active {
  color: var(--accent-current);
  text-decoration: none;
}

/* Navbar-style hover: siblings fade, hovered one stays full */
.landing-tagline__pillars:hover .landing-tagline__keyword {
  opacity: 0.4;
}

.landing-tagline__pillars:hover .landing-tagline__keyword:hover {
  opacity: 1;
  color: var(--accent-current);
}

.landing-tagline__pillars:hover .landing-tagline__keyword.is-active {
  opacity: 1;
}

.landing-tagline__keyword:focus-visible {
  outline: 2px solid var(--accent-focus);
  outline-offset: 4px;
}

/* --- Dot indicator --- */

/* Legacy indicators removed in favor of global .pill-hover */
.landing-tagline__underline {
  display: none;
}

/* --- Separator dot --- */

.landing-tagline__sep {
  display: none;
}

/* --- Description panel --- */

.landing-tagline__panel {
  font-family: var(--font-display-current);
  font-style: italic;
  font-size: var(--text-body);
  opacity: 0;
  color: var(--surface-text);
  min-height: 1.4em;
}

.landing-tagline__panel.is-visible {
  opacity: 1;
}

/* ============================================
   Scroll-reveal states (JS adds .is-pre-reveal)
   Default = visible (no-JS / reduced-motion).
   Controller adds class → hides → GSAP reveals.
   ============================================ */

.landing-tagline.is-pre-reveal .landing-tagline__word {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
}

.landing-tagline.is-pre-reveal .landing-tagline__keyword {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(6px);
}

.landing-tagline.is-pre-reveal .landing-tagline__visual {
  opacity: 0;
}

.landing-tagline.is-pre-reveal .landing-tagline__sep {
  opacity: 0;
}

/* --- Responsive --- */

@media (max-width: 520px) {
  .landing-tagline__plaque {
    width: 48px;
    height: 48px;
  }

  .landing-tagline__pillars {
    gap: var(--space-sm);
  }
}