/* ===== CSS Variables ===== */
:root {
    --bg-dark: #0a0a0a;
    --bg-light: #f2f0ed;
    --text-dark: #0a0a0a;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.4);
    --text-muted-dark: rgba(10, 10, 10, 0.4);
    --accent: #c9a227;
    --orbit-color: rgba(255, 255, 255, 0.15);
    --dot-color: rgba(255, 255, 255, 0.6);
    --circle-stroke: rgba(255, 255, 255, 0.2);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

/* Google Translate バーを非表示 */
.goog-te-banner-frame, .skiptranslate { display: none !important; }
body { top: 0 !important; }

body {
    font-family: 'Inter', 'Hiragino Kaku Gothic ProN', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    overflow: hidden;
    transition: background-color 0.8s ease, color 0.8s ease;
}

/* ===== Paper Texture (Dark Mode) ===== */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9998;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: soft-light;
}

/* ===== Scanlines (Dark Mode) ===== */
.texture-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 10000;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px, transparent 2px,
        rgba(255,255,255,0.035) 2px, rgba(255,255,255,0.035) 4px
    );
}

body.light-mode {
    background-color: var(--bg-light);
    color: var(--text-dark);
    --orbit-color: rgba(10, 10, 10, 0.15);
    --dot-color: rgba(10, 10, 10, 0.5);
    --circle-stroke: rgba(10, 10, 10, 0.2);
}

/* Light-mode textures */
body.light-mode::before {
    opacity: 0.04;
    mix-blend-mode: multiply;
}

body.light-mode .texture-overlay {
    background: repeating-linear-gradient(
        0deg,
        transparent 0px, transparent 2px,
        rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px
    );
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

body.light-mode .custom-cursor {
    border-color: rgba(10, 10, 10, 0.5);
}

.custom-cursor.hovering {
    background-color: rgba(201, 162, 39, 0.2);
    border-color: var(--accent);
}

/* ===== LAYOUT ===== */
.container {
    position: fixed;
    inset: 0;
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    padding: 30px 40px;
}

/* ===== HEADER ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

header.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header Left - Logo */
.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    cursor: none;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.8s ease;
}

body.light-mode .logo-img {
    filter: brightness(0);
}

.logo-text {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: lowercase;
}

.logo-text .accent {
    color: var(--accent);
}

/* Header Center - Realtime Info */
.header-center {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    transition: color 0.8s ease;
}

body.light-mode .header-center {
    color: var(--text-muted-dark);
}

.header-center .weather-icon {
    font-size: 14px;
}

/* Header Right - Lang & Menu */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: none;
}

.lang-link:hover,
.lang-link.active {
    color: var(--text-light);
}

body.light-mode .lang-link:hover,
body.light-mode .lang-link.active {
    color: var(--text-dark);
}

.lang-divider {
    font-size: 12px;
    color: var(--text-muted);
    transition: color 0.8s ease;
}

body.light-mode .lang-divider {
    color: var(--text-muted-dark);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    padding: 8px;
}

.menu-toggle span {
    width: 4px;
    height: 4px;
    background: var(--text-light);
    border-radius: 50%;
    transition: background 0.8s ease;
}

body.light-mode .menu-toggle span {
    background: var(--text-dark);
}

/* ===== MAIN CONTENT (3-column) ===== */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 0;
}

/* Left: Catchcopy */
.main-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 56px;
    opacity: 0;
    transform: translateX(-30px);
}

.catchcopy-main {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    line-height: 2.2;
    color: var(--text-light);
    text-align: right;
    transition: color 0.8s ease;
}

body.light-mode .catchcopy-main {
    color: var(--text-dark);
}

/* Center: Orbit */
.main-center {
    position: relative;
    flex-shrink: 0;
}

/* Right: Sub Message */
.main-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 56px;
    opacity: 0;
    transform: translateX(30px);
    min-width: 0;
}

.sub-message-text {
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    line-height: 2.2;
    color: var(--text-muted);
    transition: color 0.8s ease;
}

body.light-mode .sub-message-text {
    color: var(--text-muted-dark);
}

/* ===== ORBIT SYSTEM ===== */
.orbit-container {
    position: relative;
    width: 420px;
    height: 420px;
}

.orbit-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.orbit-path {
    fill: none;
    stroke: var(--orbit-color);
    stroke-width: 1;
    stroke-dasharray: 80 40;
    stroke-linecap: round;
    transform-origin: center;
    opacity: 0;
    transition: opacity 0.5s ease, stroke 0.8s ease;
}

.orbit-path.visible {
    opacity: 1;
}

/* ===== CENTER CIRCLE ===== */
.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid var(--circle-stroke);
    background-color: var(--bg-dark);
    overflow: hidden;
    transition: background-color 0.8s ease, border-color 0.8s ease;
    z-index: 5;
}

body.light-mode .center-circle {
    background-color: var(--bg-light);
}

.center-circle-content {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    opacity: 0;
    z-index: 2;
}

.brand-name .accent {
    color: var(--accent);
}

.preview-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

/* ===== ORBIT DOTS ===== */
.orbit-dot-wrapper {
    position: absolute;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    cursor: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.orbit-dot {
    width: 8px;
    height: 8px;
    background: var(--dot-color);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    position: relative;
}

.orbit-dot.visible {
    animation: dotBreathe 4s ease-in-out infinite;
}

/* 各ドットのタイミングをずらして波のように */
#dot0.visible { animation-delay: 0s; }
#dot1.visible { animation-delay: 0.5s; }
#dot2.visible { animation-delay: 1.0s; }
#dot3.visible { animation-delay: 1.5s; }
#dot4.visible { animation-delay: 2.0s; }
#dot5.visible { animation-delay: 2.5s; }
#dot6.visible { animation-delay: 3.0s; }
#dot7.visible { animation-delay: 3.5s; }

@keyframes dotBreathe {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
        background: var(--dot-color);
        box-shadow:
            0 0 4px 1px rgba(201,162,39,0),
            0 0 0 0 rgba(201,162,39,0);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
        background: var(--accent);
        box-shadow:
            0 0 12px 3px rgba(201,162,39,0.4),
            0 0 24px 8px rgba(201,162,39,0.15);
    }
}

/* ホバー・アクティブ時は常時フル発光 */
.orbit-dot-wrapper:hover .orbit-dot,
.orbit-dot-wrapper.active .orbit-dot {
    animation: none;
    opacity: 1;
    transform: scale(1.6);
    background: var(--accent);
    box-shadow:
        0 0 16px 4px rgba(201,162,39,0.5),
        0 0 32px 10px rgba(201,162,39,0.2);
}

/* (hover/active styles merged into dotBreathe block above) */

/* ===== PREVIEW TITLES ===== */
/* main全体を基準にするためmain-centerではなくmainに配置 */
.preview-title-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    perspective: 800px;
    pointer-events: none;
    max-width: 90vw;
    overflow: visible;
    z-index: 20;
}

.preview-title-container.top {
    top: 8%;
}

.preview-title-container.bottom {
    bottom: 8%;
}

.preview-title-roller {
    position: relative;
    transform-style: preserve-3d;
}

.preview-title {
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
    backface-visibility: hidden;
}

.preview-title.current {
    position: relative;
}

.preview-title.next {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotateX(90deg);
    transform-origin: center bottom;
}

.preview-title-container.top .preview-title {
    font-size: 4.5rem;
    color: var(--text-muted);
}

.preview-title-container.bottom .preview-title {
    font-size: 3rem;
    letter-spacing: 0.15em;
}

body.light-mode .preview-title-container.top .preview-title {
    color: var(--text-muted-dark);
}

/* ===== FAQ TICKER ===== */
.faq-ticker {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    opacity: 0;
    transition: opacity 0.8s ease, border-color 0.8s ease;
    flex-shrink: 0;
    overflow: hidden;
}

.faq-ticker.visible {
    opacity: 1;
}

body.light-mode .faq-ticker {
    border-top-color: rgba(10,10,10,0.08);
}

.faq-ticker-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent);
    flex-shrink: 0;
    padding: 3px 8px;
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 2px;
}

.faq-ticker-content {
    flex: 1;
    display: flex;
    gap: 16px;
    align-items: center;
    min-width: 0;
    overflow: hidden;
}

.faq-ticker-q {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
    max-width: 40%;
    transition: color 0.8s ease;
}

body.light-mode .faq-ticker-q {
    color: var(--text-dark);
}

.faq-ticker-a {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    transition: color 0.8s ease;
}

body.light-mode .faq-ticker-a {
    color: var(--text-muted-dark);
}

.faq-ticker-progress {
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.06);
    border-radius: 1px;
    flex-shrink: 0;
    overflow: hidden;
    transition: background 0.8s ease;
}

body.light-mode .faq-ticker-progress {
    background: rgba(10,10,10,0.06);
}

.faq-ticker-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 1px;
}

/* ===== FOOTER (Structured) ===== */
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    flex-shrink: 0;
    padding-top: 12px;
}

footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.copyright {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    transition: color 0.8s ease;
}

body.light-mode .copyright {
    color: var(--text-muted-dark);
}

/* Structured Footer Nav */
.footer-nav-structured {
    display: flex;
    align-items: flex-end;
    gap: 32px;
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.footer-nav-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent);
    text-transform: uppercase;
}

.footer-nav-links {
    display: flex;
    gap: 14px;
}

.footer-nav-links a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: none;
}

.footer-nav-links a:hover {
    color: var(--text-light);
}

body.light-mode .footer-nav-links a {
    color: var(--text-muted-dark);
}

body.light-mode .footer-nav-links a:hover {
    color: var(--text-dark);
}

.footer-nav-cta {
    margin-left: 8px;
}

.footer-cta-btn {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--accent);
    text-decoration: none;
    padding: 6px 16px;
    border: 1px solid rgba(201,162,39,0.4);
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: none;
    white-space: nowrap;
}

.footer-cta-btn:hover {
    background: rgba(201,162,39,0.1);
    border-color: var(--accent);
}

.cta-arrow {
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-cta-btn:hover .cta-arrow {
    transform: translateX(3px);
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-center-circle {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid var(--circle-stroke);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-counter {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.loading-orbit-svg {
    position: absolute;
    width: 420px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading-orbit-path {
    fill: none;
    stroke: var(--orbit-color);
    stroke-width: 1;
    stroke-dasharray: 80 40;
    stroke-linecap: round;
    transform-origin: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        padding: 20px 20px;
    }

    /* 3カラム → 縦積み */
    main {
        flex-direction: column;
        gap: 0;
    }

    .main-left {
        padding-right: 0;
        justify-content: center;
        order: -1;
        transform: translateX(0) translateY(-10px);
    }

    .catchcopy-main {
        font-size: 1.1rem;
        text-align: center;
        line-height: 1.5;
    }

    .catchcopy-main br {
        display: none;
    }

    .main-center {
        order: 0;
    }

    .main-right {
        padding-left: 0;
        justify-content: center;
        order: 1;
        transform: translateX(0) translateY(10px);
    }

    .sub-message-text {
        font-size: 0.85rem;
        text-align: center;
        max-width: none;
        line-height: 2;
        letter-spacing: 0.1em;
    }

    .sub-message-text br {
        display: none;
    }

    .orbit-container {
        width: 280px;
        height: 280px;
    }

    .center-circle {
        width: 170px;
        height: 170px;
    }

    .loading-center-circle {
        width: 180px;
        height: 180px;
    }

    .loading-orbit-svg {
        width: 300px;
        height: 300px;
    }

    .loading-counter {
        font-size: 3rem;
    }

    .brand-name {
        font-size: 0.9rem;
    }

    .preview-title-container.top .preview-title {
        font-size: 1.6rem;
    }

    .preview-title-container.bottom .preview-title {
        font-size: 1.1rem;
    }

    .header-center {
        display: none;
    }

    .logo-text .accent {
        display: inline;
    }

    .custom-cursor {
        display: none;
    }

    * {
        cursor: auto;
    }

    /* FAQ Ticker Mobile */
    .faq-ticker {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 8px 0;
    }

    .faq-ticker-content {
        flex-direction: column;
        gap: 2px;
        align-items: flex-start;
    }

    .faq-ticker-q {
        max-width: 100%;
        font-size: 10px;
    }

    .faq-ticker-a {
        font-size: 10px;
    }

    .faq-ticker-progress {
        display: none;
    }

    /* Footer Mobile */
    footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .footer-nav-structured {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .footer-nav-group {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .footer-nav-label {
        min-width: 60px;
    }

    .footer-nav-links {
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-nav-cta {
        margin-left: 0;
        margin-top: 4px;
    }

    .footer-cta-btn {
        display: block;
        text-align: center;
        padding: 10px 16px;
    }

    .copyright {
        text-align: center;
        order: 1;
    }
}

@media (max-width: 400px) {
    .preview-title-container.top .preview-title {
        font-size: 1.3rem;
    }

    .preview-title-container.bottom .preview-title {
        font-size: 0.9rem;
    }

    .catchcopy-main {
        font-size: 0.95rem;
        letter-spacing: 0.12em;
    }

    .orbit-container {
        width: 240px;
        height: 240px;
    }

    .center-circle {
        width: 145px;
        height: 145px;
    }

    .sub-message-text {
        font-size: 9px;
    }
}

/* ========================================
   About Modal (Wormhole)
======================================== */
.modal-about {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
}

.modal-about.active {
    display: block;
}

.modal-about-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
}

.modal-about-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.modal-about-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0;
}

.modal-about-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    opacity: 0;
}

.modal-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.modal-about-left {
    text-align: left;
}

.modal-about-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-about-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.modal-about-logo {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 35px;
    color: #fff;
}

.modal-about-logo .accent {
    color: var(--accent);
}

.modal-about-headline {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #fff;
}

.modal-about-text {
    font-size: 14px;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.7);
}

.modal-about-text p {
    margin-bottom: 1.5em;
}

.modal-about-text p:last-child {
    margin-bottom: 0;
}

.modal-about-right {
    position: relative;
}

.modal-about-stats {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.modal-about-stat {
    border-left: 2px solid var(--accent);
    padding-left: 25px;
    opacity: 0;
    transform: translateX(30px);
}

.modal-about-stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
}

.modal-about-stat-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

.modal-about-stat-desc {
    font-size: 11px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
    line-height: 1.5;
}

.modal-about-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    font-size: 20px;
    cursor: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.modal-about-close:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(90deg);
}

/* Modal Responsive */
@media (max-width: 900px) {
    .modal-about-content {
        position: absolute;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        height: 100%;
        overflow-y: auto;
        padding: 80px 28px 40px;
        -webkit-overflow-scrolling: touch;
    }

    .modal-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .modal-about-left {
        text-align: center;
    }

    .modal-about-label {
        justify-content: center;
    }

    .modal-about-logo {
        font-size: 2.2rem;
    }

    .modal-about-headline {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .modal-about-text {
        font-size: 13px;
        line-height: 1.9;
    }

    .modal-about-text p {
        margin-bottom: 1em;
    }

    .modal-about-stats {
        flex-direction: row;
        gap: 0;
    }

    .modal-about-stat {
        flex: 1;
        border-left: none;
        padding-left: 0;
        text-align: center;
        border-bottom: none;
        padding-bottom: 0;
        border-right: 1px solid rgba(201, 162, 39, 0.2);
    }

    .modal-about-stat:last-child {
        border-right: none;
    }

    .modal-about-stat-number {
        font-size: 2.2rem;
    }

    .modal-about-stat-label {
        font-size: 10px;
    }

    .modal-about-stat-desc {
        font-size: 9px;
    }

    .modal-about-close {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* ========================================
   Cinematic Full Menu
======================================== */
.menu-cinematic {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    overflow: hidden;
}

.menu-cinematic.active {
    display: block;
}

.menu-cinematic-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-dark);
}

.menu-cinematic-particles {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.menu-cinematic-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
    opacity: 0;
}

.menu-cinematic-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0;
}

.menu-cinematic-content {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.menu-cinematic-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10%;
    position: relative;
}

.menu-cinematic-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-cinematic-item {
    position: relative;
    cursor: none;
    padding: 8px 0;
    overflow: hidden;
}

.menu-cinematic-item-wrapper {
    display: flex;
    align-items: baseline;
    gap: 30px;
    transform: translateY(100%);
    opacity: 0;
}

.menu-cinematic-item-number {
    font-size: 12px;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 0.1em;
    min-width: 30px;
}

.menu-cinematic-item-text {
    font-size: 3.2rem;
    font-weight: 200;
    letter-spacing: -0.02em;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-cinematic-item-text span {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.menu-cinematic-item:hover .menu-cinematic-item-text {
    color: var(--accent);
}

.menu-cinematic-item:hover .menu-cinematic-item-text span {
    animation: letterWave 0.5s ease forwards;
}

.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(1) { animation-delay: 0s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(2) { animation-delay: 0.03s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(3) { animation-delay: 0.06s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(4) { animation-delay: 0.09s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(5) { animation-delay: 0.12s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(6) { animation-delay: 0.15s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(7) { animation-delay: 0.18s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(8) { animation-delay: 0.21s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(9) { animation-delay: 0.24s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(10) { animation-delay: 0.27s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(11) { animation-delay: 0.30s; }

@keyframes letterWave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.menu-cinematic-item-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-cinematic-item:hover .menu-cinematic-item-line {
    width: 100%;
}

.menu-cinematic-item-jp {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    opacity: 0;
    transition: all 0.4s ease;
}

.menu-cinematic-item:hover .menu-cinematic-item-jp {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.menu-cinematic-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.menu-cinematic-visual {
    position: relative;
    width: 350px;
    height: 350px;
    opacity: 0;
    transform: scale(0.8);
}

.menu-cinematic-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-cinematic-ring:nth-child(1) {
    width: 350px;
    height: 350px;
    animation: rotateRingMenu 30s linear infinite;
}

.menu-cinematic-ring:nth-child(2) {
    width: 280px;
    height: 280px;
    border-style: dashed;
    animation: rotateRingMenu 25s linear infinite reverse;
}

.menu-cinematic-ring:nth-child(3) {
    width: 210px;
    height: 210px;
    animation: rotateRingMenu 20s linear infinite;
}

@keyframes rotateRingMenu {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.menu-cinematic-ring-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent);
}

.menu-cinematic-ring:nth-child(1) .menu-cinematic-ring-dot {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.menu-cinematic-ring:nth-child(3) .menu-cinematic-ring-dot {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.menu-cinematic-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.menu-cinematic-logo {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.menu-cinematic-logo .accent { color: var(--accent); }

.menu-cinematic-tagline {
    font-size: 9px;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.menu-cinematic-close {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: transparent;
    cursor: none;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.menu-cinematic-close::before,
.menu-cinematic-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.menu-cinematic-close::before { transform: rotate(45deg); }
.menu-cinematic-close::after { transform: rotate(-45deg); }

.menu-cinematic-close:hover {
    border-color: var(--accent);
    transform: rotate(90deg);
}

.menu-cinematic-close:hover::before,
.menu-cinematic-close:hover::after {
    background: var(--accent);
}

.menu-cinematic-footer {
    position: absolute;
    bottom: 50px;
    left: 10%;
    right: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
}

.menu-cinematic-footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-cinematic-footer-copy {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.menu-cinematic-footer-right {
    display: flex;
    gap: 20px;
}

.menu-cinematic-social {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 11px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: none;
}

.menu-cinematic-social:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

/* Menu Responsive */
@media (max-width: 1024px) {
    .menu-cinematic-content {
        grid-template-columns: 1fr;
    }

    .menu-cinematic-left {
        padding: 120px 8% 100px;
    }

    .menu-cinematic-item-text {
        font-size: 2.5rem;
    }

    .menu-cinematic-item-jp {
        display: none;
    }

    .menu-cinematic-right {
        display: none;
    }

    .menu-cinematic-close {
        top: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
    }

    .menu-cinematic-footer {
        left: 8%;
        right: 8%;
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .menu-cinematic-left {
        padding: 70px 6% 60px;
        justify-content: flex-start;
    }

    .menu-cinematic-item {
        padding: 5px 0;
    }

    .menu-cinematic-item-text {
        font-size: 1.6rem;
    }

    .menu-cinematic-item-jp {
        display: block;
        position: static;
        transform: none;
        opacity: 0.5;
        font-size: 10px;
        margin-top: 2px;
    }
}