/* AYA PublicSite - brand module */
/* editable standalone module */

@keyframes ayaBrandGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* brand container */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--aya-text);
  flex: 0 0 auto;
}

/* brand mark */
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.95), rgba(255,255,255,0) 27%),
    radial-gradient(circle at 50% 50%, rgba(0,95,109,0.08), rgba(0,95,109,0.18) 42%, rgba(0,95,109,0.86) 72%, rgba(0,75,87,1) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.40),
    0 14px 28px rgba(0,95,109,0.22);
  border: 1px solid rgba(255,255,255,0.30);
  overflow: visible;
  flex: 0 0 auto;
}

html[data-theme='dark'] .brand-mark {
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.28), rgba(255,255,255,0) 28%),
    radial-gradient(circle at 50% 50%, rgba(103,232,214,0.18), rgba(103,232,214,0.16) 44%, rgba(0,95,109,0.50) 72%, rgba(0,95,109,0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 14px 30px rgba(0,0,0,0.36);
}

.brand-mark-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-word {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

/* title component */
.brand-title {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  line-height: 1.08;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-title-base {
  display: block;
  color: var(--aya-text);
}

html[data-theme='dark'] .brand-title-base {
  color: #eef2f6;
}

.brand-title-fill {
  position: absolute;
  inset: 0;
  display: block;
  white-space: nowrap;
  pointer-events: none;
  overflow: visible;

  background-image: linear-gradient(
    135deg,
    #003841 0%,
    #1f5a64 34%,
    #ff9f0a 72%,
    #ff6b6b 100%
  );
  background-size: 200% 200%;
  background-position: 0% 50%;
  background-repeat: repeat;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  opacity: 1;
  filter: saturate(1.02) brightness(1.03);
  animation: ayaBrandGradientShift 5s ease infinite;
  will-change: background-position;
}

.brand-subtitle {
  color: var(--aya-text-muted);
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .brand-title {
    font-size: 17px;
    letter-spacing: 0.01em;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 640px) {
  .brand-title {
    font-size: 18px;
    letter-spacing: 0.01em;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-subtitle {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-title-fill {
    animation: none;
    background-position: 50% 50%;
  }
}
