@charset "UTF-8";

/* ==========================================================================
   Brand Message & Marquee
   ========================================================================== */
.main-message {
    padding: 150px 0 120px;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.message-inner {
    max-width: 800px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.message-title {
    font-family: var(--font-en);
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
    color: #111;
}

.message-title .block {
    display: block;
}

.message-title .highlight {
    background: linear-gradient(90deg, #0066FF, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--electric-blue);
}

.message-desc {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    font-weight: 500;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #fafafa;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    transform: rotate(-2deg) scale(1.05);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.marquee-content span {
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: 800;
    color: #111;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.marquee-content .dot {
    width: 8px;
    height: 8px;
    background-color: var(--electric-blue);
    border-radius: 50%;
    margin: 0 40px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 991px) {
    .message-title { font-size: 42px; }
    .message-desc { font-size: 16px; }
    .marquee-container { transform: rotate(0) scale(1); }
    .marquee-content span { font-size: 18px; }
}
