/* STYLE 1 (Motto) */
.xlri-motto-wrap {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    position: relative;
}
.xlri-motto {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    line-height: 1;
}
.motto-word {
    font-size: clamp(42px, 6vw, 95px);
    font-weight: 700;
    color: #c7cfdf;
    letter-spacing: -3px;
    cursor: pointer;
    transition: all .45s ease;
    position: relative;
}
.motto-word:hover {
    color: #7d8cb8;
}
.motto-word.active {
    color: #132c75;
    transform: translateY(-4px);
}
.motto-word.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    height: 4px;
    border-radius: 50px;
    background: linear-gradient(90deg, #132c75, #4569d8);
    animation: growLine .45s ease;
}
@keyframes growLine {
    from { width: 0; }
    to { width: 100%; }
}
.xlri-quote {
    max-width: 700px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: clamp(18px, 1.5vw, 28px);
    line-height: 1.9;
    color: #132c75;
    font-weight: 300;
}
.quote-mark {
    font-size: 40px;
    opacity: .5;
    line-height: 1;
}
.fade {
    animation: quoteFade .5s ease;
}
@keyframes quoteFade {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
.xlri-motto-wrap::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19,44,117,.08), transparent 70%);
    pointer-events: none;
    animation: floatGlow 7s ease-in-out infinite;
}
@keyframes floatGlow {
    50% { transform: translateY(-50%) scale(1.15); }
}

/* STYLE 2 (Purpose) */
.xlri-purpose {
    width: 100%;
    position: relative;
}
.purpose-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    font-size: clamp(34px, 4vw, 70px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -2px;
}
.purpose-word {
    position: relative;
    cursor: pointer;
    color: #b9c1d3;
    transition: all .45s ease;
}
.purpose-word:hover {
    color: #132c75;
}
.purpose-word.active {
    color: #132c75;
    transform: translateY(-2px);
}
.purpose-word.active::before {
    content: '';
    position: absolute;
    left: -12px;
    right: -12px;
    top: -8px;
    bottom: -8px;
    border-radius: 18px;
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(19,44,117,.08);
    z-index: -1;
}
.quote-wrapper {
    position: relative;
    padding-left: 28px;
}
.quote-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #132c75, rgba(19,44,117,.15));
}
.purpose-quote {
    font-size: clamp(18px, 1.4vw, 26px);
    line-height: 1.9;
    color: #132c75;
    font-weight: 300;
    max-width: 700px;
    opacity: 1;
}

/* MOBILE RESPONSIVE */
@media(max-width: 767px) {
    .xlri-motto { gap: 12px; margin-bottom: 25px; }
    .motto-word { letter-spacing: -1px; }
    .xlri-quote { line-height: 1.7; }
    .purpose-title { gap: 10px; margin-bottom: 30px; }
    .quote-wrapper { padding-left: 20px; }
}