@charset "utf-8";
.ub-page {
  --u: #F5CE00;
  --ink: #08080A;
  --ink2: #0E0E11;
  --panel: #111115;
  --mut: #93939C;
  --faint: #5C5C65;
  --line: rgba(255,255,255,.09);

  /* background: #060607; */
    border: 1px solid var(--line);
    border-radius: 22px;
	overflow: hidden;
  color: #fff;
  position: relative;
}

.ub-page * {
  box-sizing: border-box;
}

.ub-page ::selection {
  background: #F5CE00;
  color: #000;
}

@keyframes ub-blink { 0%, 100% { opacity: 1; } 50% { opacity: .15; } }
@keyframes ub-sheen { 0% { background-position: -60% 0; } 100% { background-position: 160% 0; } }
@keyframes ub-glow-line { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }
@keyframes ub-glow-text { 0%, 100% { text-shadow: 0 0 8px rgba(245,206,0,.35); } 50% { text-shadow: 0 0 20px rgba(245,206,0,.85); } }
@keyframes ub-flow-pulse { 0% { opacity: .2; transform: scale(.6); } 50% { opacity: 1; transform: scale(1); } 100% { opacity: .2; transform: scale(.6); } }
@keyframes ub-sweep { 0% { transform: translateX(-140%); } 55%, 100% { transform: translateX(360%); } }

@media (prefers-reduced-motion: reduce) {
  .ub-page * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============ 스크롤 리빌 유틸 ============ */
.ub-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1);
}
.ub-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.ub-d-04 { transition-delay: .04s; }
.ub-d-05 { transition-delay: .05s; }
.ub-d-06 { transition-delay: .06s; }
.ub-d-08 { transition-delay: .08s; }
.ub-d-10 { transition-delay: .10s; }
.ub-d-12 { transition-delay: .12s; }
.ub-d-16 { transition-delay: .16s; }
.ub-d-18 { transition-delay: .18s; }
.ub-d-20 { transition-delay: .20s; }
.ub-d-24 { transition-delay: .24s; }
.ub-d-28 { transition-delay: .28s; }

.ub-glow-text {
  color: var(--u);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(245,206,0,.5);
  animation: ub-glow-text 2.6s ease-in-out infinite;
}

/* ============ SECTION 1 · HERO ============ */
.ub-hero {
  position: relative;
  height: 840px;
  overflow: hidden;
}

.ub-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.ub-hero__gradient-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,4,5,.94) 0%, rgba(4,4,5,.72) 34%, rgba(4,4,5,.28) 62%, rgba(4,4,5,.55) 100%);
}

.ub-hero__gradient-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,4,5,.7) 0%, transparent 22%, transparent 55%, #060607 100%);
}

.ub-hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .25;
  mask-image: radial-gradient(760px 460px at 26% 46%, #000, transparent 80%);
}

.ub-hero__badge {
  position: absolute;
  bottom: 6rem;
  right: 0;
  z-index: 5;
  font-size: 10.5px;
  letter-spacing: .14em;
  color: #e6e6ea;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(4,4,5,.4);
  padding: 7px 12px;
  line-height: 1.6;
  text-align: right;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.ub-hero__copy {
  position: absolute;
  left: 64px;
  bottom: 96px;
  right: 64px;
  z-index: 5;
}

.ub-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  letter-spacing: .28em;
  color: var(--u);
  margin-bottom: 30px;
}

.ub-hero__eyebrow-line {
  width: 34px;
  height: 1px;
  background: var(--u);
}

.ub-hero__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: -.02em;
  background: linear-gradient(100deg, #f4f4f6 0%, #f4f4f6 38%, #ffffff 46%, var(--u) 50%, #ffffff 54%, #f4f4f6 62%, #f4f4f6 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ub-sheen 6.5s ease-in-out infinite;
}

.ub-hero__logo {
  display: block;
  width: 475px;
  height: 199px;
  object-fit: cover;
  object-position: center center;
  margin-top: 12px;
}

.ub-hero__bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 34px;
}

.ub-hero__desc {
  font-size: 21px;
  line-height: 1.6;
  color: #c9c9d0;
  max-width: 440px;
}

/* ============ KEYWORD BAR ============ */
.ub-keyword-bar {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 64px;
  overflow: hidden;
  background: #08080A;
}

.ub-keyword-bar__sheen {
  position: absolute;
  top: -1px;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent 40%, var(--u) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: ub-sheen 5s linear infinite;
}

.ub-keyword-bar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ub-keyword-bar__item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ub-keyword-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--u);
  box-shadow: 0 0 10px var(--u);
  animation: ub-blink 2s infinite;
}

.ub-keyword-bar__label {
  font-size: 13px;
  letter-spacing: .2em;
  color: #e6e6ea;
}

/* 원본 시안에서 이 항목만 빨간색이었습니다 — 의도 확인 필요 */
.ub-keyword-bar__label--alert {
  color: #FF0000;
}

.ub-keyword-bar__sep {
  width: 1px;
  height: 14px;
  background: var(--line);
}

/* ============ SECTION 2 · AMBASSADOR ============ */
.ub-ambassador {
  padding: 72px 56px;
}

.ub-ambassador__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 34px;
  gap: 24px;
}

.ub-ambassador__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* font-family: 'JetBrains Mono', monospace; */
    font-size: 11px;
    letter-spacing: .18em;
    color: #FFC61A;
    text-transform: uppercase;
	margin-bottom: 25px;
}
.ub-ambassador-eyebrow-line {
	width: 24px;
    height: 1px;
    background: #FFC61A;
    display: inline-block;
}

.ub-ambassador__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.28;
  letter-spacing: -.01em;
  color: #f4f4f6;
}

.ub-ambassador__title-accent {
  color: var(--u);
}

.ub-ambassador__desc {
  max-width: 700px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--mut);
  text-align: right;
}

.ub-ambassador__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.ub-ambassador-card {
  position: relative;
  height: 430px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel);
}

.ub-ambassador-card__img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: grayscale(.15) contrast(1.03);
}

.ub-ambassador-card__img--kim {
  width: 430px;
  height: 597px;
  object-position: 50% 18%;
  left: 100px;
  top: 10px;
}

.ub-ambassador-card__img--yumin {
  width: 559px;
  height: 648px;
  object-position: 50% 20%;
  left: 34px;
  top: -117px;
}

.ub-ambassador-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,.15) 0%, transparent 30%, rgba(8,8,10,.35) 62%, rgba(8,8,10,.95) 100%);
}

.ub-ambassador-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 10.5px;
  letter-spacing: .16em;
  color: var(--u);
  border: 1px solid rgba(245,206,0,.4);
  background: rgba(8,8,10,.5);
  padding: 6px 10px;
  border-radius: 6px;
}

.ub-ambassador-card__live {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(245,206,0,.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ub-ambassador-card__live-dot {
  width: 6px;
  height: 6px;
  background: var(--u);
  border-radius: 50%;
  animation-name: ub-blink;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.ub-ambassador-card__info {
  position: absolute;
  left: 22px;
  bottom: 20px;
  right: 22px;
}

.ub-ambassador-card__name-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.ub-ambassador-card__name {
  font-weight: 700;
  font-size: 30px;
}

.ub-ambassador-card__name-suffix {
  font-size: 13px;
  color: var(--mut);
}

.ub-ambassador-card__tour {
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--u);
  margin-top: 4px;
}

.ub-ambassador-card__tags {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.ub-ambassador-card__tag {
  font-size: 11.5px;
  color: #dcdce2;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding: 6px 11px;
  border-radius: 100px;
}

/* ---- REAL PLAY 갤러리 ---- */
.ub-realplay {
  margin-top: 44px;
}

.ub-realplay__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ub-realplay__head-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ub-realplay__label {
  font-size: 12px;
  letter-spacing: .24em;
  color: var(--u);
}

.ub-realplay__label-line {
  width: 26px;
  height: 1px;
  background: rgb(255, 255, 255, 0.2);
}

.ub-realplay__head-desc {
  font-size: 14.5px;
  color: var(--mut);
}

.ub-realplay__head-hint {
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--faint);
}

.ub-realplay__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
}

.ub-realplay__video {
  position: relative;
  display: block;
  /* height: 404px; */
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
}

.iframe-wrapper{position: relative;width: 100%;}
.iframe-wrapper .iframe-inner{overflow:hidden; position:relative; width:100%; height:0; padding-top:54.65%; }
.iframe-wrapper .iframe-inner iframe{position:absolute; top:50%; left:50%; width:100%; height:calc(100% + 350px); transform:translate(-50%,-50%)}

.ub-realplay__video-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ub-realplay__video-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,7,10,.25), rgba(6,7,10,.35) 55%, rgba(6,7,10,.9));
}

.ub-realplay__video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: .14em;
  color: #fff;
  background: rgba(6,7,10,.55);
  border: 1px solid rgba(255,255,255,.18);
  padding: 7px 11px;
  border-radius: 7px;
  backdrop-filter: blur(4px);
}

.ub-realplay__video-badge-icon {
  width: 0;
  height: 0;
  border-left: 8px solid #ff3b30;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.ub-realplay__video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(8,8,10,.45);
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ub-realplay__video-play-ring {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(245,206,0,.6);
  animation: ub-flow-pulse 2.6s ease-out infinite;
}

.ub-realplay__video-play-icon {
  width: 0;
  height: 0;
  border-left: 22px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 6px;
}

.ub-realplay__video-info {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
}

.ub-realplay__video-title {
  font-weight: 600;
  font-size: 21px;
  color: #fff;
}

.ub-realplay__video-desc {
  font-size: 13px;
  color: #c9c9d0;
  margin-top: 5px;
}

.ub-realplay__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
 /*  height: 404px; */
}

.ub-realplay__photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.ub-realplay__photo a {position: relative; display: block; width: 100%; height: 100%;}

.ub-realplay__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ub-realplay__photo-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6,7,10,.85));
}

.ub-realplay__photo-caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 10.5px;
  letter-spacing: .1em;
  color: #fff;
}

.ub-ambassador__outro {
  margin-top: 56px;
  text-align: center;
}

.ub-ambassador__outro-title {
  font-weight: 700;
  font-size: 35px;
  background: linear-gradient(100deg, #f4f4f6 0%, #f4f4f6 38%, #ffffff 46%, var(--u) 50%, #ffffff 54%, #f4f4f6 62%, #f4f4f6 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ub-sheen 6.5s ease-in-out infinite;
}

.ub-ambassador__outro-desc {
  margin-top: 20px;
  font-size: 22px;
   line-height: 1.3;
  color: var(--mut);
}

/* ============ SECTION 3 · BRAND INTRO ============ */
.ub-brand {
  position: relative;
  overflow: hidden;
  padding: 66px 56px;
  border-top: 1px solid var(--line);
  /* background-color: #000; */
}

.ub-brand__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ub-brand__glow--tl {
  top: -90px;
  left: -70px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(245,206,0,.10), transparent 66%);
  display: none;
}

.ub-brand__glow--br {
  bottom: -120px;
  right: -40px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245,206,0,.07), transparent 68%);
  display: none;
}

.ub-brand__glow-line {
  position: absolute;
  height: 1px;
  animation: ub-glow-line 3.6s ease-in-out infinite;
}

.ub-brand__glow-line--top {
  top: 0;
  left: 8%;
  right: 8%;
  background: linear-gradient(90deg, transparent, rgba(245,206,0,.75), transparent);
}

.ub-brand__glow-line--bottom {
  bottom: 0;
  left: 20%;
  right: 20%;
  background: linear-gradient(90deg, transparent, rgba(245,206,0,.45), transparent);
}

.ub-brand__grid {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.ub-brand__eyebrow {
	display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .18em;
    color: #FFC61A;
    text-transform: uppercase;
	margin-bottom: 25px;
}

.ub-brand__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.25;
  letter-spacing: -.015em;
  color: #f4f4f6;
}

.ub-brand__title-accent {
  color: var(--u);
}

.ub-brand__desc {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--mut);
  max-width: 550px;
}

.ub-brand__desc--sm {
  margin-top: 16px;
  font-size: 15px;
  max-width: 600px;
}

.ub-brand__media-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  /* background: var(--panel); */
}

.ub-brand__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ub-brand__media-caption {
  margin-top: 30px;
  text-align: center;
   line-height: 1.3;
  font-size: 11.5px;
  letter-spacing: .14em;
  color: #c9c9d0;
}

/* ============ SECTION 4 · STATS ============ */
.ub-stats {
  position: relative;
  padding: 78px 56px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.ub-stats__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
  filter: blur(7px) brightness(.55);
  transform: scale(1.1);
}

.ub-stats__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,4,5,.94) 0%, rgba(4,4,5,.72) 34%, rgba(4,4,5,.28) 62%, rgba(4,4,5,.55) 100%);
  opacity: .3;
}

.ub-stats__bg-image2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .2;
}

.ub-stats__glow-line {
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,206,0,.45), transparent);
  animation: ub-glow-line 3.6s ease-in-out infinite;
}

.ub-stats__glow {
  position: absolute;
  border-radius: 50%;
}

.ub-stats__glow--tr {
  top: -60px;
  right: -40px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(245,206,0,.16), transparent 66%);
}

.ub-stats__glow--bl {
  bottom: -90px;
  left: -60px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(245,206,0,.08), transparent 68%);
}

.ub-stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 60px;
  align-items: center;
}

.ub-stats__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--u);
  border: 1px solid rgba(245,206,0,.32);
  padding: 8px 15px;
  border-radius: 100px;
  margin-bottom: 26px;
}

.ub-stats__badge-strong {
  font-weight: 700;
}

.ub-stats__title {
  font-weight: 700;
  font-size: 37px;
  line-height: 1.32;
  letter-spacing: -.01em;
  color: #f4f4f6;
}

.ub-stats__title-accent {
  color: var(--u);
}

.ub-stats__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px 56px;
}

.ub-stats__value-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  white-space: nowrap;
}

.ub-stats__value {
  font-weight: 600;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -.035em;
  color: #fff;
}

.ub-stats__value-unit {
  font-weight: 600;
  font-size: 24px;
  color: var(--u);
}

.ub-stats__bar {
  width: 26px;
  height: 2px;
  background: var(--u);
  margin: 18px 0 11px;
}

.ub-stats__label {
  font-size: 14.5px;
  color: var(--mut);
}

/* ============ SECTION 5 · ECOSYSTEM ============ */
.ub-ecosystem {
  padding: 78px 56px;
  border-top: 1px solid var(--line);
  /* background-color: #0B0B0B; */
}

.ub-ecosystem__head {
  text-align: center;
  margin-bottom: 20px;
}

.ub-ecosystem__eyebrow {
  display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: .18em;
    color: #FFC61A;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.ub-ecosystem__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: #f4f4f6;
}

.ub-ecosystem__title-accent {
  color: var(--u);
}

.ub-ecosystem__desc {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 8px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--mut);
}

.ub-ecosystem__desc--muted {
  max-width: 660px;
  margin-bottom: 50px;
  color: var(--faint);
}

.ub-ecosystem__hub {
  position: relative;
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ub-ecosystem__hub-trace {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}

.ub-ecosystem__hub-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(8,8,10,.8);
  border: 1px solid rgba(245,206,0,.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(245,206,0,.38);
}

.ub-ecosystem__hub-core-ring {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(245,206,0,.6);
  animation: ub-flow-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

.ub-ecosystem__cards {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  /* grid-template-columns: repeat(4, 1fr);
  gap: 22px; */
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ub-ecosystem-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel);
  transition: transform .35s ease, border-color .3s ease;
}

.ub-ecosystem-card:hover {
  border-color: rgba(245,206,0,.5);
  transform: translateY(-4px);
}

.ub-ecosystem-card__media {
  position: relative;
  height: 224px;
  overflow: hidden;
}

.ub-ecosystem-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ub-ecosystem-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,.05), rgba(8,8,10,.5) 68%, rgba(17,17,21,.96));
}

.ub-ecosystem-card__top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--u), transparent);
}

.ub-ecosystem-card__index {
  position: absolute;
  top: 15px;
  left: 18px;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--u);
}

.ub-ecosystem-card__body {
  padding: 20px 24px 24px;
}

.ub-ecosystem-card__title {
  font-weight: 600;
  font-size: 21px;
  color: #f4f4f6;
}

.ub-ecosystem-card__desc {
  font-size: 13px;
  color: var(--mut);
  margin-top: 7px;
}

.ub-ecosystem__cta-wrap {
  text-align: center;
  margin-top: 80px;
}

.ub-ecosystem__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  color: #f4f4f6;
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.18);
  padding: 11px 11px 11px 30px;
  border-radius: 100px;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 10px 30px rgba(0,0,0,.4);
  position: relative;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
}

.ub-ecosystem__cta:hover {
  border-color: rgba(245,206,0,.6);
  transform: translateY(-2px);
}

.ub-ecosystem__cta-label {
  position: relative;
  z-index: 2;
}

.ub-ecosystem__cta-arrow {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--u);
  color: #050506;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(245,206,0,.55);
}

.ub-ecosystem__cta-sweep {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  animation: ub-sweep 3.6s ease-in-out infinite;
  pointer-events: none;
}

#particle-sphere {
    width: 100%; height: 100%;
    max-width: 100%;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    pointer-events: none;
}

#particle-sphere canvas {
    display: block;
    width: 100%;
    height: 100%;
    background: transparent !important;
}


@media all and ( max-width: 1279px ){
	.ub-ambassador {padding: 72px 0;}
	.ub-brand {padding: 66px 0;}
	.ub-stats {padding: 78px 40px;}
	.ub-ecosystem {padding: 78px 0;}
}
@media all and ( max-width: 800px ){
	.ub-hero__title {font-size: 3rem;}
	.ub-hero__logo {width: 219px; height: 90px;}
	.ub-hero__badge {position: relative; right: auto; left: 0; bottom: 0; margin-top: 5rem; line-height: 1.5;}
	.ub-hero__desc {font-size: 1.8rem;}
	.ub-hero__bottom-row {margin-top: 1.5rem;}
	
	.ub-keyword-bar {padding: 22px;}
	.ub-keyword-bar__row {flex-wrap: wrap; gap:5px}
	.ub-keyword-bar__item {width: 100%;}
	
	.ub-ambassador__head {display: block;}
	.ub-ambassador__desc {text-align: left; margin-top: 1rem;}
	.ub-ambassador__title {font-size: 3rem;}
	
	.ub-realplay__grid {grid-template-columns:repeat(1, 1fr);;}
	.ub-ambassador__outro-title {font-size: 2.8rem; line-height: 1.3;}
	
	.ub-brand__grid {display: block;}
	.ub-brand__title {font-size: 3rem;}
	.ub-brand__media-frame {margin-top: 2rem;}
	
	.ub-stats {padding: 5rem 3rem;}
	.ub-stats__title {font-size: 3.2rem;}
	.ub-stats__grid {display: block;}
	.ub-stats__list {margin-top: 5rem; gap:2rem}
	.ub-stats__value {font-size: 4.6rem;}
	.ub-stats__value-unit {font-size: 2.2rem;}
	
	.ub-ecosystem__title {font-size: 3rem;}
	.ub-ecosystem-card__media {height: 120px;}
	.ub-ecosystem-card__body {padding: 2rem 1.5rem;}
	.ub-ecosystem-card__title {font-size: 1.8rem;}
}